]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgoptionsgeneral.h
Fixed problem with MDI activation.
[architektonas] / src / forms / dlgoptionsgeneral.h
1 #ifndef __DLGOPTIONSGENERAL_H__
2 #define __DLGOPTIONSGENERAL_H__
3
4 #include "ui_dlgoptionsgeneral.h"
5
6 class DlgOptionsGeneral: public QDialog
7 {
8         Q_OBJECT
9
10         public:
11                 DlgOptionsGeneral(QWidget * parent = 0, Qt::WindowFlags flags = 0);
12                 ~DlgOptionsGeneral();
13
14         public slots:
15                 void setRestartNeeded();
16                 void ok();
17
18         private:
19                 bool restartNeeded;
20
21         private:
22                 Ui::DlgOptionsGeneral ui;
23 };
24
25 #endif  // __DLGOPTIONSGENERAL_H__