diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-27 02:07:56 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-27 02:07:56 +0000 |
commit | 5b3b8e8089902cb957e4dd19c0b258bc7bdb8065 (patch) | |
tree | eb7f8e997d25d7e816d659f11809ed9131cd903d /src/gui/checkbox.h | |
parent | 800f8e6070f10908c446147b96d5e1424f55c729 (diff) | |
download | mana-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.h | 8 |
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); }; |