branch | experimental3D |
changeset 4343 | 19cbea33e4d2 |
parent 4006 | 45b63c2a694f |
parent 4341 | 46b8791e577f |
child 4345 | 2c93d6a10869 |
4006:45b63c2a694f | 4343:19cbea33e4d2 |
---|---|
1 #ifndef EDITOR_H |
|
2 #define EDITOR_H |
|
3 |
|
4 #include <QtGui/QMainWindow> |
|
5 |
|
6 namespace Ui |
|
7 { |
|
8 class editor; |
|
9 } |
|
10 |
|
11 class QCheckBox; |
|
12 |
|
13 class editor : public QMainWindow |
|
14 { |
|
15 Q_OBJECT |
|
16 |
|
17 public: |
|
18 editor(QWidget *parent = 0); |
|
19 ~editor(); |
|
20 |
|
21 private: |
|
22 Ui::editor *ui; |
|
23 QList<QCheckBox *> cbFlags; |
|
24 |
|
25 void load(const QString & fileName); |
|
26 void reset(); |
|
27 |
|
28 private slots: |
|
29 void on_actionLoad_triggered(); |
|
30 }; |
|
31 |
|
32 #endif // EDITOR_H |