]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgattributes.h
Start of bringing back missing forms/dialogs
[architektonas] / src / forms / dlgattributes.h
1 #ifndef __DLGATTRIBUTES_H__
2 #define __DLGATTRIBUTES_H__
3
4 #include "ui_dlgattributes.h"
5 #include "rs_pen.h"
6
7 class RS_AttributesData;
8 class RS_LayerList;
9
10 class DlgAttributes: public QDialog
11 {
12         Q_OBJECT
13
14         public:
15                 DlgAttributes(QWidget * parent = 0, Qt::WindowFlags flags = 0);
16                 ~DlgAttributes();
17
18         public slots:
19                 void setData(RS_AttributesData * data, RS_LayerList & layerList);
20                 void updateData();
21
22         private:
23                 RS_Pen pen;
24                 RS_AttributesData * data;
25
26         private:
27                 Ui::DlgAttributes ui;
28 };
29
30 #endif  // __DLGATTRIBUTES_H__