summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/setup_video.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-14 23:09:47 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-14 23:09:47 +0300
commitf191ac17ec9dc35342463202f03ee5c6f2a71ee3 (patch)
treebb6fd0d795845e825bb30411834b6507beccf45b /src/gui/widgets/tabs/setup_video.cpp
parent721c0090e666a77ce5f3f72bbbb356b8b3570d1a (diff)
downloadplus-f191ac17ec9dc35342463202f03ee5c6f2a71ee3.tar.gz
plus-f191ac17ec9dc35342463202f03ee5c6f2a71ee3.tar.bz2
plus-f191ac17ec9dc35342463202f03ee5c6f2a71ee3.tar.xz
plus-f191ac17ec9dc35342463202f03ee5c6f2a71ee3.zip
Use CREATEWIDGET macro in setup_video.
Diffstat (limited to 'src/gui/widgets/tabs/setup_video.cpp')
-rw-r--r--src/gui/widgets/tabs/setup_video.cpp36
1 files changed, 19 insertions, 17 deletions
diff --git a/src/gui/widgets/tabs/setup_video.cpp b/src/gui/widgets/tabs/setup_video.cpp
index ae587fe0e..f1171ca28 100644
--- a/src/gui/widgets/tabs/setup_video.cpp
+++ b/src/gui/widgets/tabs/setup_video.cpp
@@ -32,6 +32,7 @@
#include "gui/widgets/button.h"
#include "gui/widgets/checkbox.h"
#include "gui/widgets/containerplacer.h"
+#include "gui/widgets/createwidget.h"
#include "gui/widgets/label.h"
#include "gui/widgets/layouthelper.h"
#include "gui/widgets/listbox.h"
@@ -67,7 +68,7 @@ Setup_Video::Setup_Video(const Widget2 *const widget) :
mAltFps(config.getIntValue("altfpslimit")),
mModeListModel(new ModeListModel),
mOpenGLListModel(new OpenGLListModel),
- mModeList(new ListBox(widget, mModeListModel, "")),
+ mModeList(CREATEWIDGETR(ListBox, widget, mModeListModel, "")),
// TRANSLATORS: video settings checkbox
mFsCheckBox(new CheckBox(this, _("Full screen"), mFullScreenEnabled)),
mOpenGLDropDown(new DropDown(widget, mOpenGLListModel)),
@@ -101,8 +102,6 @@ Setup_Video::Setup_Video(const Widget2 *const widget) :
// TRANSLATORS: video settings checkbox
mNoFrameCheckBox(new CheckBox(this, _("No frame"), mNoFrame))
{
- mModeList->postInit();
-
// TRANSLATORS: video settings tab name
setName(_("Video"));
@@ -242,8 +241,9 @@ void Setup_Video::apply()
}
else
{
- // TRANSLATORS: video settings warning
- (new OkDialog(_("Switching to Full Screen"),
+ CREATEWIDGET(OkDialog,
+ // TRANSLATORS: video settings warning
+ _("Switching to Full Screen"),
// TRANSLATORS: video settings warning
_("Restart needed for changes to take effect."),
// TRANSLATORS: ok dialog button
@@ -252,7 +252,7 @@ void Setup_Video::apply()
Modal_true,
ShowCenter_true,
nullptr,
- 260))->postInit();
+ 260);
}
#endif
config.setValue("screen", fullscreen);
@@ -269,8 +269,9 @@ void Setup_Video::apply()
config.setValue("opengl", static_cast<int>(mode));
// OpenGL can currently only be changed by restarting, notify user.
- // TRANSLATORS: video settings warning
- (new OkDialog(_("Changing to OpenGL"),
+ CREATEWIDGET(OkDialog,
+ // TRANSLATORS: video settings warning
+ _("Changing to OpenGL"),
// TRANSLATORS: video settings warning
_("Applying change to OpenGL requires restart."),
// TRANSLATORS: ok dialog button
@@ -279,7 +280,7 @@ void Setup_Video::apply()
Modal_true,
ShowCenter_true,
nullptr,
- 260))->postInit();
+ 260);
}
mFps = mFpsCheckBox->isSelected() ?
@@ -355,12 +356,11 @@ void Setup_Video::action(const ActionEvent &event)
}
else
{
- mDialog = new TextDialog(
+ CREATEWIDGETV(mDialog, TextDialog,
// TRANSLATORS: resolution question dialog
_("Custom resolution (example: 1024x768)"),
// TRANSLATORS: resolution question dialog
_("Enter new resolution: "));
- mDialog->postInit();
mDialog->setActionEventId("videomode");
mDialog->addActionListener(this);
return;
@@ -385,8 +385,9 @@ void Setup_Video::action(const ActionEvent &event)
if (width < mainGraphics->mActualWidth
|| height < mainGraphics->mActualHeight)
{
- // TRANSLATORS: video settings warning
- (new OkDialog(_("Screen Resolution Changed"),
+ CREATEWIDGET(OkDialog,
+ // TRANSLATORS: video settings warning
+ _("Screen Resolution Changed"),
// TRANSLATORS: video settings warning
_("Restart your client for the change to take effect.")
+ std::string("\n") + _("Some windows may be moved to "
@@ -397,12 +398,13 @@ void Setup_Video::action(const ActionEvent &event)
Modal_true,
ShowCenter_true,
nullptr,
- 260))->postInit();
+ 260);
}
else
{
- // TRANSLATORS: video settings warning
- (new OkDialog(_("Screen Resolution Changed"),
+ CREATEWIDGET(OkDialog,
+ // TRANSLATORS: video settings warning
+ _("Screen Resolution Changed"),
// TRANSLATORS: video settings warning
_("Restart your client for the change"
" to take effect."),
@@ -412,7 +414,7 @@ void Setup_Video::action(const ActionEvent &event)
Modal_true,
ShowCenter_true,
nullptr,
- 260))->postInit();
+ 260);
}
}
#else