]> Shamusworld >> Repos - architektonas/blob - src/layeritemwidget.h
0ee11191c4d0ac5026a73c3e25bec8aaaff441b7
[architektonas] / src / layeritemwidget.h
1 #ifndef __LAYERITEMWIDGET_H__
2 #define __LAYERITEMWIDGET_H__
3
4 #include <QtGui>
5
6 class LayerItemWidget: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 LayerItemWidget(QString, bool invisible = false, bool locked = false);
12                 ~LayerItemWidget();
13
14         public:
15                 QLabel * name;
16                 QPushButton * visibility;
17                 QPushButton * editibility;
18 };
19
20 #endif  // __LAYERITEMWIDGET_H__