mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-23 12:12:06 -05:00
103 lines
2.6 KiB
C++
103 lines
2.6 KiB
C++
/****************************************
|
|
*
|
|
* theShell - Desktop Environment
|
|
* Copyright (C) 2018 Victor Tran
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* *************************************/
|
|
|
|
#ifndef BACKGROUND_H
|
|
#define BACKGROUND_H
|
|
|
|
#include <QDialog>
|
|
#include <QSettings>
|
|
#include <QMenu>
|
|
#include <QDesktopWidget>
|
|
#include <QSvgRenderer>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkRequest>
|
|
#include <QNetworkReply>
|
|
#include <QJsonObject>
|
|
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
#include <QPaintEvent>
|
|
#include "mainwindow.h"
|
|
#include "choosebackground.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
class ChooseBackground;
|
|
|
|
namespace Ui {
|
|
class Background;
|
|
}
|
|
|
|
class Background : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Background(MainWindow* mainwindow, bool imageGetter, QRect screenGeometry, QWidget *parent = 0);
|
|
~Background();
|
|
|
|
void show();
|
|
|
|
public slots:
|
|
void setCommunityBackground(QString background);
|
|
|
|
void getNewCommunityBackground();
|
|
|
|
void changeBackground();
|
|
|
|
signals:
|
|
void setAllBackgrounds(QString background);
|
|
|
|
void reloadBackground();
|
|
|
|
private slots:
|
|
void on_actionOpen_Status_Center_triggered();
|
|
|
|
void on_actionOpen_theShell_Settings_triggered();
|
|
|
|
void on_actionChange_Background_triggered();
|
|
|
|
void on_Background_customContextMenuRequested(const QPoint &pos);
|
|
|
|
void loadCommunityBackgroundMetadata();
|
|
|
|
void setTimer();
|
|
|
|
void setNewBackgroundTimer();
|
|
|
|
private:
|
|
Ui::Background *ui;
|
|
|
|
void reject();
|
|
bool imageGetter;
|
|
bool set = false;
|
|
QSettings settings;
|
|
int numberDone;
|
|
QString currentBackground;
|
|
QRect screenGeometry;
|
|
|
|
MainWindow* mainwindow;
|
|
QNetworkAccessManager manager;
|
|
QPixmap background;
|
|
QTimer* timer = nullptr, *newBackgroundTimer = nullptr;
|
|
|
|
void paintEvent(QPaintEvent* event);
|
|
};
|
|
|
|
#endif // BACKGROUND_H
|