Added Qt4 support to CMake, along with an icon and a test
[EconoBoard.git] / src / ecoboard / application.h
blob8040cdd76bc93fef9569aa5104ebe9dd601b5253
1 #ifndef MAINWINDOW_H__
2 #define MAINWINDOW_H__
4 #include <QApplication>
6 class QSystemTrayIcon;
7 class QMenu;
8 class QAction;
10 class EBApplication : public QApplication
12 Q_OBJECT
14 public:
15 EBApplication(int &argc, char **argv);
17 private:
18 void createActions();
19 void createMenus();
20 void createWidgets();
22 QSystemTrayIcon *systemTray;
23 QMenu *trayMenu;
24 QAction *exitAct;
27 #endif