]>
git.saurik.com Git - wxWidgets.git/blob - utils/configtool/src/settingsdialog.h
2efcd63667e5670c33ddde4a990a847048a645f0
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: settingsdialog.h
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _SETTINGSDIALOG_H_
13 #define _SETTINGSDIALOG_H_
23 * Forward declarations
26 ////@begin forward declarations
27 class ctGeneralSettingsDialog
;
28 class ctLocationSettingsDialog
;
29 ////@end forward declarations
35 ////@begin control identifiers
36 #define ID_SETTINGS_DIALOG 10000
37 #define ID_NOTEBOOK 10001
38 #define ID_GENERAL_SETTINGS_DIALOG 10005
39 #define ID_LOAD_LAST_DOCUMENT 10006
40 #define ID_SHOW_TOOLTIPS 10007
41 #define ID_LOCATION_SETTINGS_DIALOG 10008
42 #define ID_WXWIN_HIERARCHY 10010
43 #define ID_CHOOSE_WXWIN_HIERARCHY 10011
44 #define ID_USE_WXWIN 10012
45 ////@end control identifiers
48 * ctSettingsDialog class declaration
51 class ctSettingsDialog
: public wxDialog
55 ctSettingsDialog( wxWindow
* parent
, wxWindowID id
= -1,
56 const wxString
& caption
= _("Configuration Settings"),
57 const wxPoint
& pos
= wxDefaultPosition
,
58 const wxSize
& size
= wxDefaultSize
,
59 long style
= wxCAPTION
|wxSYSTEM_MENU
);
61 /// Creates the controls and sizers
62 void CreateControls();
64 ////@begin ctSettingsDialog event handler declarations
66 /// Event handler for wxID_OK
67 void OnOk( wxCommandEvent
& event
);
69 /// Event handler for wxID_CANCEL
70 void OnCancel( wxCommandEvent
& event
);
72 /// Event handler for wxID_HELP
73 void OnHelp( wxCommandEvent
& event
);
75 ////@end ctSettingsDialog event handler declarations
77 ////@begin ctSettingsDialog member function declarations
79 ////@end ctSettingsDialog member function declarations
81 /// Should we show tooltips?
82 static bool ShowToolTips();
84 DECLARE_CLASS( ctSettingsDialog
)
89 * ctGeneralSettingsDialog class declaration
92 class ctGeneralSettingsDialog
: public wxPanel
96 ctGeneralSettingsDialog( wxWindow
* parent
, wxWindowID id
= -1, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
, long style
= wxNO_BORDER
|wxTAB_TRAVERSAL
);
98 /// Creates the controls and sizers
99 void CreateControls();
101 ////@begin ctGeneralSettingsDialog event handler declarations
103 ////@end ctGeneralSettingsDialog event handler declarations
105 ////@begin ctGeneralSettingsDialog member function declarations
107 ////@end ctGeneralSettingsDialog member function declarations
109 /// Should we show tooltips?
110 static bool ShowToolTips();
112 DECLARE_CLASS( ctGeneralSettingsDialog
)
113 DECLARE_EVENT_TABLE()
117 * ctLocationSettingsDialog class declaration
120 class ctLocationSettingsDialog
: public wxPanel
124 ctLocationSettingsDialog( wxWindow
* parent
, wxWindowID id
= -1, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
, long style
= wxNO_BORDER
|wxTAB_TRAVERSAL
);
126 /// Creates the controls and sizers
127 void CreateControls();
129 ////@begin ctLocationSettingsDialog event handler declarations
131 /// Update event handler for ID_WXWIN_HIERARCHY
132 void OnUpdateWxwinHierarchy( wxUpdateUIEvent
& event
);
134 /// Event handler for ID_CHOOSE_WXWIN_HIERARCHY
135 void OnChooseWxwinHierarchy( wxCommandEvent
& event
);
137 /// Update event handler for ID_CHOOSE_WXWIN_HIERARCHY
138 void OnUpdateChooseWxwinHierarchy( wxUpdateUIEvent
& event
);
140 ////@end ctLocationSettingsDialog event handler declarations
142 ////@begin ctLocationSettingsDialog member function declarations
144 ////@end ctLocationSettingsDialog member function declarations
146 /// Should we show tooltips?
147 static bool ShowToolTips();
149 DECLARE_CLASS( ctLocationSettingsDialog
)
150 DECLARE_EVENT_TABLE()
154 // _SETTINGSDIALOG_H_