]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgrotate.h
Final round of dialogs/forms needing to be converted from Qt3 to 4
[architektonas] / src / forms / dlgrotate.h
1 #ifndef __DLGROTATE_H__
2 #define __DLGROTATE_H__
3
4 #include "ui_dlgrotate.h"
5
6 class RS_RotateData;
7
8 class DlgRotate: public QDialog
9 {
10         Q_OBJECT
11
12         public:
13                 DlgRotate(QWidget * parent = 0, Qt::WindowFlags flags = 0);
14                 ~DlgRotate();
15
16         public slots:
17                 void setData(RS_RotateData * d);
18                 void updateData();
19
20         private:
21                 bool useCurrentAttributes;
22                 bool useCurrentLayer;
23                 int numberMode;
24                 QString copies;
25                 RS_RotateData * data;
26                 QString angle;
27
28         private:
29                 Ui::DlgRotate ui;
30 };
31
32 #endif  // __DLGROTATE_H__