]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgpoint.h
In the middle of major refactoring...
[architektonas] / src / forms / dlgpoint.h
1 #ifndef __DLGPOINT_H__
2 #define __DLGPOINT_H__
3
4 #include "ui_dlgpoint.h"
5 #include "rs_pen.h"
6
7 class RS_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(RS_Point & p);
19                 void updatePoint();
20
21         private:
22                 RS_Pen pen;
23                 RS_Point * point;
24
25         private:
26                 Ui::DlgPoint ui;
27 };
28
29 #endif  // __DLGPOINT_H__