author | unc0rr |
Wed, 10 Mar 2010 06:50:06 +0000 | |
changeset 2972 | 82828fd23dea |
parent 2596 | 41b46f83d088 |
permissions | -rw-r--r-- |
2572 | 1 |
#ifndef EDITOR_H |
2 |
#define EDITOR_H |
|
3 |
||
4 |
#include <QtGui/QMainWindow> |
|
5 |
||
6 |
namespace Ui |
|
7 |
{ |
|
8 |
class editor; |
|
9 |
} |
|
10 |
||
2583 | 11 |
class QCheckBox; |
12 |
||
2572 | 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; |
|
2583 | 23 |
QList<QCheckBox *> cbFlags; |
24 |
||
25 |
void load(const QString & fileName); |
|
2596
41b46f83d088
Compete loading teams/hedgehogs part from mission config
unc0rr
parents:
2583
diff
changeset
|
26 |
void reset(); |
2583 | 27 |
|
28 |
private slots: |
|
29 |
void on_actionLoad_triggered(); |
|
2572 | 30 |
}; |
31 |
||
32 |
#endif // EDITOR_H |