]> Shamusworld >> Repos - guemap/blob - roomdialog.h
3de1fe1ed3097d1d039074f7ad185d147aa0bd0c
[guemap] / roomdialog.h
1 #ifndef __ROOMDIALOG_H__
2 #define __ROOMDIALOG_H__
3
4 #include <QtWidgets>
5
6 class RoomDialog: public QDialog
7 {
8         Q_OBJECT
9
10         public:
11                 RoomDialog(QWidget * parent = 0);
12                 ~RoomDialog();
13
14         private:
15                 QDialogButtonBox * buttonBox;
16
17         public:
18                 QLineEdit name;
19                 QTextEdit comment;
20                 QCheckBox border;
21 };
22
23 #endif  // __ROOMDIALOG_H__
24