diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-23 14:36:51 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-23 14:36:51 +0000 |
commit | 3a9ae4770fcfec80c660fd9351ecea8c3c9bc913 (patch) | |
tree | 2f084acc77ac30724641fda88989fbb003b352e0 /src/gui/button.h | |
parent | db4fd250723ad6121059a71f1cac0e87eb91e695 (diff) | |
download | mana-3a9ae4770fcfec80c660fd9351ecea8c3c9bc913.tar.gz mana-3a9ae4770fcfec80c660fd9351ecea8c3c9bc913.tar.bz2 mana-3a9ae4770fcfec80c660fd9351ecea8c3c9bc913.tar.xz mana-3a9ae4770fcfec80c660fd9351ecea8c3c9bc913.zip |
Skinned our beautiful text field back!
Diffstat (limited to 'src/gui/button.h')
-rw-r--r-- | src/gui/button.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/button.h b/src/gui/button.h index b7d48929..0c45b133 100644 --- a/src/gui/button.h +++ b/src/gui/button.h @@ -31,10 +31,14 @@ */ class Button : public gcn::Button { public: + /** + * Constructor, sets the caption of the button to the given string. + */ Button(const std::string& caption); - // Inherited from Widget - + /** + * Draws the button. + */ void draw(gcn::Graphics* graphics); }; |