summaryrefslogtreecommitdiff
path: root/src/gui/button.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-16 21:53:10 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-16 21:53:10 +0000
commitf80bf2dfb4de682a56abe79b7b0e5e0459804b30 (patch)
treecc45a8a6dfa7abe41b9f13fabffbb6287513cf46 /src/gui/button.h
parent6a25f872d6102058c8186398627abc5d84f2363a (diff)
downloadmana-client-f80bf2dfb4de682a56abe79b7b0e5e0459804b30.tar.gz
mana-client-f80bf2dfb4de682a56abe79b7b0e5e0459804b30.tar.bz2
mana-client-f80bf2dfb4de682a56abe79b7b0e5e0459804b30.tar.xz
mana-client-f80bf2dfb4de682a56abe79b7b0e5e0459804b30.zip
Made button, checkbox and radiobutton count their instances and only load their
resources once. Other widgets will follow later.
Diffstat (limited to 'src/gui/button.h')
-rw-r--r--src/gui/button.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gui/button.h b/src/gui/button.h
index a9ddd3fa..c3be49f2 100644
--- a/src/gui/button.h
+++ b/src/gui/button.h
@@ -41,12 +41,18 @@ class Button : public gcn::Button {
Button(const std::string& caption);
/**
+ * Destructor.
+ */
+ ~Button();
+
+ /**
* Draws the button.
*/
void draw(gcn::Graphics* graphics);
private:
- ImageRect button[4];
+ static ImageRect button[4]; /**< Button state graphics */
+ static int instances; /**< Number of button instances */
};
#endif