1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| #ifndef WINDOWBUTTONPRIVATE_H
| #define WINDOWBUTTONPRIVATE_H
|
| #include "windowbutton.h"
|
| namespace QWK {
|
| class WindowButtonPrivate {
| Q_DECLARE_PUBLIC(WindowButton)
| public:
| WindowButtonPrivate();
| virtual ~WindowButtonPrivate();
|
| void init();
|
| WindowButton *q_ptr;
|
| QIcon iconNormal;
| QIcon iconChecked;
| QIcon iconDisabled;
|
| void reloadIcon();
| };
|
| }
|
| #endif // WINDOWBUTTONPRIVATE_H
|
|