diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-18 23:35:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-18 23:39:07 +0300 |
commit | dc6771670569d2f296f4c12595966bbcb9aadf65 (patch) | |
tree | 92e0a21bd121c7abe43f22e1d25a8f17b6969214 /src/gui/setup_other.h | |
parent | 6a10bc8d7d186fd83099c75c2a03409d0881aae9 (diff) | |
download | plus-dc6771670569d2f296f4c12595966bbcb9aadf65.tar.gz plus-dc6771670569d2f296f4c12595966bbcb9aadf65.tar.bz2 plus-dc6771670569d2f296f4c12595966bbcb9aadf65.tar.xz plus-dc6771670569d2f296f4c12595966bbcb9aadf65.zip |
Start implimenting new setup pages.
Add new container for setup items. Imporved other containers.
Diffstat (limited to 'src/gui/setup_other.h')
-rw-r--r-- | src/gui/setup_other.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/setup_other.h b/src/gui/setup_other.h index 8bf4fe659..04ae7fed3 100644 --- a/src/gui/setup_other.h +++ b/src/gui/setup_other.h @@ -25,13 +25,14 @@ #include "guichanfwd.h" -#include "gui/widgets/setuptab.h" +#include "gui/widgets/setuptabscroll.h" #include <guichan/actionlistener.hpp> class EditDialog; +class TextField; -class Setup_Other : public SetupTab, public gcn::ActionListener +class Setup_Other : public SetupTabScroll, public gcn::ActionListener { public: Setup_Other(); @@ -72,7 +73,7 @@ class Setup_Other : public SetupTab, public gcn::ActionListener bool mFloorItemsHighlight; gcn::Label *mMoveProgramLabel; - gcn::TextField *mMoveProgramField; + TextField *mMoveProgramField; gcn::Button *mMoveProgramButton; std::string mMoveProgram; @@ -126,6 +127,8 @@ class Setup_Other : public SetupTab, public gcn::ActionListener bool mEnableAttackFilter; EditDialog *mEditDialog; + + std::list<gcn::Widget*> mDeleteWidgets; }; #endif |