diff options
Diffstat (limited to 'src/gui/checkbox.h')
-rw-r--r-- | src/gui/checkbox.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h index 5e410a7e..3a678c5e 100644 --- a/src/gui/checkbox.h +++ b/src/gui/checkbox.h @@ -42,6 +42,12 @@ class CheckBox : public gcn::CheckBox { * Draws the check box, not the caption. */ void drawBox(gcn::Graphics* graphics); + + private: + Image *checkBoxNormal; + Image *checkBoxChecked; + Image *checkBoxDisabled; + Image *checkBoxDisabledChecked; }; #endif |