1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Common dialogs demo
4 // Author: Julian Smart
5 // Modified by: ABX (2004) - adjustements for conditional building + new menu
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #include "../sample.xpm"
25 #include "wx/apptrait.h"
26 #include "wx/datetime.h"
28 #include "wx/bookctrl.h"
29 #include "wx/artprov.h"
30 #include "wx/imaglist.h"
31 #include "wx/minifram.h"
32 #include "wx/sysopt.h"
33 #include "wx/notifmsg.h"
36 #include "wx/colordlg.h"
37 #endif // wxUSE_COLOURDLG
40 #include "wx/choicdlg.h"
41 #endif // wxUSE_CHOICEDLG
43 #if wxUSE_STARTUP_TIPS
44 #include "wx/tipdlg.h"
45 #endif // wxUSE_STARTUP_TIPS
48 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
49 #include "wx/datetime.h" // wxDateTime
52 #include "wx/progdlg.h"
53 #endif // wxUSE_PROGRESSDLG
56 #include "wx/aboutdlg.h"
58 // these headers are only needed for custom about dialog
59 #include "wx/statline.h"
60 #include "wx/generic/aboutdlgg.h"
61 #endif // wxUSE_ABOUTDLG
64 #include "wx/busyinfo.h"
65 #endif // wxUSE_BUSYINFO
68 #include "wx/numdlg.h"
69 #endif // wxUSE_NUMBERDLG
72 #include "wx/filedlg.h"
73 #endif // wxUSE_FILEDLG
76 #include "wx/dirdlg.h"
77 #endif // wxUSE_DIRDLG
80 #include "wx/fontdlg.h"
81 #endif // wxUSE_FONTDLG
84 #include "wx/fdrepdlg.h"
85 #endif // wxUSE_FINDREPLDLG
87 #include "wx/spinctrl.h"
88 #include "wx/propdlg.h"
92 #if USE_COLOURDLG_GENERIC
93 #include "wx/generic/colrdlgg.h"
94 #endif // USE_COLOURDLG_GENERIC
96 #if USE_DIRDLG_GENERIC
97 #include "wx/generic/dirdlgg.h"
98 #endif // USE_DIRDLG_GENERIC
100 #if USE_FILEDLG_GENERIC
101 #include "wx/generic/filedlgg.h"
102 #endif // USE_FILEDLG_GENERIC
104 #if USE_FONTDLG_GENERIC
105 #include "wx/generic/fontdlgg.h"
106 #endif // USE_FONTDLG_GENERIC
110 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
111 EVT_PAINT(MyCanvas::OnPaint
)
116 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
118 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
119 EVT_MENU(DIALOGS_MESSAGE_DIALOG
, MyFrame::MessageBoxDialog
)
120 EVT_MENU(DIALOGS_MESSAGE_BOX_WXINFO
, MyFrame::MessageBoxInfo
)
121 #endif // wxUSE_MSGDLG
123 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
124 EVT_MENU(DIALOGS_GET_COLOUR
, MyFrame::GetColour
)
125 #endif // wxUSE_COLOURDLG
128 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
129 #endif // wxUSE_FONTDLG
132 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
133 #endif // wxUSE_LOG_DIALOG
136 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
137 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
138 #endif // wxUSE_TEXTDLG
141 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
142 #endif // wxUSE_NUMBERDLG
145 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
146 EVT_MENU(DIALOGS_MULTI_CHOICE
, MyFrame::MultiChoice
)
147 #endif // wxUSE_CHOICEDLG
150 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
151 EVT_MENU(DIALOGS_FILE_OPEN2
, MyFrame::FileOpen2
)
152 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
153 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
154 #endif // wxUSE_FILEDLG
156 #if USE_FILEDLG_GENERIC
157 EVT_MENU(DIALOGS_FILE_OPEN_GENERIC
, MyFrame::FileOpenGeneric
)
158 EVT_MENU(DIALOGS_FILES_OPEN_GENERIC
, MyFrame::FilesOpenGeneric
)
159 EVT_MENU(DIALOGS_FILE_SAVE_GENERIC
, MyFrame::FileSaveGeneric
)
160 #endif // USE_FILEDLG_GENERIC
163 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
164 EVT_MENU(DIALOGS_DIRNEW_CHOOSE
, MyFrame::DirChooseNew
)
165 #endif // wxUSE_DIRDLG
167 #if USE_MODAL_PRESENTATION
168 EVT_MENU(DIALOGS_MODAL
, MyFrame::ModalDlg
)
169 #endif // USE_MODAL_PRESENTATION
170 EVT_MENU(DIALOGS_MODELESS
, MyFrame::ModelessDlg
)
171 EVT_MENU(DIALOGS_CENTRE_SCREEN
, MyFrame::DlgCenteredScreen
)
172 EVT_MENU(DIALOGS_CENTRE_PARENT
, MyFrame::DlgCenteredParent
)
173 EVT_MENU(DIALOGS_MINIFRAME
, MyFrame::MiniFrame
)
174 EVT_MENU(DIALOGS_ONTOP
, MyFrame::DlgOnTop
)
176 #if wxUSE_STARTUP_TIPS
177 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
178 #endif // wxUSE_STARTUP_TIPS
180 #if USE_FONTDLG_GENERIC
181 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
182 #endif // USE_FONTDLG_GENERIC
184 #if USE_DIRDLG_GENERIC
185 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE
, MyFrame::GenericDirChoose
)
186 #endif // wxMSW || wxMAC
188 #if USE_COLOURDLG_GENERIC
189 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
190 #endif // USE_COLOURDLG_GENERIC
192 #if wxUSE_PROGRESSDLG
193 EVT_MENU(DIALOGS_PROGRESS
, MyFrame::ShowProgress
)
194 #endif // wxUSE_PROGRESSDLG
197 EVT_MENU(DIALOGS_ABOUTDLG_SIMPLE
, MyFrame::ShowSimpleAboutDialog
)
198 EVT_MENU(DIALOGS_ABOUTDLG_FANCY
, MyFrame::ShowFancyAboutDialog
)
199 EVT_MENU(DIALOGS_ABOUTDLG_FULL
, MyFrame::ShowFullAboutDialog
)
200 EVT_MENU(DIALOGS_ABOUTDLG_CUSTOM
, MyFrame::ShowCustomAboutDialog
)
201 #endif // wxUSE_ABOUTDLG
204 EVT_MENU(DIALOGS_BUSYINFO
, MyFrame::ShowBusyInfo
)
205 #endif // wxUSE_BUSYINFO
207 #if wxUSE_FINDREPLDLG
208 EVT_MENU(DIALOGS_FIND
, MyFrame::ShowFindDialog
)
209 EVT_MENU(DIALOGS_REPLACE
, MyFrame::ShowReplaceDialog
)
211 EVT_FIND(wxID_ANY
, MyFrame::OnFindDialog
)
212 EVT_FIND_NEXT(wxID_ANY
, MyFrame::OnFindDialog
)
213 EVT_FIND_REPLACE(wxID_ANY
, MyFrame::OnFindDialog
)
214 EVT_FIND_REPLACE_ALL(wxID_ANY
, MyFrame::OnFindDialog
)
215 EVT_FIND_CLOSE(wxID_ANY
, MyFrame::OnFindDialog
)
216 #endif // wxUSE_FINDREPLDLG
218 #if USE_SETTINGS_DIALOG
219 EVT_MENU(DIALOGS_PROPERTY_SHEET
, MyFrame::OnPropertySheet
)
220 EVT_MENU(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, MyFrame::OnPropertySheet
)
221 EVT_MENU(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, MyFrame::OnPropertySheet
)
222 #endif // USE_SETTINGS_DIALOG
224 EVT_MENU(DIALOGS_STANDARD_BUTTON_SIZER_DIALOG
, MyFrame::OnStandardButtonsSizerDialog
)
225 EVT_MENU(DIALOGS_TEST_DEFAULT_ACTION
, MyFrame::OnTestDefaultActionDialog
)
227 EVT_MENU(DIALOGS_REQUEST
, MyFrame::OnRequestUserAttention
)
228 #if wxUSE_NOTIFICATION_MESSAGE
229 EVT_MENU(DIALOGS_NOTIFY_AUTO
, MyFrame::OnNotifMsgAuto
)
230 EVT_MENU(DIALOGS_NOTIFY_SHOW
, MyFrame::OnNotifMsgShow
)
231 EVT_MENU(DIALOGS_NOTIFY_HIDE
, MyFrame::OnNotifMsgHide
)
232 #endif // wxUSE_NOTIFICATION_MESSAGE
234 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
237 #if USE_MODAL_PRESENTATION
239 BEGIN_EVENT_TABLE(MyModalDialog
, wxDialog
)
240 EVT_BUTTON(wxID_ANY
, MyModalDialog::OnButton
)
243 BEGIN_EVENT_TABLE(MyModelessDialog
, wxDialog
)
244 EVT_BUTTON(DIALOGS_MODELESS_BTN
, MyModelessDialog::OnButton
)
245 EVT_CLOSE(MyModelessDialog::OnClose
)
248 #endif // USE_MODAL_PRESENTATION
250 BEGIN_EVENT_TABLE(StdButtonSizerDialog
, wxDialog
)
251 EVT_CHECKBOX(wxID_ANY
, StdButtonSizerDialog::OnEvent
)
252 EVT_RADIOBUTTON(wxID_ANY
, StdButtonSizerDialog::OnEvent
)
255 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
257 // `Main program' equivalent, creating windows and returning main app frame
260 if ( !wxApp::OnInit() )
264 wxInitAllImageHandlers();
267 m_canvasTextColour
= *wxBLACK
;
268 m_canvasFont
= *wxNORMAL_FONT
;
270 // Create the main frame window
271 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets dialogs example"));
274 wxMenu
*menuDlg
= new wxMenu
;
276 menuDlg
->Append(DIALOGS_MESSAGE_BOX
, _T("&Message box\tCtrl-M"));
277 menuDlg
->Append(DIALOGS_MESSAGE_DIALOG
, _T("Message dialog\tShift-Ctrl-M"));
280 #if wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
282 wxMenu
*choices_menu
= new wxMenu
;
285 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR
, _T("&Choose bg colour"));
286 choices_menu
->Append(DIALOGS_GET_COLOUR
, _T("&Choose fg colour"));
287 #endif // wxUSE_COLOURDLG
290 choices_menu
->Append(DIALOGS_CHOOSE_FONT
, _T("Choose &font"));
291 #endif // wxUSE_FONTDLG
294 choices_menu
->Append(DIALOGS_SINGLE_CHOICE
, _T("&Single choice\tCtrl-C"));
295 choices_menu
->Append(DIALOGS_MULTI_CHOICE
, _T("M&ultiple choice\tCtrl-U"));
296 #endif // wxUSE_CHOICEDLG
298 #if USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
299 choices_menu
->AppendSeparator();
300 #endif // USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
302 #if USE_COLOURDLG_GENERIC
303 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, _T("&Choose colour (generic)"));
304 #endif // USE_COLOURDLG_GENERIC
306 #if USE_FONTDLG_GENERIC
307 choices_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, _T("Choose &font (generic)"));
308 #endif // USE_FONTDLG_GENERIC
310 menuDlg
->Append(wxID_ANY
,_T("&Choices and selectors"),choices_menu
);
311 #endif // wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
314 #if wxUSE_TEXTDLG || wxUSE_NUMBERDLG
316 wxMenu
*entry_menu
= new wxMenu
;
319 entry_menu
->Append(DIALOGS_TEXT_ENTRY
, _T("Text &entry\tCtrl-E"));
320 entry_menu
->Append(DIALOGS_PASSWORD_ENTRY
, _T("&Password entry\tCtrl-P"));
321 #endif // wxUSE_TEXTDLG
324 entry_menu
->Append(DIALOGS_NUM_ENTRY
, _T("&Numeric entry\tCtrl-N"));
325 #endif // wxUSE_NUMBERDLG
327 menuDlg
->Append(wxID_ANY
,_T("&Entry dialogs"),entry_menu
);
329 #endif // wxUSE_TEXTDLG || wxUSE_NUMBERDLG
334 wxMenu
*filedlg_menu
= new wxMenu
;
335 filedlg_menu
->Append(DIALOGS_FILE_OPEN
, _T("&Open file\tCtrl-O"));
336 filedlg_menu
->Append(DIALOGS_FILE_OPEN2
, _T("&Second open file\tCtrl-2"));
337 filedlg_menu
->Append(DIALOGS_FILES_OPEN
, _T("Open &files\tCtrl-Q"));
338 filedlg_menu
->Append(DIALOGS_FILE_SAVE
, _T("Sa&ve file\tCtrl-S"));
340 #if USE_FILEDLG_GENERIC
341 filedlg_menu
->AppendSeparator();
342 filedlg_menu
->Append(DIALOGS_FILE_OPEN_GENERIC
, _T("&Open file (generic)"));
343 filedlg_menu
->Append(DIALOGS_FILES_OPEN_GENERIC
, _T("Open &files (generic)"));
344 filedlg_menu
->Append(DIALOGS_FILE_SAVE_GENERIC
, _T("Sa&ve file (generic)"));
345 #endif // USE_FILEDLG_GENERIC
347 menuDlg
->Append(wxID_ANY
,_T("&File operations"),filedlg_menu
);
349 #endif // wxUSE_FILEDLG
352 wxMenu
*dir_menu
= new wxMenu
;
354 dir_menu
->Append(DIALOGS_DIR_CHOOSE
, _T("&Choose a directory\tCtrl-D"));
355 dir_menu
->Append(DIALOGS_DIRNEW_CHOOSE
, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
356 menuDlg
->Append(wxID_ANY
,_T("&Directory operations"),dir_menu
);
358 #if USE_DIRDLG_GENERIC
359 dir_menu
->AppendSeparator();
360 dir_menu
->Append(DIALOGS_GENERIC_DIR_CHOOSE
, _T("&Choose a directory (generic)"));
361 #endif // USE_DIRDLG_GENERIC
363 #endif // wxUSE_DIRDLG
366 #if wxUSE_STARTUP_TIPS || \
367 wxUSE_PROGRESSDLG || \
369 wxUSE_LOG_DIALOG || \
372 wxMenu
*info_menu
= new wxMenu
;
374 #if wxUSE_STARTUP_TIPS
375 info_menu
->Append(DIALOGS_TIP
, _T("&Tip of the day\tCtrl-T"));
376 #endif // wxUSE_STARTUP_TIPS
378 #if wxUSE_PROGRESSDLG
379 info_menu
->Append(DIALOGS_PROGRESS
, _T("Pro&gress dialog\tCtrl-G"));
380 #endif // wxUSE_PROGRESSDLG
383 info_menu
->Append(DIALOGS_BUSYINFO
, _T("&Busy info dialog\tCtrl-B"));
384 #endif // wxUSE_BUSYINFO
387 info_menu
->Append(DIALOGS_LOG_DIALOG
, _T("&Log dialog\tCtrl-L"));
388 #endif // wxUSE_LOG_DIALOG
391 info_menu
->Append(DIALOGS_MESSAGE_BOX_WXINFO
,
392 _T("&wxWidgets information\tCtrl-I"));
393 #endif // wxUSE_MSGDLG
395 menuDlg
->Append(wxID_ANY
,_T("&Informative dialogs"),info_menu
);
397 #endif // wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
400 #if wxUSE_FINDREPLDLG
401 wxMenu
*find_menu
= new wxMenu
;
402 find_menu
->AppendCheckItem(DIALOGS_FIND
, _T("&Find dialog\tCtrl-F"));
403 find_menu
->AppendCheckItem(DIALOGS_REPLACE
, _T("Find and &replace dialog\tShift-Ctrl-F"));
404 menuDlg
->Append(wxID_ANY
,_T("&Searching"),find_menu
);
405 #endif // wxUSE_FINDREPLDLG
407 wxMenu
*dialogs_menu
= new wxMenu
;
408 #if USE_MODAL_PRESENTATION
409 dialogs_menu
->Append(DIALOGS_MODAL
, _T("&Modal dialog\tCtrl-W"));
410 #endif // USE_MODAL_PRESENTATION
411 dialogs_menu
->AppendCheckItem(DIALOGS_MODELESS
, _T("Mode&less dialog\tCtrl-Z"));
412 dialogs_menu
->Append(DIALOGS_CENTRE_SCREEN
, _T("Centered on &screen\tShift-Ctrl-1"));
413 dialogs_menu
->Append(DIALOGS_CENTRE_PARENT
, _T("Centered on &parent\tShift-Ctrl-2"));
414 dialogs_menu
->Append(DIALOGS_MINIFRAME
, _T("&Mini frame"));
415 dialogs_menu
->Append(DIALOGS_ONTOP
, _T("Dialog staying on &top"));
416 menuDlg
->Append(wxID_ANY
, _T("&Generic dialogs"), dialogs_menu
);
418 #if USE_SETTINGS_DIALOG
419 wxMenu
*sheet_menu
= new wxMenu
;
420 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET
, _T("&Standard property sheet\tShift-Ctrl-P"));
421 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, _T("&Toolbook sheet\tShift-Ctrl-T"));
423 if (wxPlatformIs(wxPORT_MAC
))
424 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
427 sheet_menu->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
430 menuDlg
->Append(wxID_ANY
, _T("&Property sheets"), sheet_menu
);
431 #endif // USE_SETTINGS_DIALOG
433 wxMenu
*menuNotif
= new wxMenu
;
434 menuNotif
->Append(DIALOGS_REQUEST
, _T("&Request user attention\tCtrl-R"));
435 #if wxUSE_NOTIFICATION_MESSAGE
436 menuNotif
->Append(DIALOGS_NOTIFY_AUTO
, "&Automatically hidden notification");
437 menuNotif
->Append(DIALOGS_NOTIFY_SHOW
, "&Show manual notification");
438 menuNotif
->Append(DIALOGS_NOTIFY_HIDE
, "&Hide manual notification");
439 #endif // wxUSE_NOTIFICATION_MESSAGE
440 menuDlg
->AppendSubMenu(menuNotif
, "&User notifications");
442 menuDlg
->Append(DIALOGS_STANDARD_BUTTON_SIZER_DIALOG
, _T("&Standard Buttons Sizer Dialog"));
443 menuDlg
->Append(DIALOGS_TEST_DEFAULT_ACTION
, _T("&Test dialog default action"));
445 menuDlg
->AppendSeparator();
446 menuDlg
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"));
449 wxMenu
*menuHelp
= new wxMenu
;
450 menuHelp
->Append(DIALOGS_ABOUTDLG_SIMPLE
, _T("&About (simple)...\tF1"));
451 menuHelp
->Append(DIALOGS_ABOUTDLG_FANCY
, _T("About (&fancy)...\tShift-F1"));
452 menuHelp
->Append(DIALOGS_ABOUTDLG_FULL
, _T("About (f&ull)...\tCtrl-F1"));
453 menuHelp
->Append(DIALOGS_ABOUTDLG_CUSTOM
, _T("About (&custom)...\tCtrl-Shift-F1"));
454 #endif // wxUSE_ABOUTDLG
456 wxMenuBar
*menubar
= new wxMenuBar
;
457 menubar
->Append(menuDlg
, _T("&Dialogs"));
459 menubar
->Append(menuHelp
, _T("&Help"));
460 #endif // wxUSE_ABOUTDLG
462 frame
->SetMenuBar(menubar
);
464 myCanvas
= new MyCanvas(frame
);
465 myCanvas
->SetBackgroundColour(*wxWHITE
);
467 frame
->Centre(wxBOTH
);
477 // My frame constructor
478 MyFrame::MyFrame(wxWindow
*parent
,
479 const wxString
& title
)
480 : wxFrame(parent
, wxID_ANY
, title
)
484 #if USE_MODAL_PRESENTATION
485 m_dialog
= (MyModelessDialog
*)NULL
;
486 #endif // USE_MODAL_PRESENTATION
488 #if wxUSE_FINDREPLDLG
494 m_clrData
.SetChooseFull(true);
495 for (int i
= 0; i
< wxColourData::NUM_CUSTOM
; i
++)
497 unsigned char n
= i
*16;
498 m_clrData
.SetCustomColour(i
, wxColour(n
, n
, n
));
500 #endif // wxUSE_COLOURDLG
502 #if wxUSE_NOTIFICATION_MESSAGE
504 #endif // wxUSE_NOTIFICATION_MESSAGE
508 #endif // wxUSE_STATUSBAR
513 #if wxUSE_NOTIFICATION_MESSAGE
515 #endif // wxUSE_NOTIFICATION_MESSAGE
520 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
))
522 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
524 wxColourDialog
dialog(this, &m_clrData
);
525 dialog
.SetTitle(_("Please choose the background colour"));
526 if ( dialog
.ShowModal() == wxID_OK
)
528 m_clrData
= dialog
.GetColourData();
529 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
530 myCanvas
->ClearBackground();
535 void MyFrame::GetColour(wxCommandEvent
& WXUNUSED(event
))
537 wxColour clr
= wxGetColourFromUser
540 wxGetApp().m_canvasTextColour
,
541 "Please choose the foreground colour"
545 wxGetApp().m_canvasTextColour
= clr
;
548 //else: dialog cancelled by user
551 #endif // wxUSE_COLOURDLG
554 #if USE_COLOURDLG_GENERIC
555 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
557 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
559 //FIXME:TODO:This has no effect...
560 m_clrData
.SetChooseFull(true);
562 for (int i
= 0; i
< 16; i
++)
565 (unsigned char)(i
*16),
566 (unsigned char)(i
*16),
567 (unsigned char)(i
*16)
569 m_clrData
.SetCustomColour(i
, colour
);
572 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &m_clrData
);
573 if (dialog
->ShowModal() == wxID_OK
)
575 m_clrData
= dialog
->GetColourData();
576 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
577 myCanvas
->ClearBackground();
582 #endif // USE_COLOURDLG_GENERIC
585 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
588 data
.SetInitialFont(wxGetApp().m_canvasFont
);
589 data
.SetColour(wxGetApp().m_canvasTextColour
);
591 // you might also do this:
593 // wxFontDialog dialog;
594 // if ( !dialog.Create(this, data) { ... error ... }
596 wxFontDialog
dialog(this, data
);
598 if (dialog
.ShowModal() == wxID_OK
)
600 wxFontData retData
= dialog
.GetFontData();
601 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
602 wxGetApp().m_canvasTextColour
= retData
.GetColour();
605 //else: cancelled by the user, don't change the font
607 #endif // wxUSE_FONTDLG
609 #if USE_FONTDLG_GENERIC
610 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
613 data
.SetInitialFont(wxGetApp().m_canvasFont
);
614 data
.SetColour(wxGetApp().m_canvasTextColour
);
616 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, data
);
617 if (dialog
->ShowModal() == wxID_OK
)
619 wxFontData retData
= dialog
->GetFontData();
620 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
621 wxGetApp().m_canvasTextColour
= retData
.GetColour();
626 #endif // USE_FONTDLG_GENERIC
629 void MyFrame::LogDialog(wxCommandEvent
& WXUNUSED(event
))
631 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
632 // being flushed -- test it
635 wxLogMessage(wxT("This is some message - everything is ok so far."));
636 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
637 wxLogWarning(wxT("And then something went wrong!"));
639 // and if ~wxBusyCursor doesn't do it, then call it manually
643 wxLogError(wxT("Intermediary error handler decided to abort."));
644 wxLogError(wxT("The top level caller detected an unrecoverable error."));
646 wxLog::FlushActive();
648 wxLogMessage(wxT("And this is the same dialog but with only one message."));
650 #endif // wxUSE_LOG_DIALOG
653 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
))
655 wxMessageDialog
dialog(this,
656 "This is a message box\n"
657 "This is a long, long string to test out if the message box "
658 "is laid out properly.",
661 wxNO_DEFAULT
| wxYES_NO
| wxCANCEL
|
665 if ( dialog
.SetYesNoCancelLabels
672 extmsg
= "This platform supports custom button labels,\n"
673 "so you should see the descriptive labels below.";
677 extmsg
= "Custom button labels are not supported on this platform,\n"
678 "so the default \"Yes\"/\"No\"/\"Cancel\" buttons are used.";
680 dialog
.SetExtendedMessage(extmsg
);
682 switch ( dialog
.ShowModal() )
685 wxLogStatus(wxT("You pressed \"Yes\""));
689 wxLogStatus(wxT("You pressed \"No\""));
693 wxLogStatus(wxT("You pressed \"Cancel\""));
697 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
701 void MyFrame::MessageBoxDialog(wxCommandEvent
& WXUNUSED(event
))
703 TestMessageBoxDialog
dlg(this);
707 void MyFrame::MessageBoxInfo(wxCommandEvent
& WXUNUSED(event
))
709 ::wxInfoMessageBox(this);
711 #endif // wxUSE_MSGDLG
714 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
))
716 long res
= wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
717 _T("Even two rows of text."),
718 _T("Enter a number:"), _T("Numeric input test"),
725 msg
= _T("Invalid number entered or dialog cancelled.");
730 msg
.Printf(_T("You've entered %lu"), res
);
731 icon
= wxICON_INFORMATION
;
734 wxMessageBox(msg
, _T("Numeric test result"), wxOK
| icon
, this);
736 #endif // wxUSE_NUMBERDLG
739 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
741 wxString pwd
= wxGetPasswordFromUser(_T("Enter password:"),
742 _T("Password entry dialog"),
747 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd
.c_str()),
748 _T("Got password"), wxOK
| wxICON_INFORMATION
, this);
752 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
754 wxTextEntryDialog
dialog(this,
755 _T("This is a small sample\n")
756 _T("A long, long string to test out the text entrybox"),
757 _T("Please enter a string"),
761 if (dialog
.ShowModal() == wxID_OK
)
763 wxMessageBox(dialog
.GetValue(), _T("Got string"), wxOK
| wxICON_INFORMATION
, this);
766 #endif // wxUSE_TEXTDLG
769 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
771 const wxString choices
[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
773 wxSingleChoiceDialog
dialog(this,
774 _T("This is a small sample\n")
775 _T("A single-choice convenience dialog"),
776 _T("Please select a value"),
777 WXSIZEOF(choices
), choices
);
779 dialog
.SetSelection(2);
781 if (dialog
.ShowModal() == wxID_OK
)
783 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), _T("Got string"));
788 void MyFrame::MultiChoice(wxCommandEvent
& WXUNUSED(event
) )
790 const wxString choices
[] =
792 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
793 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
794 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
797 wxArrayInt selections
;
798 size_t count
= wxGetMultipleChoices(selections
,
799 _T("This is a small sample\n")
800 _T("A multi-choice convenience dialog"),
801 _T("Please select a value"),
802 WXSIZEOF(choices
), choices
,
807 msg
.Printf(wxT("You selected %u items:\n"), (unsigned)count
);
808 for ( size_t n
= 0; n
< count
; n
++ )
810 msg
+= wxString::Format(wxT("\t%u: %u (%s)\n"),
811 (unsigned)n
, (unsigned)selections
[n
],
812 choices
[selections
[n
]].c_str());
816 //else: cancelled or nothing selected
818 #endif // wxUSE_CHOICEDLG
822 // panel with custom controls for file dialog
823 class MyExtraPanel
: public wxPanel
826 MyExtraPanel(wxWindow
*parent
);
827 void OnCheckBox(wxCommandEvent
& event
) { m_btn
->Enable(event
.IsChecked()); }
828 wxString
GetInfo() const
830 return wxString::Format("checkbox value = %d", (int) m_cb
->GetValue());
837 MyExtraPanel::MyExtraPanel(wxWindow
*parent
)
840 m_btn
= new wxButton(this, -1, _T("Custom Button"));
841 m_btn
->Enable(false);
842 m_cb
= new wxCheckBox(this, -1, _T("Enable Custom Button"));
843 m_cb
->Connect(wxID_ANY
, wxEVT_COMMAND_CHECKBOX_CLICKED
,
844 wxCommandEventHandler(MyExtraPanel::OnCheckBox
), NULL
, this);
845 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
846 sizerTop
->Add(m_cb
, wxSizerFlags().Centre().Border());
847 sizerTop
->AddStretchSpacer();
848 sizerTop
->Add(m_btn
, wxSizerFlags().Right().Border());
849 SetSizerAndFit(sizerTop
);
852 // a static method can be used instead of a function with most of compilers
853 static wxWindow
* createMyExtraPanel(wxWindow
*parent
)
855 return new MyExtraPanel(parent
);
858 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
863 _T("Testing open file dialog"),
867 _T("C++ files (*.cpp)|*.cpp")
869 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
873 dialog
.SetExtraControlCreator(&createMyExtraPanel
);
874 dialog
.CentreOnParent();
875 dialog
.SetDirectory(wxGetHomeDir());
877 if (dialog
.ShowModal() == wxID_OK
)
880 wxWindow
* const extra
= dialog
.GetExtraControl();
881 info
.Printf(_T("Full file name: %s\n")
884 _T("Custom window: %s"),
885 dialog
.GetPath().c_str(),
886 dialog
.GetDirectory().c_str(),
887 dialog
.GetFilename().c_str(),
888 extra
? static_cast<MyExtraPanel
*>(extra
)->GetInfo()
890 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
895 // this shows how to take advantage of specifying a default extension in the
896 // call to wxFileSelector: it is remembered after each new call and the next
897 // one will use it by default
898 void MyFrame::FileOpen2(wxCommandEvent
& WXUNUSED(event
) )
900 static wxString s_extDef
;
901 wxString path
= wxFileSelector(
902 _T("Select the file to load"),
903 wxEmptyString
, wxEmptyString
,
907 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (%s)|%s"),
908 wxFileSelectorDefaultWildcardStr
,
909 wxFileSelectorDefaultWildcardStr
911 wxFD_OPEN
|wxFD_CHANGE_DIR
|wxFD_PREVIEW
,
918 // it is just a sample, would use wxSplitPath in real program
919 s_extDef
= path
.AfterLast(_T('.'));
921 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
925 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
929 _T("C++ files (*.cpp)|*.cpp");
933 _T("All files (%s)|%s|C++ files (*.cpp;*.h)|*.cpp;*.h"),
934 wxFileSelectorDefaultWildcardStr
,
935 wxFileSelectorDefaultWildcardStr
938 wxFileDialog
dialog(this, _T("Testing open multiple file dialog"),
939 wxEmptyString
, wxEmptyString
, wildcards
,
940 wxFD_OPEN
|wxFD_MULTIPLE
);
942 if (dialog
.ShowModal() == wxID_OK
)
944 wxArrayString paths
, filenames
;
946 dialog
.GetPaths(paths
);
947 dialog
.GetFilenames(filenames
);
950 size_t count
= paths
.GetCount();
951 for ( size_t n
= 0; n
< count
; n
++ )
953 s
.Printf(_T("File %d: %s (%s)\n"),
954 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
958 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
961 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
966 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
968 wxFileDialog
dialog(this,
969 _T("Testing save file dialog"),
972 _T("Text files (*.txt)|*.txt|Document files (*.doc;*.ods)|*.doc;*.ods"),
973 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
975 dialog
.SetFilterIndex(1);
977 if (dialog
.ShowModal() == wxID_OK
)
979 wxLogMessage(_T("%s, filter %d"),
980 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
983 #endif // wxUSE_FILEDLG
985 #if USE_FILEDLG_GENERIC
986 void MyFrame::FileOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
988 wxGenericFileDialog dialog
991 _T("Testing open file dialog"),
994 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
997 dialog
.SetExtraControlCreator(&createMyExtraPanel
);
998 dialog
.SetDirectory(wxGetHomeDir());
1000 if (dialog
.ShowModal() == wxID_OK
)
1003 info
.Printf(_T("Full file name: %s\n")
1006 dialog
.GetPath().c_str(),
1007 dialog
.GetDirectory().c_str(),
1008 dialog
.GetFilename().c_str());
1009 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
1010 dialog2
.ShowModal();
1014 void MyFrame::FilesOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
1016 // On PocketPC you can disable OK-only dialogs policy using system option
1017 int buttons
= wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel"));
1018 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), 1);
1020 wxString wildcards
= _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
1021 wxGenericFileDialog
dialog(this, _T("Testing open multiple file dialog"),
1022 wxEmptyString
, wxEmptyString
, wildcards
,
1025 if (dialog
.ShowModal() == wxID_OK
)
1027 wxArrayString paths
, filenames
;
1029 dialog
.GetPaths(paths
);
1030 dialog
.GetFilenames(filenames
);
1033 size_t count
= paths
.GetCount();
1034 for ( size_t n
= 0; n
< count
; n
++ )
1036 s
.Printf(_T("File %d: %s (%s)\n"),
1037 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
1041 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
1044 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
1045 dialog2
.ShowModal();
1048 // restore system option
1049 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), buttons
);
1052 void MyFrame::FileSaveGeneric(wxCommandEvent
& WXUNUSED(event
) )
1054 wxGenericFileDialog
dialog(this,
1055 _T("Testing save file dialog"),
1058 _T("Text files (*.txt)|*.txt|Document files (*.doc;*.ods)|*.doc;*.ods"),
1059 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
1061 dialog
.SetFilterIndex(1);
1063 if (dialog
.ShowModal() == wxID_OK
)
1065 wxLogMessage(_T("%s, filter %d"),
1066 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
1069 #endif // USE_FILEDLG_GENERIC
1072 void MyFrame::DoDirChoose(int style
)
1074 // pass some initial dir to wxDirDialog
1076 wxGetHomeDir(&dirHome
);
1078 wxDirDialog
dialog(this, _T("Testing directory picker"), dirHome
, style
);
1080 if (dialog
.ShowModal() == wxID_OK
)
1082 wxLogMessage(_T("Selected path: %s"), dialog
.GetPath().c_str());
1086 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
1088 DoDirChoose(wxDD_DEFAULT_STYLE
| wxDD_DIR_MUST_EXIST
);
1091 void MyFrame::DirChooseNew(wxCommandEvent
& WXUNUSED(event
) )
1093 DoDirChoose(wxDD_DEFAULT_STYLE
& ~wxDD_DIR_MUST_EXIST
);
1095 #endif // wxUSE_DIRDLG
1097 #if USE_DIRDLG_GENERIC
1098 void MyFrame::GenericDirChoose(wxCommandEvent
& WXUNUSED(event
) )
1100 // pass some initial dir to wxDirDialog
1102 wxGetHomeDir(&dirHome
);
1104 wxGenericDirDialog
dialog(this, _T("Testing generic directory picker"), dirHome
);
1106 if (dialog
.ShowModal() == wxID_OK
)
1108 wxMessageDialog
dialog2(this, dialog
.GetPath(), _T("Selected path"));
1109 dialog2
.ShowModal();
1112 #endif // USE_DIRDLG_GENERIC
1114 #if USE_MODAL_PRESENTATION
1115 void MyFrame::ModalDlg(wxCommandEvent
& WXUNUSED(event
))
1117 MyModalDialog
dlg(this);
1120 #endif // USE_MODAL_PRESENTATION
1122 void MyFrame::ModelessDlg(wxCommandEvent
& event
)
1124 bool show
= GetMenuBar()->IsChecked(event
.GetId());
1130 m_dialog
= new MyModelessDialog(this);
1133 m_dialog
->Show(true);
1137 // If m_dialog is NULL, then possibly the system
1138 // didn't report the checked menu item status correctly.
1139 // It should be true just after the menu item was selected,
1140 // if there was no modeless dialog yet.
1142 wxASSERT( m_dialog
!= NULL
);
1148 void MyFrame::DlgCenteredScreen(wxCommandEvent
& WXUNUSED(event
))
1150 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on screen"),
1151 wxDefaultPosition
, wxSize(200, 100));
1152 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1153 dlg
.CentreOnScreen();
1157 void MyFrame::DlgCenteredParent(wxCommandEvent
& WXUNUSED(event
))
1159 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on parent"),
1160 wxDefaultPosition
, wxSize(200, 100));
1161 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1162 dlg
.CentreOnParent();
1166 void MyFrame::MiniFrame(wxCommandEvent
& WXUNUSED(event
))
1168 wxFrame
*frame
= new wxMiniFrame(this, wxID_ANY
, _T("Mini frame"),
1169 wxDefaultPosition
, wxSize(300, 100),
1170 wxCAPTION
| wxCLOSE_BOX
);
1171 new wxStaticText(frame
,
1173 _T("Mini frames have slightly different appearance"),
1175 new wxStaticText(frame
,
1177 _T("from the normal frames but that's the only difference."),
1180 frame
->CentreOnParent();
1184 void MyFrame::DlgOnTop(wxCommandEvent
& WXUNUSED(event
))
1186 wxDialog
dlg(this, wxID_ANY
, _T("Dialog staying on top of other windows"),
1187 wxDefaultPosition
, wxSize(300, 100),
1188 wxDEFAULT_DIALOG_STYLE
| wxSTAY_ON_TOP
);
1189 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1193 #if wxUSE_STARTUP_TIPS
1194 void MyFrame::ShowTip(wxCommandEvent
& WXUNUSED(event
))
1196 static size_t s_index
= (size_t)-1;
1198 if ( s_index
== (size_t)-1 )
1202 // this is completely bogus, we don't know how many lines are there
1203 // in the file, but who cares, it's a demo only...
1204 s_index
= rand() % 5;
1207 wxTipProvider
*tipProvider
= wxCreateFileTipProvider(_T("tips.txt"), s_index
);
1209 bool showAtStartup
= wxShowTip(this, tipProvider
);
1211 if ( showAtStartup
)
1213 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
1214 wxOK
| wxICON_INFORMATION
, this);
1217 s_index
= tipProvider
->GetCurrentTip();
1220 #endif // wxUSE_STARTUP_TIPS
1222 #if USE_SETTINGS_DIALOG
1223 void MyFrame::OnPropertySheet(wxCommandEvent
& event
)
1225 SettingsDialog
dialog(this, event
.GetId());
1228 #endif // USE_SETTINGS_DIALOG
1230 void MyFrame::OnRequestUserAttention(wxCommandEvent
& WXUNUSED(event
))
1232 wxLogStatus(_T("Sleeping for 3 seconds to allow you to switch to another window"));
1236 RequestUserAttention(wxUSER_ATTENTION_ERROR
);
1239 #if wxUSE_NOTIFICATION_MESSAGE
1241 void MyFrame::OnNotifMsgAuto(wxCommandEvent
& WXUNUSED(event
))
1243 if ( !wxNotificationMessage
1245 "Automatic Notification",
1246 "Nothing important has happened\n"
1247 "this notification will disappear soon."
1250 wxLogStatus("Failed to show notification message");
1254 void MyFrame::OnNotifMsgShow(wxCommandEvent
& WXUNUSED(event
))
1258 m_notifMsg
= new wxNotificationMessage
1260 "wxWidgets Manual Notification",
1261 "You can hide this notification from the menu",
1266 if ( !m_notifMsg
->Show(wxNotificationMessage::Timeout_Never
) )
1268 wxLogStatus("Failed to show manual notification message");
1272 void MyFrame::OnNotifMsgHide(wxCommandEvent
& WXUNUSED(event
))
1276 if ( !m_notifMsg
->Close() )
1277 wxLogStatus("Failed to hide manual notification message");
1281 #endif // wxUSE_NOTIFICATION_MESSAGE
1283 void MyFrame::OnStandardButtonsSizerDialog(wxCommandEvent
& WXUNUSED(event
))
1285 StdButtonSizerDialog
dialog(this);
1289 // TestDefaultAction
1291 #define ID_CATCH_LISTBOX_DCLICK 100
1292 #define ID_LISTBOX 101
1294 BEGIN_EVENT_TABLE(TestDefaultActionDialog
, wxDialog
)
1295 EVT_CHECKBOX(ID_CATCH_LISTBOX_DCLICK
, TestDefaultActionDialog::OnCatchListBoxDClick
)
1296 EVT_LISTBOX_DCLICK(ID_LISTBOX
, TestDefaultActionDialog::OnListBoxDClick
)
1299 TestDefaultActionDialog::TestDefaultActionDialog( wxWindow
*parent
) :
1300 wxDialog( parent
, -1, "Test default action" )
1302 m_catchListBoxDClick
= false;
1304 wxBoxSizer
*main_sizer
= new wxBoxSizer( wxVERTICAL
);
1306 wxFlexGridSizer
*grid_sizer
= new wxFlexGridSizer( 2, 5, 5 );
1308 wxListBox
*listbox
= new wxListBox( this, ID_LISTBOX
);
1309 listbox
->Append( "String 1" );
1310 listbox
->Append( "String 2" );
1311 listbox
->Append( "String 3" );
1312 listbox
->Append( "String 4" );
1313 grid_sizer
->Add( listbox
);
1315 grid_sizer
->Add( new wxCheckBox( this, ID_CATCH_LISTBOX_DCLICK
, "Catch DoubleClick from wxListBox" ), 0, wxALIGN_CENTRE_VERTICAL
);
1317 grid_sizer
->Add( new wxTextCtrl( this, -1, "", wxDefaultPosition
, wxSize(80,-1), 0 ), 0, wxALIGN_CENTRE_VERTICAL
);
1318 grid_sizer
->Add( new wxStaticText( this, -1, "wxTextCtrl without wxTE_PROCESS_ENTER" ), 0, wxALIGN_CENTRE_VERTICAL
);
1320 grid_sizer
->Add( new wxTextCtrl( this, -1, "", wxDefaultPosition
, wxSize(80,-1), wxTE_PROCESS_ENTER
), 0, wxALIGN_CENTRE_VERTICAL
);
1321 grid_sizer
->Add( new wxStaticText( this, -1, "wxTextCtrl with wxTE_PROCESS_ENTER" ), 0, wxALIGN_CENTRE_VERTICAL
);
1323 main_sizer
->Add( grid_sizer
, 0, wxALL
, 10 );
1325 wxSizer
*button_sizer
= CreateSeparatedButtonSizer( wxOK
|wxCANCEL
);
1327 main_sizer
->Add( button_sizer
, 0, wxALL
|wxGROW
, 5 );
1329 SetSizerAndFit( main_sizer
);
1332 void TestDefaultActionDialog::OnListBoxDClick(wxCommandEvent
& event
)
1334 event
.Skip( !m_catchListBoxDClick
);
1337 void TestDefaultActionDialog::OnCatchListBoxDClick(wxCommandEvent
& WXUNUSED(event
))
1339 m_catchListBoxDClick
= !m_catchListBoxDClick
;
1342 void MyFrame::OnTestDefaultActionDialog(wxCommandEvent
& WXUNUSED(event
))
1344 TestDefaultActionDialog
dialog( this );
1348 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
1353 #if wxUSE_PROGRESSDLG
1355 void MyFrame::ShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1357 static const int max
= 100;
1359 wxProgressDialog
dialog(_T("Progress dialog example"),
1360 _T("An informative message"),
1366 // wxPD_AUTO_HIDE | -- try this as well
1368 wxPD_ESTIMATED_TIME
|
1370 | wxPD_SMOOTH
// - makes indeterminate mode bar on WinXP very small
1374 for ( int i
= 0; i
<= max
; i
++ )
1380 // test both modes of wxProgressDialog behaviour: start in
1381 // indeterminate mode but switch to the determinate one later
1382 const bool determinate
= i
> max
/2;
1386 msg
= _T("That's all, folks!");
1388 else if ( !determinate
)
1390 msg
= _T("Testing indeterminate mode");
1392 else if ( determinate
)
1394 msg
= _T("Now in standard determinate mode");
1397 // will be set to true if "Skip" button was pressed
1401 cont
= dialog
.Update(i
, msg
, &skip
);
1405 cont
= dialog
.Pulse(msg
, &skip
);
1408 // each skip will move progress about quarter forward
1414 if ( wxMessageBox(_T("Do you really want to cancel?"),
1415 _T("Progress dialog question"), // caption
1416 wxYES_NO
| wxICON_QUESTION
) == wxYES
)
1426 wxLogStatus(wxT("Progress dialog aborted!"));
1430 wxLogStatus(wxT("Countdown from %d finished"), max
);
1434 #endif // wxUSE_PROGRESSDLG
1438 static void InitAboutInfoMinimal(wxAboutDialogInfo
& info
)
1440 info
.SetName(_T("Dialogs Sample"));
1441 info
.SetVersion(wxVERSION_NUM_DOT_STRING_T
);
1442 info
.SetDescription(_T("This sample shows different wxWidgets dialogs"));
1443 info
.SetCopyright(_T("(C) 1998-2006 wxWidgets dev team"));
1444 info
.AddDeveloper(_T("Vadim Zeitlin"));
1447 static void InitAboutInfoWebsite(wxAboutDialogInfo
& info
)
1449 InitAboutInfoMinimal(info
);
1451 info
.SetWebSite(_T("http://www.wxwidgets.org/"), _T("wxWidgets web site"));
1454 static void InitAboutInfoAll(wxAboutDialogInfo
& info
)
1456 InitAboutInfoWebsite(info
);
1458 // we can add a second developer
1459 info
.AddDeveloper(_T("A.N. Other"));
1461 // or we can add several persons at once like this
1462 static const wxChar
*docwriters
[] =
1464 _T("First D. Writer"),
1468 info
.SetDocWriters(wxArrayString(WXSIZEOF(docwriters
), docwriters
));
1469 info
.SetLicence(wxString::FromAscii(
1470 " wxWindows Library Licence, Version 3.1\n"
1471 " ======================================\n"
1473 " Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al\n"
1475 " Everyone is permitted to copy and distribute verbatim copies\n"
1476 " of this licence document, but changing it is not allowed.\n"
1478 " WXWINDOWS LIBRARY LICENCE\n"
1479 " TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n"
1481 " ...and so on and so forth...\n"
1484 info
.AddTranslator(_T("Wun Ngo Wen (Martian)"));
1487 void MyFrame::ShowSimpleAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1489 wxAboutDialogInfo info
;
1490 InitAboutInfoMinimal(info
);
1495 void MyFrame::ShowFancyAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1497 wxAboutDialogInfo info
;
1498 InitAboutInfoWebsite(info
);
1503 void MyFrame::ShowFullAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1505 wxAboutDialogInfo info
;
1506 InitAboutInfoAll(info
);
1511 // a trivial example of a custom dialog class
1512 class MyAboutDialog
: public wxGenericAboutDialog
1515 MyAboutDialog(const wxAboutDialogInfo
& info
)
1520 // add some custom controls
1521 virtual void DoAddCustomControls()
1523 AddControl(new wxStaticLine(this), wxSizerFlags().Expand());
1524 AddText(_T("Some custom text"));
1525 AddControl(new wxStaticLine(this), wxSizerFlags().Expand());
1529 void MyFrame::ShowCustomAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1531 wxAboutDialogInfo info
;
1532 InitAboutInfoAll(info
);
1534 MyAboutDialog
dlg(info
);
1538 #endif // wxUSE_ABOUTDLG
1542 void MyFrame::ShowBusyInfo(wxCommandEvent
& WXUNUSED(event
))
1544 wxWindowDisabler disableAll
;
1546 wxBusyInfo
info(_T("Working, please wait..."), this);
1548 for ( int i
= 0; i
< 18; i
++ )
1558 #endif // wxUSE_BUSYINFO
1560 #if wxUSE_FINDREPLDLG
1562 void MyFrame::ShowReplaceDialog( wxCommandEvent
& WXUNUSED(event
) )
1566 delete m_dlgReplace
;
1567 m_dlgReplace
= NULL
;
1571 m_dlgReplace
= new wxFindReplaceDialog
1575 _T("Find and replace dialog"),
1579 m_dlgReplace
->Show(true);
1583 void MyFrame::ShowFindDialog( wxCommandEvent
& WXUNUSED(event
) )
1592 m_dlgFind
= new wxFindReplaceDialog
1601 m_dlgFind
->Show(true);
1605 static wxString
DecodeFindDialogEventFlags(int flags
)
1608 str
<< (flags
& wxFR_DOWN
? _T("down") : _T("up")) << _T(", ")
1609 << (flags
& wxFR_WHOLEWORD
? _T("whole words only, ") : _T(""))
1610 << (flags
& wxFR_MATCHCASE
? _T("") : _T("not "))
1611 << _T("case sensitive");
1616 void MyFrame::OnFindDialog(wxFindDialogEvent
& event
)
1618 wxEventType type
= event
.GetEventType();
1620 if ( type
== wxEVT_COMMAND_FIND
|| type
== wxEVT_COMMAND_FIND_NEXT
)
1622 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
1623 type
== wxEVT_COMMAND_FIND_NEXT
? wxT("next ") : wxT(""),
1624 event
.GetFindString().c_str(),
1625 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1627 else if ( type
== wxEVT_COMMAND_FIND_REPLACE
||
1628 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
)
1630 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
1631 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
? _T("all ") : wxT(""),
1632 event
.GetFindString().c_str(),
1633 event
.GetReplaceString().c_str(),
1634 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1636 else if ( type
== wxEVT_COMMAND_FIND_CLOSE
)
1638 wxFindReplaceDialog
*dlg
= event
.GetDialog();
1642 if ( dlg
== m_dlgFind
)
1645 idMenu
= DIALOGS_FIND
;
1648 else if ( dlg
== m_dlgReplace
)
1650 txt
= _T("Replace");
1651 idMenu
= DIALOGS_REPLACE
;
1652 m_dlgReplace
= NULL
;
1656 txt
= _T("Unknown");
1659 wxFAIL_MSG( _T("unexpected event") );
1662 wxLogMessage(wxT("%s dialog is being closed."), txt
);
1664 if ( idMenu
!= wxID_ANY
)
1666 GetMenuBar()->Check(idMenu
, false);
1673 wxLogError(wxT("Unknown find dialog event!"));
1677 #endif // wxUSE_FINDREPLDLG
1679 // ----------------------------------------------------------------------------
1681 // ----------------------------------------------------------------------------
1683 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
1686 dc
.SetFont(wxGetApp().m_canvasFont
);
1687 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
1688 dc
.SetBackgroundMode(wxTRANSPARENT
);
1690 _T("wxWidgets common dialogs")
1691 #if !defined(__SMARTPHONE__)
1692 _T(" test application")
1697 #if USE_MODAL_PRESENTATION
1699 // ----------------------------------------------------------------------------
1701 // ----------------------------------------------------------------------------
1703 MyModelessDialog::MyModelessDialog(wxWindow
*parent
)
1704 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modeless dialog")))
1706 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
1708 wxButton
*btn
= new wxButton(this, DIALOGS_MODELESS_BTN
, _T("Press me"));
1709 wxCheckBox
*check
= new wxCheckBox(this, wxID_ANY
, _T("Should be disabled"));
1712 sizerTop
->Add(btn
, 1, wxEXPAND
| wxALL
, 5);
1713 sizerTop
->Add(check
, 1, wxEXPAND
| wxALL
, 5);
1715 SetSizerAndFit(sizerTop
);
1718 void MyModelessDialog::OnButton(wxCommandEvent
& WXUNUSED(event
))
1720 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
1721 wxOK
| wxICON_INFORMATION
, this);
1724 void MyModelessDialog::OnClose(wxCloseEvent
& event
)
1726 if ( event
.CanVeto() )
1728 wxMessageBox(_T("Use the menu item to close this dialog"),
1729 _T("Modeless dialog"),
1730 wxOK
| wxICON_INFORMATION
, this);
1736 // ----------------------------------------------------------------------------
1738 // ----------------------------------------------------------------------------
1740 MyModalDialog::MyModalDialog(wxWindow
*parent
)
1741 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modal dialog")))
1743 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1745 m_btnModal
= new wxButton(this, wxID_ANY
, _T("&Modal dialog..."));
1746 m_btnModeless
= new wxButton(this, wxID_ANY
, _T("Mode&less dialog"));
1747 m_btnDelete
= new wxButton(this, wxID_ANY
, _T("&Delete button"));
1749 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _T("&Close"));
1750 sizerTop
->Add(m_btnModal
, 0, wxALIGN_CENTER
| wxALL
, 5);
1751 sizerTop
->Add(m_btnModeless
, 0, wxALIGN_CENTER
| wxALL
, 5);
1752 sizerTop
->Add(m_btnDelete
, 0, wxALIGN_CENTER
| wxALL
, 5);
1753 sizerTop
->Add(btnOk
, 0, wxALIGN_CENTER
| wxALL
, 5);
1755 SetSizerAndFit(sizerTop
);
1757 m_btnModal
->SetFocus();
1758 m_btnModal
->SetDefault();
1761 void MyModalDialog::OnButton(wxCommandEvent
& event
)
1763 if ( event
.GetEventObject() == m_btnDelete
)
1768 m_btnDelete
->Disable();
1770 else if ( event
.GetEventObject() == m_btnModal
)
1773 wxGetTextFromUser(_T("Dummy prompt"),
1774 _T("Modal dialog called from dialog"),
1775 wxEmptyString
, this);
1777 wxMessageBox(_T("Modal dialog called from dialog"));
1778 #endif // wxUSE_TEXTDLG
1780 else if ( event
.GetEventObject() == m_btnModeless
)
1782 (new MyModelessDialog(this))->Show();
1790 #endif // USE_MODAL_PRESENTATION
1792 // ----------------------------------------------------------------------------
1793 // StdButtonSizerDialog
1794 // ----------------------------------------------------------------------------
1796 StdButtonSizerDialog::StdButtonSizerDialog(wxWindow
*parent
)
1797 : wxDialog(parent
, wxID_ANY
, wxString(_T("StdButtonSizer dialog")),
1798 wxDefaultPosition
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
|wxRESIZE_BORDER
),
1799 m_buttonsSizer(NULL
)
1801 wxBoxSizer
*const sizerTop
= new wxBoxSizer(wxVERTICAL
);
1803 wxBoxSizer
*const sizer
= new wxBoxSizer(wxHORIZONTAL
);
1804 wxBoxSizer
*const sizerInside1
= new wxBoxSizer(wxVERTICAL
);
1806 m_chkboxAffirmativeButton
= new wxCheckBox(this, wxID_ANY
, _("Enable Affirmative Button"));
1808 wxStaticBoxSizer
*const sizer1
= new wxStaticBoxSizer(wxVERTICAL
, this, wxT("Affirmative Button"));
1810 m_radiobtnOk
= new wxRadioButton(this, wxID_ANY
, _("Ok"), wxDefaultPosition
, wxDefaultSize
, wxRB_GROUP
);
1811 m_radiobtnYes
= new wxRadioButton(this, wxID_ANY
, _("Yes"));
1813 wxBoxSizer
*const sizerInside2
= new wxBoxSizer(wxVERTICAL
);
1815 m_chkboxDismissButton
= new wxCheckBox(this, wxID_ANY
, _("Enable Dismiss Button"));
1817 wxStaticBoxSizer
*const sizer2
= new wxStaticBoxSizer(wxVERTICAL
, this, wxT("Dismiss Button"));
1819 m_radiobtnCancel
= new wxRadioButton(this, wxID_ANY
, _("Cancel"), wxDefaultPosition
, wxDefaultSize
, wxRB_GROUP
);
1820 m_radiobtnClose
= new wxRadioButton(this, wxID_ANY
, _("Close"));
1822 wxBoxSizer
*const sizer3
= new wxBoxSizer(wxHORIZONTAL
);
1824 m_chkboxNo
= new wxCheckBox(this, wxID_ANY
, _("No"));
1825 m_chkboxHelp
= new wxCheckBox(this, wxID_ANY
, _("Help"));
1826 m_chkboxApply
= new wxCheckBox(this, wxID_ANY
, _("Apply"));
1828 m_chkboxNoDefault
= new wxCheckBox(this, wxID_ANY
, wxT("No Default"));
1830 sizer1
->Add(m_radiobtnOk
, 0, wxALL
, 5);
1831 sizer1
->Add(m_radiobtnYes
, 0, wxALL
, 5);
1833 sizer
->Add(sizerInside1
, 0, 0, 0);
1834 sizerInside1
->Add(m_chkboxAffirmativeButton
, 0, wxALL
, 5);
1835 sizerInside1
->Add(sizer1
, 0, wxALL
, 5);
1836 sizerInside1
->SetItemMinSize(sizer1
, sizer1
->GetStaticBox()->GetBestSize()); // to prevent wrapping of static box label
1838 sizer2
->Add(m_radiobtnCancel
, 0, wxALL
, 5);
1839 sizer2
->Add(m_radiobtnClose
, 0, wxALL
, 5);
1841 sizer
->Add(sizerInside2
, 0, 0, 0);
1842 sizerInside2
->Add(m_chkboxDismissButton
, 0, wxALL
, 5);
1843 sizerInside2
->Add(sizer2
, 0, wxALL
, 5);
1844 sizerInside2
->SetItemMinSize(sizer2
, sizer2
->GetStaticBox()->GetBestSize()); // to prevent wrapping of static box label
1846 sizerTop
->Add(sizer
, 0, wxALL
, 5);
1848 sizer3
->Add(m_chkboxNo
, 0, wxALL
, 5);
1849 sizer3
->Add(m_chkboxHelp
, 0, wxALL
, 5);
1850 sizer3
->Add(m_chkboxApply
, 0, wxALL
, 5);
1852 sizerTop
->Add(sizer3
, 0, wxALL
, 5);
1854 sizerTop
->Add(m_chkboxNoDefault
, 0, wxLEFT
|wxRIGHT
, 10);
1856 EnableDisableControls();
1858 SetSizerAndFit(sizerTop
);
1864 void StdButtonSizerDialog::OnEvent(wxCommandEvent
& WXUNUSED(event
))
1868 m_buttonsSizer
->DeleteWindows();
1869 GetSizer()->Remove(m_buttonsSizer
);
1872 EnableDisableControls();
1875 unsigned long numButtons
= 0;
1877 if (m_chkboxAffirmativeButton
->IsChecked())
1879 if (m_radiobtnOk
->GetValue())
1884 else if (m_radiobtnYes
->GetValue())
1891 if (m_chkboxDismissButton
->IsChecked())
1893 if (m_radiobtnCancel
->GetValue())
1899 else if (m_radiobtnClose
->GetValue())
1907 if (m_chkboxApply
->IsChecked())
1913 if (m_chkboxNo
->IsChecked())
1919 if (m_chkboxHelp
->IsChecked())
1925 if (m_chkboxNoDefault
->IsChecked())
1927 flags
|= wxNO_DEFAULT
;
1930 m_buttonsSizer
= CreateStdDialogButtonSizer(flags
);
1931 GetSizer()->Add(m_buttonsSizer
, 0, wxGROW
|wxALL
, 5);
1934 GetSizer()->SetSizeHints(this);
1937 void StdButtonSizerDialog::EnableDisableControls()
1939 const bool affButtonEnabled
= m_chkboxAffirmativeButton
->IsChecked();
1941 m_radiobtnOk
->Enable(affButtonEnabled
);
1942 m_radiobtnYes
->Enable(affButtonEnabled
);
1944 const bool dismissButtonEnabled
= m_chkboxDismissButton
->IsChecked();
1946 m_radiobtnCancel
->Enable(dismissButtonEnabled
);
1947 m_radiobtnClose
->Enable(dismissButtonEnabled
);
1950 #if USE_SETTINGS_DIALOG
1951 // ----------------------------------------------------------------------------
1953 // ----------------------------------------------------------------------------
1955 IMPLEMENT_CLASS(SettingsDialog
, wxPropertySheetDialog
)
1957 BEGIN_EVENT_TABLE(SettingsDialog
, wxPropertySheetDialog
)
1960 SettingsDialog::SettingsDialog(wxWindow
* win
, int dialogType
)
1962 SetExtraStyle(wxDIALOG_EX_CONTEXTHELP
|wxWS_EX_VALIDATE_RECURSIVELY
);
1967 bool useToolBook
= (dialogType
== DIALOGS_PROPERTY_SHEET_TOOLBOOK
|| dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
);
1968 int resizeBorder
= wxRESIZE_BORDER
;
1976 int sheetStyle
= wxPROPSHEET_SHRINKTOFIT
;
1977 if (dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
)
1978 sheetStyle
|= wxPROPSHEET_BUTTONTOOLBOOK
;
1980 sheetStyle
|= wxPROPSHEET_TOOLBOOK
;
1982 SetSheetStyle(sheetStyle
);
1983 SetSheetInnerBorder(0);
1984 SetSheetOuterBorder(0);
1986 // create a dummy image list with a few icons
1987 const wxSize
imageSize(32, 32);
1989 m_imageList
= new wxImageList(imageSize
.GetWidth(), imageSize
.GetHeight());
1991 Add(wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_OTHER
, imageSize
));
1993 Add(wxArtProvider::GetIcon(wxART_QUESTION
, wxART_OTHER
, imageSize
));
1995 Add(wxArtProvider::GetIcon(wxART_WARNING
, wxART_OTHER
, imageSize
));
1997 Add(wxArtProvider::GetIcon(wxART_ERROR
, wxART_OTHER
, imageSize
));
2002 Create(win
, wxID_ANY
, _("Preferences"), wxDefaultPosition
, wxDefaultSize
,
2003 wxDEFAULT_DIALOG_STYLE
| (int)wxPlatform::IfNot(wxOS_WINDOWS_CE
, resizeBorder
)
2006 // If using a toolbook, also follow Mac style and don't create buttons
2008 CreateButtons(wxOK
| wxCANCEL
|
2009 (int)wxPlatform::IfNot(wxOS_WINDOWS_CE
, wxHELP
)
2012 wxBookCtrlBase
* notebook
= GetBookCtrl();
2013 notebook
->SetImageList(m_imageList
);
2015 wxPanel
* generalSettings
= CreateGeneralSettingsPage(notebook
);
2016 wxPanel
* aestheticSettings
= CreateAestheticSettingsPage(notebook
);
2018 notebook
->AddPage(generalSettings
, _("General"), true, tabImage1
);
2019 notebook
->AddPage(aestheticSettings
, _("Aesthetics"), false, tabImage2
);
2024 SettingsDialog::~SettingsDialog()
2029 wxPanel
* SettingsDialog::CreateGeneralSettingsPage(wxWindow
* parent
)
2031 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
2033 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
2034 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
2038 wxBoxSizer
* itemSizer3
= new wxBoxSizer( wxHORIZONTAL
);
2039 wxCheckBox
* checkBox3
= new wxCheckBox(panel
, ID_LOAD_LAST_PROJECT
, _("&Load last project on startup"), wxDefaultPosition
, wxDefaultSize
);
2040 itemSizer3
->Add(checkBox3
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2041 item0
->Add(itemSizer3
, 0, wxGROW
|wxALL
, 0);
2045 wxString autoSaveLabel
= _("&Auto-save every");
2046 wxString minsLabel
= _("mins");
2048 wxBoxSizer
* itemSizer12
= new wxBoxSizer( wxHORIZONTAL
);
2049 wxCheckBox
* checkBox12
= new wxCheckBox(panel
, ID_AUTO_SAVE
, autoSaveLabel
, wxDefaultPosition
, wxDefaultSize
);
2052 wxSpinCtrl
* spinCtrl12
= new wxSpinCtrl(panel
, ID_AUTO_SAVE_MINS
, wxEmptyString
,
2053 wxDefaultPosition
, wxSize(40, wxDefaultCoord
), wxSP_ARROW_KEYS
, 1, 60, 1);
2056 itemSizer12
->Add(checkBox12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2058 itemSizer12
->Add(spinCtrl12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2060 itemSizer12
->Add(new wxStaticText(panel
, wxID_STATIC
, minsLabel
), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2061 item0
->Add(itemSizer12
, 0, wxGROW
|wxALL
, 0);
2065 wxBoxSizer
* itemSizer8
= new wxBoxSizer( wxHORIZONTAL
);
2066 wxCheckBox
* checkBox6
= new wxCheckBox(panel
, ID_SHOW_TOOLTIPS
, _("Show &tooltips"), wxDefaultPosition
, wxDefaultSize
);
2067 itemSizer8
->Add(checkBox6
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2068 item0
->Add(itemSizer8
, 0, wxGROW
|wxALL
, 0);
2070 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
2072 panel
->SetSizerAndFit(topSizer
);
2077 wxPanel
* SettingsDialog::CreateAestheticSettingsPage(wxWindow
* parent
)
2079 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
2081 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
2082 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
2084 //// PROJECT OR GLOBAL
2085 wxString globalOrProjectChoices
[2];
2086 globalOrProjectChoices
[0] = _("&New projects");
2087 globalOrProjectChoices
[1] = _("&This project");
2089 wxRadioBox
* projectOrGlobal
= new wxRadioBox(panel
, ID_APPLY_SETTINGS_TO
, _("&Apply settings to:"),
2090 wxDefaultPosition
, wxDefaultSize
, 2, globalOrProjectChoices
);
2091 item0
->Add(projectOrGlobal
, 0, wxGROW
|wxALL
, 5);
2093 projectOrGlobal
->SetSelection(0);
2095 //// BACKGROUND STYLE
2096 wxArrayString backgroundStyleChoices
;
2097 backgroundStyleChoices
.Add(wxT("Colour"));
2098 backgroundStyleChoices
.Add(wxT("Image"));
2099 wxStaticBox
* staticBox3
= new wxStaticBox(panel
, wxID_ANY
, _("Background style:"));
2101 wxBoxSizer
* styleSizer
= new wxStaticBoxSizer( staticBox3
, wxVERTICAL
);
2102 item0
->Add(styleSizer
, 0, wxGROW
|wxALL
, 5);
2104 wxBoxSizer
* itemSizer2
= new wxBoxSizer( wxHORIZONTAL
);
2106 wxChoice
* choice2
= new wxChoice(panel
, ID_BACKGROUND_STYLE
, wxDefaultPosition
, wxDefaultSize
, backgroundStyleChoices
);
2108 itemSizer2
->Add(new wxStaticText(panel
, wxID_ANY
, _("&Window:")), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2109 itemSizer2
->Add(5, 5, 1, wxALL
, 0);
2110 itemSizer2
->Add(choice2
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2112 styleSizer
->Add(itemSizer2
, 0, wxGROW
|wxALL
, 5);
2115 //// FONT SIZE SELECTION
2117 wxStaticBox
* staticBox1
= new wxStaticBox(panel
, wxID_ANY
, _("Tile font size:"));
2118 wxBoxSizer
* itemSizer5
= new wxStaticBoxSizer( staticBox1
, wxHORIZONTAL
);
2120 wxSpinCtrl
* spinCtrl
= new wxSpinCtrl(panel
, ID_FONT_SIZE
, wxEmptyString
, wxDefaultPosition
,
2121 wxSize(80, wxDefaultCoord
));
2122 itemSizer5
->Add(spinCtrl
, 0, wxALL
|wxALIGN_CENTER_HORIZONTAL
|wxALIGN_CENTER_VERTICAL
, 5);
2124 item0
->Add(itemSizer5
, 0, wxGROW
|wxLEFT
|wxRIGHT
, 5);
2127 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
2128 topSizer
->AddSpacer(5);
2130 panel
->SetSizerAndFit(topSizer
);
2135 // ----------------------------------------------------------------------------
2136 // TestMessageBoxDialog
2137 // ----------------------------------------------------------------------------
2140 const TestMessageBoxDialog::BtnInfo
TestMessageBoxDialog::ms_btnInfo
[] =
2145 { wxCANCEL
, "&Cancel" },
2148 BEGIN_EVENT_TABLE(TestMessageBoxDialog
, wxDialog
)
2149 EVT_BUTTON(wxID_APPLY
, TestMessageBoxDialog::OnApply
)
2150 EVT_BUTTON(wxID_CLOSE
, TestMessageBoxDialog::OnClose
)
2153 TestMessageBoxDialog::TestMessageBoxDialog(wxWindow
*parent
)
2154 : wxDialog(parent
, wxID_ANY
, "Message Box Test Dialog",
2155 wxDefaultPosition
, wxDefaultSize
,
2156 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
2158 wxSizer
* const sizerTop
= new wxBoxSizer(wxVERTICAL
);
2160 // this sizer allows to configure the messages shown in the message box
2162 sizerMsgs
= new wxStaticBoxSizer(wxVERTICAL
, this, "&Messages");
2163 sizerMsgs
->Add(new wxStaticText(this, wxID_ANY
, "&Main message:"));
2164 m_textMsg
= new wxTextCtrl(this, wxID_ANY
, "Hello from a box!",
2165 wxDefaultPosition
, wxDefaultSize
,
2167 sizerMsgs
->Add(m_textMsg
, wxSizerFlags(1).Expand().Border(wxBOTTOM
));
2169 sizerMsgs
->Add(new wxStaticText(this, wxID_ANY
, "&Extended message:"));
2170 m_textExtMsg
= new wxTextCtrl(this, wxID_ANY
, "",
2171 wxDefaultPosition
, wxDefaultSize
,
2173 sizerMsgs
->Add(m_textExtMsg
, wxSizerFlags(1).Expand());
2175 sizerTop
->Add(sizerMsgs
, wxSizerFlags(1).Expand().Border());
2178 // this one is for configuring the buttons
2179 wxFlexGridSizer
* const sizerBtns
= new wxFlexGridSizer(2, 5, 5);
2180 sizerBtns
->AddGrowableCol(1);
2182 sizerBtns
->Add(new wxStaticText(this, wxID_ANY
, "Button(s)"));
2183 sizerBtns
->Add(new wxStaticText(this, wxID_ANY
, "Custom label"));
2185 for ( int n
= 0; n
< Btn_Max
; n
++ )
2187 m_buttons
[n
] = new wxCheckBox(this, wxID_ANY
, ms_btnInfo
[n
].name
);
2188 sizerBtns
->Add(m_buttons
[n
], wxSizerFlags().Centre().Left());
2190 m_labels
[n
] = new wxTextCtrl(this, wxID_ANY
);
2191 sizerBtns
->Add(m_labels
[n
], wxSizerFlags(1).Centre().Expand());
2193 m_labels
[n
]->Connect(wxEVT_UPDATE_UI
,
2194 wxUpdateUIEventHandler(
2195 TestMessageBoxDialog::OnUpdateLabelUI
),
2201 sizerBtnsBox
= new wxStaticBoxSizer(wxVERTICAL
, this, "&Buttons");
2202 sizerBtnsBox
->Add(sizerBtns
, wxSizerFlags(1).Expand());
2203 sizerTop
->Add(sizerBtnsBox
, wxSizerFlags().Expand().Border());
2207 const wxString icons
[] = {
2208 "&Information", "&Question", "&Warning", "&Error"
2211 m_icons
= new wxRadioBox(this, wxID_ANY
, "&Icon:",
2212 wxDefaultPosition
, wxDefaultSize
,
2213 WXSIZEOF(icons
), icons
);
2214 sizerTop
->Add(m_icons
, wxSizerFlags().Expand().Border());
2217 // miscellaneous other stuff
2219 sizerFlags
= new wxStaticBoxSizer(wxHORIZONTAL
, this, "&Other flags");
2221 m_chkNoDefault
= new wxCheckBox(this, wxID_ANY
, "Make \"No\" &default");
2222 m_chkNoDefault
->Connect(wxEVT_UPDATE_UI
,
2223 wxUpdateUIEventHandler(
2224 TestMessageBoxDialog::OnUpdateNoDefaultUI
),
2227 sizerFlags
->Add(m_chkNoDefault
, wxSizerFlags(1).Border());
2229 m_chkCentre
= new wxCheckBox(this, wxID_ANY
, "Centre on &parent");
2230 sizerFlags
->Add(m_chkCentre
, wxSizerFlags(1).Border());
2232 sizerTop
->Add(sizerFlags
, wxSizerFlags().Expand().Border());
2234 // finally buttons to show the resulting message box and close this dialog
2235 sizerTop
->Add(CreateStdDialogButtonSizer(wxAPPLY
| wxCLOSE
),
2236 wxSizerFlags().Right().Border());
2238 SetSizerAndFit(sizerTop
);
2240 m_buttons
[Btn_Ok
]->SetValue(true);
2243 void TestMessageBoxDialog::OnUpdateLabelUI(wxUpdateUIEvent
& event
)
2245 for ( int n
= 0; n
< Btn_Max
; n
++ )
2247 if ( event
.GetEventObject() == m_labels
[n
] )
2249 event
.Enable( m_buttons
[n
]->IsChecked() );
2254 wxFAIL_MSG( "called for unknown label" );
2257 void TestMessageBoxDialog::OnUpdateNoDefaultUI(wxUpdateUIEvent
& event
)
2259 event
.Enable( m_buttons
[Btn_No
]->IsChecked() );
2262 void TestMessageBoxDialog::OnApply(wxCommandEvent
& WXUNUSED(event
))
2266 for ( int n
= 0; n
< Btn_Max
; n
++ )
2268 if ( m_buttons
[n
]->IsChecked() )
2269 style
|= ms_btnInfo
[n
].flag
;
2272 switch ( m_icons
->GetSelection() )
2274 case 0: style
|= wxICON_INFORMATION
; break;
2275 case 1: style
|= wxICON_QUESTION
; break;
2276 case 2: style
|= wxICON_WARNING
; break;
2277 case 3: style
|= wxICON_ERROR
; break;
2280 if ( m_chkCentre
->IsChecked() )
2283 if ( m_chkNoDefault
->IsEnabled() && m_chkNoDefault
->IsChecked() )
2284 style
|= wxNO_DEFAULT
;
2287 wxMessageDialog
dlg(this, m_textMsg
->GetValue(), "Test Message Box",
2289 if ( !m_textExtMsg
->IsEmpty() )
2290 dlg
.SetExtendedMessage(m_textExtMsg
->GetValue());
2292 if ( style
& wxYES_NO
)
2294 if ( style
& wxCANCEL
)
2296 dlg
.SetYesNoCancelLabels(m_labels
[Btn_Yes
]->GetValue(),
2297 m_labels
[Btn_No
]->GetValue(),
2298 m_labels
[Btn_Cancel
]->GetValue());
2302 dlg
.SetYesNoLabels(m_labels
[Btn_Yes
]->GetValue(),
2303 m_labels
[Btn_No
]->GetValue());
2308 if ( style
& wxCANCEL
)
2310 dlg
.SetOKCancelLabels(m_labels
[Btn_Ok
]->GetValue(),
2311 m_labels
[Btn_Cancel
]->GetValue());
2315 dlg
.SetOKLabel(m_labels
[Btn_Ok
]->GetValue());
2322 void TestMessageBoxDialog::OnClose(wxCommandEvent
& WXUNUSED(event
))
2324 EndModal(wxID_CANCEL
);
2327 #endif // USE_SETTINGS_DIALOG
2331 // ----------------------------------------------------------------------------
2332 // custom log target
2333 // ----------------------------------------------------------------------------
2335 class MyLogGui
: public wxLogGui
2338 virtual void DoShowSingleLogMessage(const wxString
& message
,
2339 const wxString
& title
,
2342 wxMessageDialog
dlg(NULL
, message
, title
,
2343 wxOK
| wxCANCEL
| wxCANCEL_DEFAULT
| style
);
2344 dlg
.SetOKCancelLabels(wxID_COPY
, wxID_OK
);
2345 dlg
.SetExtendedMessage("Note that this is a custom log dialog.");
2350 wxLog
*MyAppTraits::CreateLogTarget()
2352 return new MyLogGui
;