]> Shamusworld >> Repos - architektonas/blob - src/forms/dlgattributes.h
Fixed problem with MDI activation.
[architektonas] / src / forms / dlgattributes.h
1 #ifndef __DLGATTRIBUTES_H__
2 #define __DLGATTRIBUTES_H__
3
4 #include "ui_dlgattributes.h"
5 #include "pen.h"
6
7 class AttributesData;
8 class 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(AttributesData * data, LayerList & layerList);
20                 void updateData();
21
22         private:
23                 Pen pen;
24                 AttributesData * data;
25
26         private:
27                 Ui::DlgAttributes ui;
28 };
29
30 #endif  // __DLGATTRIBUTES_H__