]> Shamusworld >> Repos - architektonas/blob - dimensionlabeleditor.h
423ac42a1966793669211f9a81a76463d576005b
[architektonas] / dimensionlabeleditor.h
1 #ifndef __DIMENSIONLABELEDITOR_H__
2 #define __DIMENSIONLABELEDITOR_H__
3
4 #include "ui_dimensionlabeleditor.h"
5
6 class DimensionLabelEditor: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 DimensionLabelEditor(QWidget * parent = 0, Qt::WindowFlags flags = 0);
12                 ~DimensionLabelEditor();
13
14                 QString getLabel();
15
16         public slots:
17                 void setLabel(const QString & l);
18                 void insertSign(const QString & s);
19
20         private:
21                 Ui::DimensionLabelEditor ui;
22 };
23
24 #endif  // __DIMENSIONLABELEDITOR_H__