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