blob: 1649cdd5482dbec8a29b26dedfe9c8ec794f4962 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// This class is the widget which provides the screensaver painting/plugin functionality
//===========================================
#ifndef _LUMINA_DESKTOP_SCREEN_SAVER_BASE_WIDGET_H
#define _LUMINA_DESKTOP_SCREEN_SAVER_BASE_WIDGET_H
#include "GlobalDefines.h"
#include "animations/BaseAnimGroup.h"
class SSBaseWidget : public QWidget{
Q_OBJECT
public:
SSBaseWidget(QWidget *parent, QSettings *set);
~SSBaseWidget();
void setPlugin(QString);
public slots:
void startPainting();
void stopPainting();
private:
QString plugType, cplug; //type of custom painting to do
BaseAnimGroup *ANIM;
QSettings *settings;
private slots:
signals:
void InputDetected(); //just in case no event handling setup at the WM level
protected:
void mouseMoveEvent(QMouseEvent *ev){
ev->accept();
emit InputDetected();
}
void keyPressEvent(QKeyEvent *ev){
ev->accept();
emit InputDetected();
}
};
#endif
|