]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgdimension.h
Fixed problem with MDI activation.
[architektonas] / src / forms / dlgdimension.h
1 #ifndef __DLGDIMENSION_H__
2 #define __DLGDIMENSION_H__
3
4 #include "ui_dlgdimension.h"
5
6 class Dimension;
7
8 class DlgDimension: public QDialog
9 {
10         Q_OBJECT
11
12         public:
13                 DlgDimension(QWidget * parent = 0, Qt::WindowFlags flags = 0);
14                 ~DlgDimension();
15
16         public slots:
17                 void setDim(Dimension & d);
18                 void updateDim();
19
20         private:
21                 Dimension * dim;
22
23         private:
24                 Ui::DlgDimension ui;
25 };
26
27 #endif  // __DLGDIMENSION_H__