summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r--src/gui/setup_video.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h
index f65b78ff..e3bd62b1 100644
--- a/src/gui/setup_video.h
+++ b/src/gui/setup_video.h
@@ -30,11 +30,15 @@
#include <guichan/actionlistener.hpp>
#include <guichan/keylistener.hpp>
+class ModeListModel;
+class FontSizeChoiceListModel;
+
class Setup_Video : public SetupTab, public gcn::ActionListener,
public gcn::KeyListener
{
public:
Setup_Video();
+ ~Setup_Video();
void apply();
void cancel();
@@ -62,7 +66,8 @@ class Setup_Video : public SetupTab, public gcn::ActionListener,
int mFps;
Being::Speech mSpeechMode;
- class ModeListModel *mModeListModel;
+ ModeListModel *mModeListModel;
+ FontSizeChoiceListModel *mFontSizeListModel;
gcn::Label *speechLabel;
gcn::Label *alphaLabel;
@@ -99,7 +104,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener,
int mParticleDetail;
gcn::Slider *mParticleDetailSlider;
gcn::Label *mParticleDetailField;
-
+
int mFontSize;
gcn::DropDown *mFontSizeDropDown;
};