diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-20 21:28:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-21 00:02:09 +0300 |
commit | 61fe8be42f900b601a7fb757ebcb774a13aa429f (patch) | |
tree | 3604047fc714da4e9a587b4bf2383609839bd3a8 /src/gui/setup_video.h | |
parent | 88dce37e55491ec916fef8fe6cf082c88fcd0550 (diff) | |
download | plus-61fe8be42f900b601a7fb757ebcb774a13aa429f.tar.gz plus-61fe8be42f900b601a7fb757ebcb774a13aa429f.tar.bz2 plus-61fe8be42f900b601a7fb757ebcb774a13aa429f.tar.xz plus-61fe8be42f900b601a7fb757ebcb774a13aa429f.zip |
improve setup video tab.
Diffstat (limited to 'src/gui/setup_video.h')
-rw-r--r-- | src/gui/setup_video.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index 45fcd65cf..86d60987a 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -48,45 +48,37 @@ class Setup_Video final : public SetupTab, public gcn::KeyListener ~Setup_Video(); - void apply(); + void apply() override; - void cancel(); + void cancel() override; void action(const gcn::ActionEvent &event) override; - virtual void externalUpdated(); - private: bool mFullScreenEnabled; int mOpenGLEnabled; - bool mCustomCursorEnabled; int mFps; int mAltFps; - bool mEnableResize; - bool mNoFrame; - ModeListModel *mModeListModel; - OpenGLListModel *mOpenGLListModel; - ListBox *mModeList; CheckBox *mFsCheckBox; DropDown *mOpenGLDropDown; CheckBox *mCustomCursorCheckBox; - CheckBox *mEnableResizeCheckBox; CheckBox *mNoFrameCheckBox; - CheckBox *mFpsCheckBox; Slider *mFpsSlider; Label *mFpsLabel; Slider *mAltFpsSlider; Label *mAltFpsLabel; - #if !defined(ANDROID) && !defined(__APPLE__) Button *mDetectButton; #endif TextDialog *mDialog; + bool mCustomCursorEnabled; + bool mEnableResize; + bool mNoFrame; }; #endif |