theshell/shell/globalfilter.h

53 lines
1.4 KiB
C
Raw Normal View History

2017-08-05 15:20:02 +10:00
/****************************************
2018-01-08 18:26:23 +11:00
*
2017-08-05 15:20:02 +10:00
* theShell - Desktop Environment
2018-01-08 18:26:23 +11:00
* Copyright (C) 2018 Victor Tran
2017-08-05 15:20:02 +10:00
*
* 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/>.
2018-01-08 18:26:23 +11:00
*
2017-08-05 15:20:02 +10:00
* *************************************/
2016-05-29 17:03:52 +10:00
#ifndef GLOBALFILTER_H
#define GLOBALFILTER_H
#include <QObject>
#include <QApplication>
#include <QUrl>
#include <QSound>
#include <QSettings>
#include "background.h"
2016-05-29 17:03:52 +10:00
class GlobalFilter : public QObject
{
Q_OBJECT
public:
explicit GlobalFilter(QApplication *application, QObject *parent = 0);
signals:
2016-07-01 14:01:19 +10:00
void removeBackgrounds();
2018-05-19 21:28:54 +10:00
void changeBackgrounds();
2016-05-29 17:03:52 +10:00
public slots:
void reloadScreens();
2016-07-01 14:01:19 +10:00
void reloadBackgrounds();
2018-05-19 01:33:40 +10:00
void newCommunityImage();
2016-05-29 17:03:52 +10:00
private:
bool eventFilter(QObject *object, QEvent *event);
QSound* clickSound;
};
#endif // GLOBALFILTER_H