Advanced Settings Panel
[pierogi] / pirapplication.h
1 #ifndef PIRAPPLICATION_H
2 #define PIRAPPLICATION_H
3
4 #include <QApplication>
5
6 class QWidget;
7
8 class PIRApplication: public QApplication
9 {
10   Q_OBJECT
11 public:
12   PIRApplication(
13     int &argc,
14     char **argv);
15
16   void setupRockerSwitch(
17     QWidget *window);
18
19   virtual bool x11EventFilter(
20     XEvent *event);
21
22 signals:
23   void increaseRockerPressed();
24   void decreaseRockerPressed();
25
26 private slots:
27   void finishChangingKeyset();
28
29 private:
30   bool changingKeyset;
31 };
32
33 #endif // PIRAPPLICATION_H