]> Shamusworld >> Repos - architektonas/blob - src/blockitemwidget.h
Converted codebase from Qt4 to Qt5.
[architektonas] / src / blockitemwidget.h
1 #ifndef __BLOCKITEMWIDGET_H__
2 #define __BLOCKITEMWIDGET_H__
3
4 #include <QtWidgets>
5
6 class BlockItemWidget: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 BlockItemWidget(QString, QPixmap * i = 0);
12                 ~BlockItemWidget();
13
14         public:
15                 QLabel * name;
16                 QLabel * image;
17 };
18
19 #endif  // __BLOCKITEMWIDGET_H__