cherish
CherishApplication.h
1 #ifndef DUREUAPPLICATION_H
2 #define DUREUAPPLICATION_H
3 
4 #include <QApplication>
5 #include <QTabletEvent>
6 
10 class CherishApplication : public QApplication {
11  Q_OBJECT
12 
13 public:
15  CherishApplication(int& argv, char** argc);
16 
17 signals:
24  void setTabletActivity(bool active);
25 
26 protected:
30  bool event(QEvent* event) Q_DECL_OVERRIDE;
31 
32 private:
33  void setDPIScalingGUI();
34 };
35 
36 #endif // DUREUAPPLICATION_H
Class that is derivative of QApplication and runs the application process.
Definition: CherishApplication.h:10
CherishApplication(int &argv, char **argc)
Definition: CherishApplication.cpp:15
void setTabletActivity(bool active)
bool event(QEvent *event) Q_DECL_OVERRIDE
Definition: CherishApplication.cpp:21