Changes:
[ptas] / zouba / ui.h
1 #ifndef UI_H
2 #define UI_H
3
4 class QMainWindow;
5 class QWidget;
6 class QTableWidget;
7 class QButtonGroup;
8
9 class Ui
10 {
11 public:
12   Ui();
13   ~Ui();
14   void setupUi( QMainWindow *mainWindow );
15
16   enum {
17     HomeButtonId=0,
18     WorkButtonId=1
19   };
20
21   enum {
22     ScreenWidth=800,
23     ScreenHeight=480
24   };
25
26   enum {
27     ButtonWidth=300,
28     ButtonHeight=70
29   };
30
31   QWidget *centralWidget;
32   QButtonGroup *destinationButtons;
33   QTableWidget *table;
34 };
35 #endif //UI_H