]> Shamusworld >> Repos - architektonas/blob - src/forms/selectionwidget.h
Fixed problem with MDI activation.
[architektonas] / src / forms / selectionwidget.h
1 #ifndef __SELECTIONWIDGET_H__
2 #define __SELECTIONWIDGET_H__
3
4 #include "ui_selectionwidget.h"
5
6 class SelectionWidget: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 SelectionWidget(QWidget * parent = 0, Qt::WindowFlags flags = 0);
12                 ~SelectionWidget();
13
14         public slots:
15                 void setNumber(int n);
16
17         private:
18                 Ui::SelectionWidget ui;
19 };
20
21 #endif  // __SELECTIONWIDGET_H__