diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-10 17:24:57 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-10 17:24:57 -0700 |
commit | d067d7da8e6ee333a4941d4fe6ee9eb926d37f00 (patch) | |
tree | 03374aa436a0f2e1f3ba7cca250f260a5b4d60d3 /src/gui/setup_video.h | |
parent | 00d8f57800042a324795b30dd35b21d67d47a2aa (diff) | |
download | mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.tar.gz mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.tar.bz2 mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.tar.xz mana-d067d7da8e6ee333a4941d4fe6ee9eb926d37f00.zip |
Added two more options for displaying speech overhead (don't show it at
all and show speech bubbles without names). Since a checkbox won't work
any more for all of these modes, it's now a slider.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r-- | src/gui/setup_video.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index 303b5bfc..8230569a 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -52,10 +52,10 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, bool mOpenGLEnabled; bool mCustomCursorEnabled; bool mParticleEffectsEnabled; - bool mSpeechBubbleEnabled; bool mNameEnabled; double mOpacity; int mFps; + int mSpeechMode; class ModeListModel *mModeListModel; @@ -64,9 +64,10 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, gcn::CheckBox *mOpenGLCheckBox; gcn::CheckBox *mCustomCursorCheckBox; gcn::CheckBox *mParticleEffectsCheckBox; - gcn::CheckBox *mSpeechBubbleCheckBox; gcn::CheckBox *mNameCheckBox; + gcn::Slider *mSpeechSlider; + gcn::Label *mSpeechLabel; gcn::Slider *mAlphaSlider; gcn::CheckBox *mFpsCheckBox; gcn::Slider *mFpsSlider; |