diff options
author | Angelo Castellani <udp.castellani@gmail.com> | 2011-05-23 11:47:37 -0400 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-05-24 20:13:09 -0600 |
commit | 87c1e459cc0ace8a8bdd3911cfde8793b8aab5c8 (patch) | |
tree | 0dd9ce30f81e7ad8c3b7edf28f8143eb4e1d2e2b /src/gui/setup_video.h | |
parent | dc0097631ff092660e2249d7001ec339a090698d (diff) | |
download | mana-87c1e459cc0ace8a8bdd3911cfde8793b8aab5c8.tar.gz mana-87c1e459cc0ace8a8bdd3911cfde8793b8aab5c8.tar.bz2 mana-87c1e459cc0ace8a8bdd3911cfde8793b8aab5c8.tar.xz mana-87c1e459cc0ace8a8bdd3911cfde8793b8aab5c8.zip |
Broke the setup tab "Video" in two
Added an 'Interface' tab for the items that seemed to fit better
there than in 'Video'.
Signed-off-by: Jared Adams <jaxad0127@gmail.com>
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r-- | src/gui/setup_video.h | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index d0e2c492..be8724da 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -31,7 +31,6 @@ #include <guichan/keylistener.hpp> class ModeListModel; -class FontSizeChoiceListModel; class Setup_Video : public SetupTab, public gcn::ActionListener, public gcn::KeyListener @@ -53,46 +52,23 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, bool mFullScreenEnabled; bool mOpenGLEnabled; bool mCustomCursorEnabled; - bool mShowMonsterDamageEnabled; - bool mVisibleNamesEnabled; bool mParticleEffectsEnabled; - bool mNameEnabled; - bool mNPCLogEnabled; - bool mPickupChatEnabled; - bool mPickupParticleEnabled; - double mOpacity; int mFps; bool mSDLTransparencyDisabled; - Being::Speech mSpeechMode; ModeListModel *mModeListModel; - FontSizeChoiceListModel *mFontSizeListModel; - gcn::Label *speechLabel; - gcn::Label *alphaLabel; - gcn::Label *scrollRadiusLabel; - gcn::Label *scrollLazinessLabel; + //gcn::Label *scrollRadiusLabel; + //gcn::Label *scrollLazinessLabel; gcn::Label *overlayDetailLabel; gcn::Label *particleDetailLabel; - gcn::Label *fontSizeLabel; gcn::ListBox *mModeList; gcn::CheckBox *mFsCheckBox; gcn::CheckBox *mOpenGLCheckBox; gcn::CheckBox *mCustomCursorCheckBox; - gcn::CheckBox *mShowMonsterDamageCheckBox; - gcn::CheckBox *mVisibleNamesCheckBox; gcn::CheckBox *mParticleEffectsCheckBox; - gcn::CheckBox *mNameCheckBox; - gcn::CheckBox *mNPCLogCheckBox; - gcn::Label *mPickupNotifyLabel; - gcn::CheckBox *mPickupChatCheckBox; - gcn::CheckBox *mPickupParticleCheckBox; - - gcn::Slider *mSpeechSlider; - gcn::Label *mSpeechLabel; - gcn::Slider *mAlphaSlider; gcn::CheckBox *mFpsCheckBox; gcn::Slider *mFpsSlider; gcn::Label *mFpsLabel; @@ -105,9 +81,6 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, gcn::Slider *mParticleDetailSlider; gcn::Label *mParticleDetailField; - int mFontSize; - gcn::DropDown *mFontSizeDropDown; - gcn::CheckBox *mDisableSDLTransparencyCheckBox; }; |