]> Shamusworld >> Repos - architektonas/blob - src/forms/dimensionlabeleditor.h
Final round of dialogs/forms needing to be converted from Qt3 to 4
[architektonas] / src / forms / 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__