summaryrefslogtreecommitdiff
path: root/src/gui/checkbox.h
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2005-01-16 16:39:46 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2005-01-16 16:39:46 +0000
commitb4607a6c80a5ab7b09a79baa7b9f9d9c7aeab6ef (patch)
treecb36408544711f46b1394f3cc758b3d52736885b /src/gui/checkbox.h
parentcf815e520dda01b291a8020db04c67c4ff1ebfbf (diff)
downloadmana-client-b4607a6c80a5ab7b09a79baa7b9f9d9c7aeab6ef.tar.gz
mana-client-b4607a6c80a5ab7b09a79baa7b9f9d9c7aeab6ef.tar.bz2
mana-client-b4607a6c80a5ab7b09a79baa7b9f9d9c7aeab6ef.tar.xz
mana-client-b4607a6c80a5ab7b09a79baa7b9f9d9c7aeab6ef.zip
Checkbox update
Diffstat (limited to 'src/gui/checkbox.h')
-rw-r--r--src/gui/checkbox.h6
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