~damien-moore/+junk/codeblocks

« back to all changes in this revision

Viewing changes to src/plugins/contrib/byogames/byoconf.h

  • Committer: Damien Moore
  • Date: 2013-10-11 14:25:27 UTC
  • Revision ID: damienlmoore@gmail.com-20131011142527-w13ki0x8yjd7973d
copy of Code::Blocks repo based on SVN rev 9395

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BYOCONF_H
 
2
#define BYOCONF_H
 
3
 
 
4
#include <wx/intl.h>
 
5
#include "configurationpanel.h"
 
6
 
 
7
class wxCommandEvent;
 
8
class wxFlexGridSizer;
 
9
class wxStaticBoxSizer;
 
10
class wxCheckBox;
 
11
class wxSpinCtrl;
 
12
class wxStaticText;
 
13
class wxButton;
 
14
 
 
15
class byoConf: public cbConfigurationPanel
 
16
{
 
17
        public:
 
18
 
 
19
                byoConf(wxWindow* parent,wxWindowID id = -1);
 
20
                virtual ~byoConf();
 
21
 
 
22
        wxString GetTitle() const { return _("C::B games"); }
 
23
        wxString GetBitmapBaseName() const { return _T("generic-plugin"); }
 
24
        void OnApply();
 
25
        void OnCancel(){}
 
26
 
 
27
        protected:
 
28
 
 
29
                //(*Identifiers(byoConf)
 
30
                static const long ID_CHECKBOX1;
 
31
                static const long ID_SPINCTRL1;
 
32
                static const long ID_CHECKBOX2;
 
33
                static const long ID_SPINCTRL2;
 
34
                static const long ID_CHECKBOX3;
 
35
                static const long ID_SPINCTRL3;
 
36
                static const long ID_STATICTEXT1;
 
37
                static const long ID_BUTTON1;
 
38
                static const long ID_STATICTEXT2;
 
39
                static const long ID_BUTTON2;
 
40
                static const long ID_STATICTEXT3;
 
41
                static const long ID_BUTTON3;
 
42
                static const long ID_STATICTEXT4;
 
43
                static const long ID_BUTTON4;
 
44
                static const long ID_STATICTEXT5;
 
45
                static const long ID_BUTTON5;
 
46
                static const long ID_STATICTEXT6;
 
47
                static const long ID_BUTTON6;
 
48
                //*)
 
49
                //(*Handlers(byoConf)
 
50
                void BTWSRefresh(wxCommandEvent& event);
 
51
                void ColChangeClick(wxCommandEvent& event);
 
52
                //*)
 
53
                //(*Declarations(byoConf)
 
54
                wxFlexGridSizer* FlexGridSizer1;
 
55
                wxStaticBoxSizer* StaticBoxSizer1;
 
56
                wxFlexGridSizer* FlexGridSizer2;
 
57
                wxCheckBox* m_MaxPlaytimeChk;
 
58
                wxSpinCtrl* m_MaxPlaytimeSpn;
 
59
                wxCheckBox* m_MinWorkChk;
 
60
                wxSpinCtrl* m_MinWorkSpn;
 
61
                wxCheckBox* m_OverworkChk;
 
62
                wxSpinCtrl* m_OverworkSpn;
 
63
                wxStaticBoxSizer* StaticBoxSizer2;
 
64
                wxFlexGridSizer* FlexGridSizer3;
 
65
                wxStaticText* StaticText1;
 
66
                wxButton* m_Col1;
 
67
                wxStaticText* StaticText2;
 
68
                wxButton* m_Col3;
 
69
                wxStaticText* StaticText3;
 
70
                wxButton* m_Col5;
 
71
                wxStaticText* StaticText4;
 
72
                wxButton* m_Col2;
 
73
                wxStaticText* StaticText5;
 
74
                wxButton* m_Col4;
 
75
                wxStaticText* StaticText6;
 
76
                wxButton* m_Col6;
 
77
                //*)
 
78
 
 
79
        private:
 
80
 
 
81
                DECLARE_EVENT_TABLE()
 
82
};
 
83
 
 
84
#endif // BYOCONF_H