summaryrefslogtreecommitdiff
path: root/src/gui/checkbox.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-27 02:07:56 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-27 02:07:56 +0000
commit5b3b8e8089902cb957e4dd19c0b258bc7bdb8065 (patch)
treeeb7f8e997d25d7e816d659f11809ed9131cd903d /src/gui/checkbox.h
parent800f8e6070f10908c446147b96d5e1424f55c729 (diff)
downloadmana-client-5b3b8e8089902cb957e4dd19c0b258bc7bdb8065.tar.gz
mana-client-5b3b8e8089902cb957e4dd19c0b258bc7bdb8065.tar.bz2
mana-client-5b3b8e8089902cb957e4dd19c0b258bc7bdb8065.tar.xz
mana-client-5b3b8e8089902cb957e4dd19c0b258bc7bdb8065.zip
Skinned slider, yeah!
Diffstat (limited to 'src/gui/checkbox.h')
-rw-r--r--src/gui/checkbox.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/checkbox.h b/src/gui/checkbox.h
index 42e637fb..d519020d 100644
--- a/src/gui/checkbox.h
+++ b/src/gui/checkbox.h
@@ -31,10 +31,14 @@
*/
class CheckBox : public gcn::CheckBox {
public:
+ /**
+ * Constructor.
+ */
CheckBox(const std::string& caption, bool marked = false);
- // Inherited from Widget
-
+ /**
+ * Draws the check box, not the caption.
+ */
void drawBox(gcn::Graphics* graphics);
};