~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/setup_video.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi, Andrei Karas, Patrick Matthäi
  • Date: 2013-05-27 09:14:03 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130527091403-4b1jceqok7g2v5on
Tags: 1.3.5.26-1
[ Andrei Karas ]
* Add new files to copyright file.
* Update homepage URL.

[ Patrick Matthäi ]
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include "gui/widgets/setuptab.h"
29
29
 
30
 
#include <guichan/actionlistener.hpp>
31
30
#include <guichan/keylistener.hpp>
32
31
 
33
32
class Button;
49
48
 
50
49
        ~Setup_Video();
51
50
 
52
 
        void apply();
 
51
        void apply() override;
53
52
 
54
 
        void cancel();
 
53
        void cancel() override;
55
54
 
56
55
        void action(const gcn::ActionEvent &event) override;
57
56
 
58
 
        virtual void externalUpdated();
59
 
 
60
57
    private:
61
58
        bool mFullScreenEnabled;
62
59
        int mOpenGLEnabled;
63
 
        bool mCustomCursorEnabled;
64
60
        int mFps;
65
61
        int mAltFps;
66
 
        bool mEnableResize;
67
 
        bool mNoFrame;
68
 
 
69
62
        ModeListModel *mModeListModel;
70
 
 
71
63
        OpenGLListModel *mOpenGLListModel;
72
 
 
73
64
        ListBox *mModeList;
74
65
        CheckBox *mFsCheckBox;
75
66
        DropDown *mOpenGLDropDown;
76
67
        CheckBox *mCustomCursorCheckBox;
77
 
 
78
68
        CheckBox *mEnableResizeCheckBox;
79
69
        CheckBox *mNoFrameCheckBox;
80
 
 
81
70
        CheckBox *mFpsCheckBox;
82
71
        Slider *mFpsSlider;
83
72
        Label *mFpsLabel;
84
73
        Slider *mAltFpsSlider;
85
74
        Label *mAltFpsLabel;
86
 
 
87
75
#if !defined(ANDROID) && !defined(__APPLE__)
88
76
        Button *mDetectButton;
89
77
#endif
90
78
        TextDialog *mDialog;
 
79
        bool mCustomCursorEnabled;
 
80
        bool mEnableResize;
 
81
        bool mNoFrame;
91
82
};
92
83
 
93
84
#endif