summaryrefslogtreecommitdiff
path: root/src/gui/setup.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-09-12 23:00:11 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-09-12 23:00:11 +0000
commit07b3632e605488221f34bff48f298b394af7083a (patch)
tree185dba6ce8342687cc7215d24e9848e0acb771d6 /src/gui/setup.h
parent8a598e713f504c88402ff204907044c0d62c5f29 (diff)
downloadMana-07b3632e605488221f34bff48f298b394af7083a.tar.gz
Mana-07b3632e605488221f34bff48f298b394af7083a.tar.bz2
Mana-07b3632e605488221f34bff48f298b394af7083a.tar.xz
Mana-07b3632e605488221f34bff48f298b394af7083a.zip
Enabled OpenGL checkbox and added messagebox informing the user that apply this
change requires restarting the client. Also made progress of update downloads start displaying at 0%.
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r--src/gui/setup.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h
index 3fa41dd4..7e75c2b0 100644
--- a/src/gui/setup.h
+++ b/src/gui/setup.h
@@ -82,7 +82,7 @@ class Setup : public Window, public gcn::ActionListener
gcn::Label *alphaLabel;
gcn::Label *sfxLabel, *musicLabel;
gcn::CheckBox *fsCheckBox;
- gcn::CheckBox *openGlCheckBox;
+ gcn::CheckBox *openGLCheckBox;
gcn::CheckBox *soundCheckBox;
gcn::CheckBox *customCursorCheckBox;
gcn::Slider *alphaSlider;
@@ -93,9 +93,12 @@ class Setup : public Window, public gcn::ActionListener
// Variables that keeps old settings until the user "apply" them...
int musicVolume, sfxVolume;
double opacity;
- bool fullScreenEnabled, openGlEnabled, customCursorEnabled, soundEnabled;
+ bool fullScreenEnabled;
+ bool openGLEnabled;
+ bool customCursorEnabled;
+ bool soundEnabled;
- public:
+ public:
/**
* Constructor.
*/
@@ -105,7 +108,7 @@ class Setup : public Window, public gcn::ActionListener
* Destructor.
*/
~Setup();
-
+
/**
* Event handling method.
*/