]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgrotate2.h
Fixed problem with MDI activation.
[architektonas] / src / forms / dlgrotate2.h
1 #ifndef __DLGROTATE2_H__
2 #define __DLGROTATE2_H__
3
4 #include "ui_dlgrotate2.h"
5
6 class Rotate2Data;
7
8 class DlgRotate2: public QDialog
9 {
10         Q_OBJECT
11
12         public:
13                 DlgRotate2(QWidget * parent = 0, Qt::WindowFlags flags = 0);
14                 ~DlgRotate2();
15
16         public slots:
17                 void setData(Rotate2Data * d);
18                 void updateData();
19
20         protected:
21                 int newVariable;
22
23         private:
24                 QString angle2;
25                 bool useCurrentAttributes;
26                 bool useCurrentLayer;
27                 int numberMode;
28                 QString copies;
29                 Rotate2Data * data;
30                 QString angle1;
31
32         private:
33                 Ui::DlgRotate2 ui;
34 };
35
36 #endif  // __DLGROTATE2_H__