diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-20 09:01:12 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-10-20 09:01:12 +0000 |
commit | 5acb9213cc2ee949a252a5c08a9a9a13542b94d5 (patch) | |
tree | 40d29fd38eeb692ec948c69f15f5ca27067fa7fb /src/gui/menuwindow.h | |
parent | 2415d3b14cdec975a28ccef46d5234f70b06d3b0 (diff) | |
download | mana-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.tar.gz mana-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.tar.bz2 mana-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.tar.xz mana-5acb9213cc2ee949a252a5c08a9a9a13542b94d5.zip |
Various cleanups and refactorisations.
Diffstat (limited to 'src/gui/menuwindow.h')
-rw-r--r-- | src/gui/menuwindow.h | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/src/gui/menuwindow.h b/src/gui/menuwindow.h index 0585748d..945bca94 100644 --- a/src/gui/menuwindow.h +++ b/src/gui/menuwindow.h @@ -24,10 +24,6 @@ #ifndef _TMW_MENU_H #define _TMW_MENU_H -#include <iosfwd> - -#include <guichan/actionlistener.hpp> - #include "window.h" #include "../guichanfwd.h" @@ -37,33 +33,19 @@ * * \ingroup Interface */ -class MenuWindow : public Window, public gcn::ActionListener { +class MenuWindow : public Window +{ public: /** * Constructor. */ MenuWindow(); - /** - * Called when receiving actions from widget. - */ - void action(const std::string& eventId); - /** * Draw this window */ void draw(gcn::Graphics *graphics); - - private: - - /** - * System Buttons - */ - gcn::Button *statusButton, *equipmentButton; - gcn::Button *skillsButton, *inventoryButton, *setupButton; }; -extern MenuWindow *menuWindow; - #endif |