]> Shamusworld >> Repos - guemap/blob - src/roomwidget.h
Initial commit of GUEmap v3.
[guemap] / src / roomwidget.h
1 #ifndef __ROOMWIDGET_H__
2 #define __ROOMWIDGET_H__
3
4 #include <QtWidgets>
5 //#include "structs.h"
6
7 class MapDoc;
8
9 class RoomWidget: public QWidget
10 {
11         Q_OBJECT
12
13         public:
14                 RoomWidget(void);
15                 ~RoomWidget();
16
17         public slots:
18 //              void ShowInfo(Object *);
19                 void ShowInfo(MapDoc *, int);
20
21         public:
22                 QLabel * label;
23                 QLineEdit name;
24                 QTextEdit comment;
25                 QCheckBox border;
26 };
27
28 #endif  // __ROOMWIDGET_H__
29