]> Shamusworld >> Repos - wozmaker/blob - src/infowidget.h
Flesh out the disk settings dialog.
[wozmaker] / src / infowidget.h
1 #ifndef __INFOWIDGET_H__
2 #define __INFOWIDGET_H__
3
4 #include <QtWidgets>
5
6 class InfoWidget: public QWidget
7 {
8         Q_OBJECT
9
10         public:
11                 InfoWidget(void);
12                 ~InfoWidget();
13
14         public slots:
15                 void ShowInfo(void);
16
17         private:
18                 QLabel * label;
19 };
20
21 #endif  // __INFOWIDGET_H__
22