summaryrefslogtreecommitdiff
path: root/src/gui/setup_other.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-06-18 23:35:58 +0300
committerAndrei Karas <akaras@inbox.ru>2011-06-18 23:39:07 +0300
commitdc6771670569d2f296f4c12595966bbcb9aadf65 (patch)
tree92e0a21bd121c7abe43f22e1d25a8f17b6969214 /src/gui/setup_other.h
parent6a10bc8d7d186fd83099c75c2a03409d0881aae9 (diff)
downloadManaVerse-dc6771670569d2f296f4c12595966bbcb9aadf65.tar.gz
ManaVerse-dc6771670569d2f296f4c12595966bbcb9aadf65.tar.bz2
ManaVerse-dc6771670569d2f296f4c12595966bbcb9aadf65.tar.xz
ManaVerse-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.h9
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