]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgpoint.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / dlgpoint.h
1 #ifndef __DLGPOINT_H__
2 #define __DLGPOINT_H__
3
4 #include "ui_dlgpoint.h"
5 #include "pen.h"
6
7 class Point;
8
9 class DlgPoint: public QDialog
10 {
11         Q_OBJECT
12
13         public:
14                 DlgPoint(QWidget * parent = 0, Qt::WindowFlags flags = 0);
15                 ~DlgPoint();
16
17         public slots:
18                 void setPoint(Point & p);
19                 void updatePoint();
20
21         private:
22                 Pen pen;
23                 Point * point;
24
25         private:
26                 Ui::DlgPoint ui;
27 };
28
29 #endif  // __DLGPOINT_H__