]> Shamusworld >> Repos - architektonas/blob - src/layeritemwidget.h
Converted codebase from Qt4 to Qt5.
[architektonas] / src / layeritemwidget.h
1 #ifndef __LAYERITEMWIDGET_H__
2 #define __LAYERITEMWIDGET_H__
3
4 #include <QtWidgets>
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__