]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialogs.h | |
3 | // Purpose: Common dialogs demo | |
4 | // Author: Julian Smart | |
13188def | 5 | // Modified by: ABX (2004) - adjustementd for conditional building |
457814b5 JS |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart |
c49245f8 | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
4c8fc4d6 | 12 | /* |
08375332 | 13 | This sample shows how to use the common dialogs available from wxWidgets. |
4c8fc4d6 WS |
14 | It also shows that generic implementations of common dialogs can be exchanged |
15 | with native dialogs and can coexist in one application. The need for generic | |
16 | dialogs addition is recognized thanks to setup of below USE_*** setting. Their | |
08375332 WS |
17 | combinations reflects conditions of makefiles and project files to avoid unresolved |
18 | references during linking. For now some generic dialogs are added in static builds | |
4c8fc4d6 WS |
19 | of MSW, MAC and OS2 |
20 | */ | |
21 | ||
457814b5 JS |
22 | #ifndef __DIALOGSH__ |
23 | #define __DIALOGSH__ | |
24 | ||
da7a8602 WS |
25 | #ifdef __WXUNIVERSAL__ |
26 | #define USE_WXUNIVERSAL 1 | |
27 | #else | |
28 | #define USE_WXUNIVERSAL 0 | |
29 | #endif | |
30 | ||
f50ff87b WS |
31 | #ifdef WXUSINGDLL |
32 | #define USE_DLL 1 | |
33 | #else | |
34 | #define USE_DLL 0 | |
35 | #endif | |
36 | ||
684883e3 WS |
37 | #if defined(__WXWINCE__) |
38 | #define USE_WXWINCE 1 | |
39 | #else | |
40 | #define USE_WXWINCE 0 | |
41 | #endif | |
42 | ||
43 | #if defined(__WXMSW__) && !USE_WXWINCE | |
da7a8602 WS |
44 | #define USE_WXMSW 1 |
45 | #else | |
46 | #define USE_WXMSW 0 | |
47 | #endif | |
48 | ||
49 | #ifdef __WXMAC__ | |
50 | #define USE_WXMAC 1 | |
51 | #else | |
52 | #define USE_WXMAC 0 | |
53 | #endif | |
54 | ||
cea9c5b1 | 55 | #if defined(__WXMAC_OSX__) && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2) && USE_NATIVE_FONT_DIALOG_FOR_MACOSX |
71622a68 RN |
56 | #define USE_WXMACFONTDLG 1 |
57 | #else | |
58 | #define USE_WXMACFONTDLG 0 | |
59 | #endif | |
60 | ||
da7a8602 WS |
61 | #ifdef __WXGTK__ |
62 | #define USE_WXGTK 1 | |
63 | #else | |
64 | #define USE_WXGTK 0 | |
65 | #endif | |
66 | ||
67 | #ifdef __WXPM__ | |
68 | #define USE_WXPM 1 | |
69 | #else | |
70 | #define USE_WXPM 0 | |
71 | #endif | |
72 | ||
29e3d1f9 | 73 | #define USE_GENERIC_DIALOGS (!USE_WXUNIVERSAL && !USE_DLL) |
13188def | 74 | |
29e3d1f9 VZ |
75 | #define USE_COLOURDLG_GENERIC \ |
76 | ((USE_WXMSW || USE_WXMAC) && USE_GENERIC_DIALOGS && wxUSE_COLOURDLG) | |
77 | #define USE_DIRDLG_GENERIC \ | |
78 | ((USE_WXMSW || USE_WXMAC) && USE_GENERIC_DIALOGS && wxUSE_DIRDLG) | |
79 | #define USE_FILEDLG_GENERIC \ | |
684883e3 | 80 | ((((USE_WXMSW || USE_WXMAC || USE_WXPM) && USE_GENERIC_DIALOGS) || USE_WXWINCE) && wxUSE_FILEDLG) |
29e3d1f9 | 81 | #define USE_FONTDLG_GENERIC \ |
684883e3 | 82 | ((USE_WXMSW || USE_WXMACFONTDLG || USE_WXPM) && USE_GENERIC_DIALOGS && wxUSE_FONTDLG) |
4c8fc4d6 | 83 | |
08375332 WS |
84 | // Turn USE_MODAL_PRESENTATION to 0 if there is any reason for not presenting difference |
85 | // between modal and modeless dialogs (ie. not implemented it in your port yet) | |
532d575b | 86 | #if defined(__SMARTPHONE__) || !wxUSE_BOOKCTRL |
08375332 WS |
87 | #define USE_MODAL_PRESENTATION 0 |
88 | #else | |
89 | #define USE_MODAL_PRESENTATION 1 | |
90 | #endif | |
4c8fc4d6 | 91 | |
13188def | 92 | |
532d575b WS |
93 | // Turn USE_SETTINGS_DIALOG to 0 if supported |
94 | #if wxUSE_BOOKCTRL | |
95 | #define USE_SETTINGS_DIALOG 1 | |
96 | #else | |
97 | #define USE_SETTINGS_DIALOG 0 | |
98 | #endif | |
99 | ||
100 | ||
457814b5 JS |
101 | // Define a new application type |
102 | class MyApp: public wxApp | |
c49245f8 VZ |
103 | { |
104 | public: | |
105 | bool OnInit(); | |
457814b5 JS |
106 | |
107 | wxFont m_canvasFont; | |
108 | wxColour m_canvasTextColour; | |
109 | }; | |
110 | ||
b4954d19 WS |
111 | #if USE_MODAL_PRESENTATION |
112 | ||
f6bcfd97 | 113 | // A custom modeless dialog |
4c45f240 VZ |
114 | class MyModelessDialog : public wxDialog |
115 | { | |
116 | public: | |
117 | MyModelessDialog(wxWindow *parent); | |
abceee76 | 118 | |
5d987909 | 119 | void OnButton(wxCommandEvent& event); |
abceee76 VZ |
120 | void OnClose(wxCloseEvent& event); |
121 | ||
122 | private: | |
123 | DECLARE_EVENT_TABLE() | |
4c45f240 VZ |
124 | }; |
125 | ||
f6bcfd97 BP |
126 | // A custom modal dialog |
127 | class MyModalDialog : public wxDialog | |
128 | { | |
129 | public: | |
130 | MyModalDialog(wxWindow *parent); | |
131 | ||
132 | void OnButton(wxCommandEvent& event); | |
133 | ||
134 | private: | |
5315ebfa VZ |
135 | wxButton *m_btnModal, |
136 | *m_btnModeless, | |
137 | *m_btnDelete; | |
f6bcfd97 BP |
138 | |
139 | DECLARE_EVENT_TABLE() | |
140 | }; | |
141 | ||
b4954d19 WS |
142 | #endif // USE_MODAL_PRESENTATION |
143 | ||
8e1dac82 VZ |
144 | class StdButtonSizerDialog : public wxDialog |
145 | { | |
146 | public: | |
147 | StdButtonSizerDialog(wxWindow *parent); | |
148 | ||
149 | void OnEvent(wxCommandEvent& event); | |
150 | ||
151 | private: | |
152 | void EnableDisableControls(); | |
153 | ||
154 | wxCheckBox *m_chkboxAffirmativeButton; | |
155 | wxRadioButton *m_radiobtnOk, | |
156 | *m_radiobtnYes; | |
157 | ||
158 | wxCheckBox *m_chkboxDismissButton; | |
159 | wxRadioButton *m_radiobtnClose, | |
160 | *m_radiobtnCancel; | |
161 | ||
162 | wxCheckBox *m_chkboxApply, | |
163 | *m_chkboxNo, | |
164 | *m_chkboxHelp, | |
165 | *m_chkboxNoDefault; | |
166 | ||
167 | wxSizer *m_buttonsSizer; | |
168 | ||
169 | DECLARE_EVENT_TABLE() | |
170 | }; | |
171 | ||
532d575b | 172 | #if USE_SETTINGS_DIALOG |
0f5d8ecf JS |
173 | // Property sheet dialog |
174 | class SettingsDialog: public wxPropertySheetDialog | |
175 | { | |
176 | DECLARE_CLASS(SettingsDialog) | |
177 | public: | |
64d3ed17 | 178 | SettingsDialog(wxWindow* parent, int dialogType); |
cc8bc5aa | 179 | ~SettingsDialog(); |
0f5d8ecf JS |
180 | |
181 | wxPanel* CreateGeneralSettingsPage(wxWindow* parent); | |
182 | wxPanel* CreateAestheticSettingsPage(wxWindow* parent); | |
183 | ||
184 | protected: | |
185 | ||
186 | enum { | |
187 | ID_SHOW_TOOLTIPS = 100, | |
188 | ID_AUTO_SAVE, | |
189 | ID_AUTO_SAVE_MINS, | |
190 | ID_LOAD_LAST_PROJECT, | |
191 | ||
192 | ID_APPLY_SETTINGS_TO, | |
193 | ID_BACKGROUND_STYLE, | |
194 | ID_FONT_SIZE | |
195 | }; | |
196 | ||
cc8bc5aa JS |
197 | wxImageList* m_imageList; |
198 | ||
0f5d8ecf JS |
199 | DECLARE_EVENT_TABLE() |
200 | }; | |
201 | ||
532d575b WS |
202 | #endif // USE_SETTINGS_DIALOG |
203 | ||
457814b5 JS |
204 | // Define a new frame type |
205 | class MyFrame: public wxFrame | |
c49245f8 VZ |
206 | { |
207 | public: | |
13188def | 208 | MyFrame(wxWindow *parent, const wxString& title); |
e36a1739 | 209 | virtual ~MyFrame(); |
13188def | 210 | |
8cf304f8 | 211 | #if wxUSE_MSGDLG |
13188def | 212 | void MessageBox(wxCommandEvent& event); |
8cf304f8 VZ |
213 | void MessageBoxInfo(wxCommandEvent& event); |
214 | #endif // wxUSE_MSGDLG | |
457814b5 | 215 | |
13188def | 216 | #if wxUSE_COLOURDLG |
329e86bf | 217 | void ChooseColour(wxCommandEvent& event); |
e6ef9ea4 | 218 | void GetColour(wxCommandEvent& event); |
13188def WS |
219 | #endif // wxUSE_COLOURDLG |
220 | ||
221 | #if wxUSE_FONTDLG | |
329e86bf | 222 | void ChooseFont(wxCommandEvent& event); |
13188def WS |
223 | #endif // wxUSE_FONTDLG |
224 | ||
225 | #if wxUSE_LOG_DIALOG | |
d93c719a | 226 | void LogDialog(wxCommandEvent& event); |
13188def WS |
227 | #endif // wxUSE_LOG_DIALOG |
228 | ||
229 | #if wxUSE_CHOICEDLG | |
457814b5 | 230 | void SingleChoice(wxCommandEvent& event); |
d6c9c1b7 | 231 | void MultiChoice(wxCommandEvent& event); |
13188def WS |
232 | #endif // wxUSE_CHOICEDLG |
233 | ||
234 | #if wxUSE_TEXTDLG | |
457814b5 | 235 | void TextEntry(wxCommandEvent& event); |
a294c6d5 | 236 | void PasswordEntry(wxCommandEvent& event); |
13188def WS |
237 | #endif // wxUSE_TEXTDLG |
238 | ||
239 | #if wxUSE_NUMBERDLG | |
c49245f8 | 240 | void NumericEntry(wxCommandEvent& event); |
13188def WS |
241 | #endif // wxUSE_NUMBERDLG |
242 | ||
243 | #if wxUSE_FILEDLG | |
457814b5 | 244 | void FileOpen(wxCommandEvent& event); |
35b45b33 | 245 | void FileOpen2(wxCommandEvent& event); |
c61f4f6d | 246 | void FilesOpen(wxCommandEvent& event); |
457814b5 | 247 | void FileSave(wxCommandEvent& event); |
13188def WS |
248 | #endif // wxUSE_FILEDLG |
249 | ||
695fe764 WS |
250 | #if USE_FILEDLG_GENERIC |
251 | void FileOpenGeneric(wxCommandEvent& event); | |
252 | void FilesOpenGeneric(wxCommandEvent& event); | |
253 | void FileSaveGeneric(wxCommandEvent& event); | |
254 | #endif // USE_FILEDLG_GENERIC | |
255 | ||
13188def | 256 | #if wxUSE_DIRDLG |
457814b5 | 257 | void DirChoose(wxCommandEvent& event); |
f09c8393 | 258 | void DirChooseNew(wxCommandEvent& event); |
13188def WS |
259 | #endif // wxUSE_DIRDLG |
260 | ||
261 | #if USE_DIRDLG_GENERIC | |
51a58d8b | 262 | void GenericDirChoose(wxCommandEvent& event); |
13188def WS |
263 | #endif // USE_DIRDLG_GENERIC |
264 | ||
265 | #if wxUSE_STARTUP_TIPS | |
c50f1fb9 | 266 | void ShowTip(wxCommandEvent& event); |
13188def WS |
267 | #endif // wxUSE_STARTUP_TIPS |
268 | ||
269 | #if USE_MODAL_PRESENTATION | |
f6bcfd97 | 270 | void ModalDlg(wxCommandEvent& event); |
1baa0a9d | 271 | #endif // USE_MODAL_PRESENTATION |
4c45f240 | 272 | void ModelessDlg(wxCommandEvent& event); |
cae50e6b VZ |
273 | void DlgCenteredScreen(wxCommandEvent& event); |
274 | void DlgCenteredParent(wxCommandEvent& event); | |
1baa0a9d | 275 | void MiniFrame(wxCommandEvent& event); |
8e5dbcdd | 276 | void DlgOnTop(wxCommandEvent& event); |
13188def | 277 | |
761989ff | 278 | #if wxUSE_PROGRESSDLG |
abceee76 | 279 | void ShowProgress(wxCommandEvent& event); |
761989ff | 280 | #endif // wxUSE_PROGRESSDLG |
13188def | 281 | |
ca7adbf8 VZ |
282 | #if wxUSE_ABOUTDLG |
283 | void ShowSimpleAboutDialog(wxCommandEvent& event); | |
284 | void ShowFancyAboutDialog(wxCommandEvent& event); | |
453c9e3b VZ |
285 | void ShowFullAboutDialog(wxCommandEvent& event); |
286 | void ShowCustomAboutDialog(wxCommandEvent& event); | |
ca7adbf8 VZ |
287 | #endif // wxUSE_ABOUTDLG |
288 | ||
a62b0bcc VZ |
289 | #if wxUSE_BUSYINFO |
290 | void ShowBusyInfo(wxCommandEvent& event); | |
291 | #endif // wxUSE_BUSYINFO | |
13188def | 292 | |
761989ff VZ |
293 | #if wxUSE_FINDREPLDLG |
294 | void ShowFindDialog(wxCommandEvent& event); | |
295 | void ShowReplaceDialog(wxCommandEvent& event); | |
761989ff VZ |
296 | void OnFindDialog(wxFindDialogEvent& event); |
297 | #endif // wxUSE_FINDREPLDLG | |
457814b5 | 298 | |
13188def | 299 | #if USE_COLOURDLG_GENERIC |
329e86bf | 300 | void ChooseColourGeneric(wxCommandEvent& event); |
13188def WS |
301 | #endif // USE_COLOURDLG_GENERIC |
302 | ||
303 | #if USE_FONTDLG_GENERIC | |
329e86bf | 304 | void ChooseFontGeneric(wxCommandEvent& event); |
13188def | 305 | #endif // USE_FONTDLG_GENERIC |
c49245f8 | 306 | |
0f5d8ecf | 307 | void OnPropertySheet(wxCommandEvent& event); |
e36a1739 | 308 | |
29e3d1f9 | 309 | void OnRequestUserAttention(wxCommandEvent& event); |
e36a1739 VZ |
310 | #if wxUSE_NOTIFICATION_MESSAGE |
311 | void OnNotifMsgAuto(wxCommandEvent& event); | |
312 | void OnNotifMsgShow(wxCommandEvent& event); | |
313 | void OnNotifMsgHide(wxCommandEvent& event); | |
314 | #endif // wxUSE_NOTIFICATION_MESSAGE | |
315 | ||
8e1dac82 | 316 | void OnStandardButtonsSizerDialog(wxCommandEvent& event); |
329e86bf | 317 | void OnExit(wxCommandEvent& event); |
c49245f8 | 318 | |
4c45f240 | 319 | private: |
13188def | 320 | #if wxUSE_DIRDLG |
f09c8393 | 321 | void DoDirChoose(int style); |
13188def | 322 | #endif // wxUSE_DIRDLG |
f09c8393 | 323 | |
13188def | 324 | #if USE_MODAL_PRESENTATION |
4c45f240 | 325 | MyModelessDialog *m_dialog; |
13188def | 326 | #endif // USE_MODAL_PRESENTATION |
4c45f240 | 327 | |
761989ff VZ |
328 | #if wxUSE_FINDREPLDLG |
329 | wxFindReplaceData m_findData; | |
14fca738 VZ |
330 | |
331 | wxFindReplaceDialog *m_dlgFind, | |
332 | *m_dlgReplace; | |
761989ff VZ |
333 | #endif // wxUSE_FINDREPLDLG |
334 | ||
e36a1739 VZ |
335 | #if wxUSE_NOTIFICATION_MESSAGE |
336 | wxNotificationMessage *m_notifMsg; | |
337 | #endif // wxUSE_NOTIFICATION_MESSAGE | |
338 | ||
d33dd9ef VS |
339 | wxColourData m_clrData; |
340 | ||
4c45f240 | 341 | DECLARE_EVENT_TABLE() |
457814b5 JS |
342 | }; |
343 | ||
344 | class MyCanvas: public wxScrolledWindow | |
345 | { | |
c49245f8 | 346 | public: |
08375332 | 347 | MyCanvas(wxWindow *parent) : |
13188def | 348 | wxScrolledWindow(parent,wxID_ANY,wxDefaultPosition,wxDefaultSize,wxNO_FULL_REPAINT_ON_RESIZE) { } |
c49245f8 VZ |
349 | |
350 | void OnPaint(wxPaintEvent& event); | |
351 | ||
352 | DECLARE_EVENT_TABLE() | |
457814b5 JS |
353 | }; |
354 | ||
355 | ||
356 | // Menu IDs | |
a294c6d5 VZ |
357 | enum |
358 | { | |
13188def | 359 | DIALOGS_CHOOSE_COLOUR = wxID_HIGHEST, |
e6ef9ea4 | 360 | DIALOGS_GET_COLOUR, |
a294c6d5 VZ |
361 | DIALOGS_CHOOSE_COLOUR_GENERIC, |
362 | DIALOGS_CHOOSE_FONT, | |
363 | DIALOGS_CHOOSE_FONT_GENERIC, | |
364 | DIALOGS_MESSAGE_BOX, | |
8cf304f8 | 365 | DIALOGS_MESSAGE_BOX_WXINFO, |
a294c6d5 | 366 | DIALOGS_SINGLE_CHOICE, |
d6c9c1b7 | 367 | DIALOGS_MULTI_CHOICE, |
a294c6d5 VZ |
368 | DIALOGS_TEXT_ENTRY, |
369 | DIALOGS_PASSWORD_ENTRY, | |
370 | DIALOGS_FILE_OPEN, | |
35b45b33 | 371 | DIALOGS_FILE_OPEN2, |
a294c6d5 VZ |
372 | DIALOGS_FILES_OPEN, |
373 | DIALOGS_FILE_SAVE, | |
695fe764 WS |
374 | DIALOGS_FILE_OPEN_GENERIC, |
375 | DIALOGS_FILES_OPEN_GENERIC, | |
376 | DIALOGS_FILE_SAVE_GENERIC, | |
a294c6d5 | 377 | DIALOGS_DIR_CHOOSE, |
f09c8393 | 378 | DIALOGS_DIRNEW_CHOOSE, |
51a58d8b | 379 | DIALOGS_GENERIC_DIR_CHOOSE, |
a294c6d5 VZ |
380 | DIALOGS_TIP, |
381 | DIALOGS_NUM_ENTRY, | |
4c45f240 | 382 | DIALOGS_LOG_DIALOG, |
f6bcfd97 | 383 | DIALOGS_MODAL, |
4c45f240 | 384 | DIALOGS_MODELESS, |
cae50e6b VZ |
385 | DIALOGS_CENTRE_SCREEN, |
386 | DIALOGS_CENTRE_PARENT, | |
1baa0a9d | 387 | DIALOGS_MINIFRAME, |
8e5dbcdd | 388 | DIALOGS_ONTOP, |
abceee76 | 389 | DIALOGS_MODELESS_BTN, |
761989ff | 390 | DIALOGS_PROGRESS, |
ca7adbf8 VZ |
391 | DIALOGS_ABOUTDLG_SIMPLE, |
392 | DIALOGS_ABOUTDLG_FANCY, | |
453c9e3b VZ |
393 | DIALOGS_ABOUTDLG_FULL, |
394 | DIALOGS_ABOUTDLG_CUSTOM, | |
a62b0bcc | 395 | DIALOGS_BUSYINFO, |
761989ff | 396 | DIALOGS_FIND, |
29e3d1f9 | 397 | DIALOGS_REPLACE, |
0f5d8ecf | 398 | DIALOGS_REQUEST, |
e36a1739 VZ |
399 | DIALOGS_NOTIFY_AUTO, |
400 | DIALOGS_NOTIFY_SHOW, | |
401 | DIALOGS_NOTIFY_HIDE, | |
cc8bc5aa | 402 | DIALOGS_PROPERTY_SHEET, |
64d3ed17 | 403 | DIALOGS_PROPERTY_SHEET_TOOLBOOK, |
8e1dac82 VZ |
404 | DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK, |
405 | DIALOGS_STANDARD_BUTTON_SIZER_DIALOG | |
a294c6d5 | 406 | }; |
457814b5 JS |
407 | |
408 | #endif | |
409 |