summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-10-22 14:01:34 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-10-22 14:01:34 +0200
commitb10fdfddb20f66d2b0c572d91b6b6ec54ae02802 (patch)
tree89e0336791edcf474d4f47da280e72318c461957
parentdbac793645654ac6715e6adecfd9d4a4a1fd8551 (diff)
downloadmana-client-b10fdfddb20f66d2b0c572d91b6b6ec54ae02802.tar.gz
mana-client-b10fdfddb20f66d2b0c572d91b6b6ec54ae02802.tar.bz2
mana-client-b10fdfddb20f66d2b0c572d91b6b6ec54ae02802.tar.xz
mana-client-b10fdfddb20f66d2b0c572d91b6b6ec54ae02802.zip
Changed 'Low CPU' options and related gui widgets name to 'Disable transparency'.
That name is more explicit about what it actually does. Reviewed-by: CodyMartin.
-rw-r--r--src/client.cpp4
-rw-r--r--src/gui/setup_video.cpp60
-rw-r--r--src/gui/setup_video.h4
3 files changed, 36 insertions, 32 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 3ed3fb34..110420d5 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -320,7 +320,7 @@ Client::Client(const Options &options):
bool useOpenGL = !mOptions.noOpenGL && (config.getValue("opengl", 0) == 1);
// Set up the transparency option for low CPU when not using OpenGL.
- if (!useOpenGL && (config.getValue("lowcpu", 0) == 1))
+ if (!useOpenGL && (config.getValue("disableTransparency", 0) == 1))
Image::SDLdisableTransparency();
#ifdef USE_OPENGL
@@ -1166,7 +1166,7 @@ void Client::initConfiguration()
config.setValue("customcursor", true);
config.setValue("useScreenshotDirectorySuffix", true);
config.setValue("ChatLogLength", 128);
- config.setValue("lowcpu", true);
+ config.setValue("disableTransparency", false);
// Checking if the configuration file exists... otherwise create it with
// default options.
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index fd7022c0..1a5e17b6 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -211,7 +211,7 @@ Setup_Video::Setup_Video():
mPickupParticleEnabled(config.getValue("showpickupparticle", false)),
mOpacity(config.getValue("guialpha", 0.8)),
mFps((int) config.getValue("fpslimit", 60)),
- mLowCPUEnabled(config.getValue("lowcpu", true)),
+ mSDLTransparencyDisabled(config.getValue("disableTransparency", true)),
mSpeechMode(static_cast<Being::Speech>(
config.getValue("speech", Being::TEXT_OVERHEAD))),
mModeListModel(new ModeListModel),
@@ -245,8 +245,9 @@ Setup_Video::Setup_Video():
mParticleDetailSlider(new Slider(0, 3)),
mParticleDetailField(new Label),
mFontSize((int) config.getValue("fontSize", 11)),
- mLowCPUCheckBox(new CheckBox(_("Disable transparency (Low CPU mode)"),
- mLowCPUEnabled))
+ mDisableSDLTransparencyCheckBox(
+ new CheckBox(_("Disable transparency (Low CPU mode)"),
+ mSDLTransparencyDisabled))
{
setName(_("Video"));
@@ -273,7 +274,7 @@ Setup_Video::Setup_Video():
mAlphaSlider->setValue(mOpacity);
mAlphaSlider->setWidth(90);
- mAlphaSlider->setEnabled(!mLowCPUEnabled);
+ mAlphaSlider->setEnabled(!mSDLTransparencyDisabled);
mFpsLabel->setCaption(mFps > 0 ? toString(mFps) : _("None"));
mFpsLabel->setWidth(60);
@@ -282,8 +283,8 @@ Setup_Video::Setup_Video():
mFpsCheckBox->setSelected(mFps > 0);
// If the openGL Mode is enabled, disabling the transaprency
- // is irrelelvant.
- mLowCPUCheckBox->setEnabled(!mOpenGLEnabled);
+ // is irrelevant.
+ mDisableSDLTransparencyCheckBox->setEnabled(!mOpenGLEnabled);
// Pre-select the current video mode.
std::string videoMode = toString(graphics->getWidth()) + "x"
@@ -308,7 +309,7 @@ Setup_Video::Setup_Video():
mOpenGLCheckBox->setActionEventId("opengl");
mParticleDetailSlider->setActionEventId("particledetailslider");
mParticleDetailField->setActionEventId("particledetailfield");
- mLowCPUCheckBox->setActionEventId("lowcpu");
+ mDisableSDLTransparencyCheckBox->setActionEventId("disableTransparency");
mModeList->addActionListener(this);
mCustomCursorCheckBox->addActionListener(this);
@@ -328,7 +329,7 @@ Setup_Video::Setup_Video():
mOverlayDetailField->addKeyListener(this);
mParticleDetailSlider->addActionListener(this);
mParticleDetailField->addKeyListener(this);
- mLowCPUCheckBox->addActionListener(this);
+ mDisableSDLTransparencyCheckBox->addActionListener(this);
mSpeechLabel->setCaption(speechModeToString(mSpeechMode));
mSpeechSlider->setValue(mSpeechMode);
@@ -386,7 +387,7 @@ Setup_Video::Setup_Video():
place(1, 11, particleDetailLabel);
place(2, 11, mParticleDetailField, 3).setPadding(2);
- place(0, 12, mLowCPUCheckBox, 4);
+ place(0, 12, mDisableSDLTransparencyCheckBox, 4);
setDimension(gcn::Rectangle(0, 0, 365, 300));
}
@@ -469,23 +470,24 @@ void Setup_Video::apply()
}
}
// If LowCPU is enabled from a disabled state we warn the user
- else if (mLowCPUCheckBox->isSelected())
+ else if (mDisableSDLTransparencyCheckBox->isSelected())
{
- if (config.getValue("lowcpu", true) == false)
+ if (config.getValue("disableTransparency", true) == false)
{
- new OkDialog(_("Low CPU Mode Enabled"),
- _("You must restart to prevent graphical errors."));
+ new OkDialog(_("Transparency disabled"),
+ _("You must restart to apply changes."));
}
}
else
{
- if (config.getValue("lowcpu", true) == true)
+ if (config.getValue("disableTransparency", true) == true)
{
- new OkDialog(_("Low CPU Mode Disabled"),
+ new OkDialog(_("Transparency enabled"),
_("You must restart to apply changes."));
}
}
- config.setValue("lowcpu", mLowCPUCheckBox->isSelected());
+ config.setValue("disableTransparency",
+ mDisableSDLTransparencyCheckBox->isSelected());
mFps = mFpsCheckBox->isSelected() ? (int) mFpsSlider->getValue() : 0;
mFpsSlider->setEnabled(mFps > 0);
@@ -509,7 +511,7 @@ void Setup_Video::apply()
mOpenGLEnabled = config.getValue("opengl", false);
mPickupChatEnabled = config.getValue("showpickupchat", true);
mPickupParticleEnabled = config.getValue("showpickupparticle", false);
- mLowCPUEnabled = config.getValue("lowcpu", true);
+ mSDLTransparencyDisabled = config.getValue("disableTransparency", true);
}
void Setup_Video::cancel()
@@ -527,13 +529,13 @@ void Setup_Video::cancel()
mNameCheckBox->setSelected(mNameEnabled);
mNPCLogCheckBox->setSelected(mNPCLogEnabled);
mAlphaSlider->setValue(mOpacity);
- mAlphaSlider->setEnabled(!mLowCPUEnabled);
+ mAlphaSlider->setEnabled(!mSDLTransparencyDisabled);
mOverlayDetailSlider->setValue(mOverlayDetail);
mParticleDetailSlider->setValue(mParticleDetail);
std::string text = mFpsCheckBox->isSelected() ? toString(mFps) : _("None");
mFpsLabel->setCaption(text);
- mLowCPUCheckBox->setSelected(mLowCPUEnabled);
- mLowCPUCheckBox->setEnabled(!mOpenGLEnabled);
+ mDisableSDLTransparencyCheckBox->setSelected(mSDLTransparencyDisabled);
+ mDisableSDLTransparencyCheckBox->setEnabled(!mOpenGLEnabled);
config.setValue("screen", mFullScreenEnabled);
@@ -557,7 +559,7 @@ void Setup_Video::cancel()
config.setValue("opengl", mOpenGLEnabled);
config.setValue("showpickupchat", mPickupChatEnabled);
config.setValue("showpickupparticle", mPickupParticleEnabled);
- config.setValue("lowcpu", mLowCPUEnabled);
+ config.setValue("disableTransparency", mSDLTransparencyDisabled);
}
void Setup_Video::action(const gcn::ActionEvent &event)
@@ -666,21 +668,23 @@ void Setup_Video::action(const gcn::ActionEvent &event)
mFpsSlider->setValue(mFps);
mFpsSlider->setEnabled(mFps > 0);
}
- else if (id == "opengl" || id == "lowcpu")
+ else if (id == "opengl" || id == "disableTransparency")
{
- // Disable low cpu mode when in OpenGL.
+ // Disable transparency disabling when in OpenGL.
if (mOpenGLCheckBox->isSelected())
{
- mLowCPUCheckBox->setSelected(false);
- mLowCPUCheckBox->setEnabled(false);
+ mDisableSDLTransparencyCheckBox->setSelected(false);
+ mDisableSDLTransparencyCheckBox->setEnabled(false);
}
else
{
- mLowCPUCheckBox->setEnabled(true);
+ mDisableSDLTransparencyCheckBox->setEnabled(true);
}
+
// Disable gui opacity slider when disabling transparency.
- if (mLowCPUCheckBox->isEnabled())
- mAlphaSlider->setEnabled(!mLowCPUCheckBox->isSelected());
+ if (mDisableSDLTransparencyCheckBox->isEnabled())
+ mAlphaSlider->setEnabled(
+ !mDisableSDLTransparencyCheckBox->isSelected());
else
mAlphaSlider->setEnabled(true);
}
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h
index 0f8a1e70..d0e2c492 100644
--- a/src/gui/setup_video.h
+++ b/src/gui/setup_video.h
@@ -62,7 +62,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener,
bool mPickupParticleEnabled;
double mOpacity;
int mFps;
- bool mLowCPUEnabled;
+ bool mSDLTransparencyDisabled;
Being::Speech mSpeechMode;
ModeListModel *mModeListModel;
@@ -108,7 +108,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener,
int mFontSize;
gcn::DropDown *mFontSizeDropDown;
- gcn::CheckBox *mLowCPUCheckBox;
+ gcn::CheckBox *mDisableSDLTransparencyCheckBox;
};
#endif