summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.h
diff options
context:
space:
mode:
authorBlue <bluesansdouze@gmail.com>2009-04-26 03:10:02 +0200
committerJared Adams <jaxad0127@gmail.com>2009-04-25 19:13:35 -0600
commit1b114e761b528fdcf132db294dbe83d8aafe3621 (patch)
treef556251d13f690aa32c0e09b2bed6f96fc9a04c8 /src/gui/setup_video.h
parentc694500e3ad9b958910ce6b230378caecfa83257 (diff)
downloadmana-1b114e761b528fdcf132db294dbe83d8aafe3621.tar.gz
mana-1b114e761b528fdcf132db294dbe83d8aafe3621.tar.bz2
mana-1b114e761b528fdcf132db294dbe83d8aafe3621.tar.xz
mana-1b114e761b528fdcf132db294dbe83d8aafe3621.zip
Font size change in the gui
Added support for change font size in the setup menu (video tab). You can select small (11), normal (12), large (13), very large (14). You need to restart the client for it takes effect.
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r--src/gui/setup_video.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h
index 20944924..9b9cbfde 100644
--- a/src/gui/setup_video.h
+++ b/src/gui/setup_video.h
@@ -67,6 +67,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener,
gcn::Label *scrollLazinessLabel;
gcn::Label *overlayDetailLabel;
gcn::Label *particleDetailLabel;
+ gcn::Label *fontSizeLabel;
gcn::ListBox *mModeList;
gcn::CheckBox *mFsCheckBox;
@@ -102,6 +103,9 @@ class Setup_Video : public SetupTab, public gcn::ActionListener,
int mParticleDetail;
gcn::Slider *mParticleDetailSlider;
gcn::Label *mParticleDetailField;
+
+ int mFontSize;
+ gcn::DropDown *mFontSizeDropDown;
};
#endif