diff options
Diffstat (limited to 'plugingui/checkbox.h')
-rw-r--r-- | plugingui/checkbox.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugingui/checkbox.h b/plugingui/checkbox.h index 4b77964..1d6f9d6 100644 --- a/plugingui/checkbox.h +++ b/plugingui/checkbox.h @@ -28,6 +28,7 @@ #define __DRUMGIZMO_CHECKBOX_H__ #include "widget.h" +#include "image.h" namespace GUI { @@ -52,7 +53,12 @@ public: virtual void keyEvent(KeyEvent *e); private: + Image bg_on; + Image bg_off; + Image knob; + bool state; + bool middle; void (*handler)(void *); void *ptr; |