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 #include "wx/rearrangectrl.h"
45 #if wxUSE_STARTUP_TIPS
46 #include "wx/tipdlg.h"
47 #endif // wxUSE_STARTUP_TIPS
50 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
51 #include "wx/datetime.h" // wxDateTime
54 #include "wx/progdlg.h"
55 #endif // wxUSE_PROGRESSDLG
58 #include "wx/aboutdlg.h"
60 // these headers are only needed for custom about dialog
61 #include "wx/statline.h"
62 #include "wx/generic/aboutdlgg.h"
63 #endif // wxUSE_ABOUTDLG
66 #include "wx/busyinfo.h"
67 #endif // wxUSE_BUSYINFO
70 #include "wx/numdlg.h"
71 #endif // wxUSE_NUMBERDLG
74 #include "wx/filedlg.h"
75 #endif // wxUSE_FILEDLG
78 #include "wx/dirdlg.h"
79 #endif // wxUSE_DIRDLG
82 #include "wx/fontdlg.h"
83 #endif // wxUSE_FONTDLG
86 #include "wx/fdrepdlg.h"
87 #endif // wxUSE_FINDREPLDLG
89 #include "wx/spinctrl.h"
90 #include "wx/propdlg.h"
94 #if USE_COLOURDLG_GENERIC
95 #include "wx/generic/colrdlgg.h"
96 #endif // USE_COLOURDLG_GENERIC
98 #if USE_DIRDLG_GENERIC
99 #include "wx/generic/dirdlgg.h"
100 #endif // USE_DIRDLG_GENERIC
102 #if USE_FILEDLG_GENERIC
103 #include "wx/generic/filedlgg.h"
104 #endif // USE_FILEDLG_GENERIC
106 #if USE_FONTDLG_GENERIC
107 #include "wx/generic/fontdlgg.h"
108 #endif // USE_FONTDLG_GENERIC
112 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
113 EVT_PAINT(MyCanvas::OnPaint
)
118 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
120 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
121 EVT_MENU(DIALOGS_MESSAGE_DIALOG
, MyFrame::MessageBoxDialog
)
122 EVT_MENU(DIALOGS_MESSAGE_BOX_WXINFO
, MyFrame::MessageBoxInfo
)
123 #endif // wxUSE_MSGDLG
125 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
126 EVT_MENU(DIALOGS_GET_COLOUR
, MyFrame::GetColour
)
127 #endif // wxUSE_COLOURDLG
130 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
131 #endif // wxUSE_FONTDLG
134 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
135 #endif // wxUSE_LOG_DIALOG
138 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
139 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
140 #endif // wxUSE_TEXTDLG
143 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
144 #endif // wxUSE_NUMBERDLG
147 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
148 EVT_MENU(DIALOGS_MULTI_CHOICE
, MyFrame::MultiChoice
)
149 #endif // wxUSE_CHOICEDLG
151 #if wxUSE_REARRANGECTRL
152 EVT_MENU(DIALOGS_REARRANGE
, MyFrame::Rearrange
)
153 #endif // wxUSE_REARRANGECTRL
156 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
157 EVT_MENU(DIALOGS_FILE_OPEN2
, MyFrame::FileOpen2
)
158 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
159 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
160 #endif // wxUSE_FILEDLG
162 #if USE_FILEDLG_GENERIC
163 EVT_MENU(DIALOGS_FILE_OPEN_GENERIC
, MyFrame::FileOpenGeneric
)
164 EVT_MENU(DIALOGS_FILES_OPEN_GENERIC
, MyFrame::FilesOpenGeneric
)
165 EVT_MENU(DIALOGS_FILE_SAVE_GENERIC
, MyFrame::FileSaveGeneric
)
166 #endif // USE_FILEDLG_GENERIC
169 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
170 EVT_MENU(DIALOGS_DIRNEW_CHOOSE
, MyFrame::DirChooseNew
)
171 #endif // wxUSE_DIRDLG
173 #if USE_MODAL_PRESENTATION
174 EVT_MENU(DIALOGS_MODAL
, MyFrame::ModalDlg
)
175 #endif // USE_MODAL_PRESENTATION
176 EVT_MENU(DIALOGS_MODELESS
, MyFrame::ModelessDlg
)
177 EVT_MENU(DIALOGS_CENTRE_SCREEN
, MyFrame::DlgCenteredScreen
)
178 EVT_MENU(DIALOGS_CENTRE_PARENT
, MyFrame::DlgCenteredParent
)
180 EVT_MENU(DIALOGS_MINIFRAME
, MyFrame::MiniFrame
)
181 #endif // wxUSE_MINIFRAME
182 EVT_MENU(DIALOGS_ONTOP
, MyFrame::DlgOnTop
)
184 #if wxUSE_STARTUP_TIPS
185 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
186 #endif // wxUSE_STARTUP_TIPS
188 #if USE_FONTDLG_GENERIC
189 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
190 #endif // USE_FONTDLG_GENERIC
192 #if USE_DIRDLG_GENERIC
193 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE
, MyFrame::GenericDirChoose
)
194 #endif // wxMSW || wxMAC
196 #if USE_COLOURDLG_GENERIC
197 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
198 #endif // USE_COLOURDLG_GENERIC
200 #if wxUSE_PROGRESSDLG
201 EVT_MENU(DIALOGS_PROGRESS
, MyFrame::ShowProgress
)
202 #endif // wxUSE_PROGRESSDLG
205 EVT_MENU(DIALOGS_ABOUTDLG_SIMPLE
, MyFrame::ShowSimpleAboutDialog
)
206 EVT_MENU(DIALOGS_ABOUTDLG_FANCY
, MyFrame::ShowFancyAboutDialog
)
207 EVT_MENU(DIALOGS_ABOUTDLG_FULL
, MyFrame::ShowFullAboutDialog
)
208 EVT_MENU(DIALOGS_ABOUTDLG_CUSTOM
, MyFrame::ShowCustomAboutDialog
)
209 #endif // wxUSE_ABOUTDLG
212 EVT_MENU(DIALOGS_BUSYINFO
, MyFrame::ShowBusyInfo
)
213 #endif // wxUSE_BUSYINFO
215 #if wxUSE_FINDREPLDLG
216 EVT_MENU(DIALOGS_FIND
, MyFrame::ShowFindDialog
)
217 EVT_MENU(DIALOGS_REPLACE
, MyFrame::ShowReplaceDialog
)
219 EVT_FIND(wxID_ANY
, MyFrame::OnFindDialog
)
220 EVT_FIND_NEXT(wxID_ANY
, MyFrame::OnFindDialog
)
221 EVT_FIND_REPLACE(wxID_ANY
, MyFrame::OnFindDialog
)
222 EVT_FIND_REPLACE_ALL(wxID_ANY
, MyFrame::OnFindDialog
)
223 EVT_FIND_CLOSE(wxID_ANY
, MyFrame::OnFindDialog
)
224 #endif // wxUSE_FINDREPLDLG
226 #if USE_SETTINGS_DIALOG
227 EVT_MENU(DIALOGS_PROPERTY_SHEET
, MyFrame::OnPropertySheet
)
228 EVT_MENU(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, MyFrame::OnPropertySheet
)
229 EVT_MENU(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, MyFrame::OnPropertySheet
)
230 #endif // USE_SETTINGS_DIALOG
232 EVT_MENU(DIALOGS_STANDARD_BUTTON_SIZER_DIALOG
, MyFrame::OnStandardButtonsSizerDialog
)
233 EVT_MENU(DIALOGS_TEST_DEFAULT_ACTION
, MyFrame::OnTestDefaultActionDialog
)
235 EVT_MENU(DIALOGS_REQUEST
, MyFrame::OnRequestUserAttention
)
236 #if wxUSE_NOTIFICATION_MESSAGE
237 EVT_MENU(DIALOGS_NOTIFY_AUTO
, MyFrame::OnNotifMsgAuto
)
238 EVT_MENU(DIALOGS_NOTIFY_SHOW
, MyFrame::OnNotifMsgShow
)
239 EVT_MENU(DIALOGS_NOTIFY_HIDE
, MyFrame::OnNotifMsgHide
)
240 #endif // wxUSE_NOTIFICATION_MESSAGE
242 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
245 #if USE_MODAL_PRESENTATION
247 BEGIN_EVENT_TABLE(MyModalDialog
, wxDialog
)
248 EVT_BUTTON(wxID_ANY
, MyModalDialog::OnButton
)
251 BEGIN_EVENT_TABLE(MyModelessDialog
, wxDialog
)
252 EVT_BUTTON(DIALOGS_MODELESS_BTN
, MyModelessDialog::OnButton
)
253 EVT_CLOSE(MyModelessDialog::OnClose
)
256 #endif // USE_MODAL_PRESENTATION
258 BEGIN_EVENT_TABLE(StdButtonSizerDialog
, wxDialog
)
259 EVT_CHECKBOX(wxID_ANY
, StdButtonSizerDialog::OnEvent
)
260 EVT_RADIOBUTTON(wxID_ANY
, StdButtonSizerDialog::OnEvent
)
263 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
265 // `Main program' equivalent, creating windows and returning main app frame
268 if ( !wxApp::OnInit() )
272 wxInitAllImageHandlers();
275 m_canvasTextColour
= *wxBLACK
;
276 m_canvasFont
= *wxNORMAL_FONT
;
278 // Create the main frame window
279 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets dialogs example"));
282 wxMenu
*menuDlg
= new wxMenu
;
284 menuDlg
->Append(DIALOGS_MESSAGE_BOX
, _T("&Message box\tCtrl-M"));
285 menuDlg
->Append(DIALOGS_MESSAGE_DIALOG
, _T("Message dialog\tShift-Ctrl-M"));
288 #if wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
290 wxMenu
*choices_menu
= new wxMenu
;
293 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR
, _T("&Choose bg colour"));
294 choices_menu
->Append(DIALOGS_GET_COLOUR
, _T("&Choose fg colour"));
295 #endif // wxUSE_COLOURDLG
298 choices_menu
->Append(DIALOGS_CHOOSE_FONT
, _T("Choose &font"));
299 #endif // wxUSE_FONTDLG
302 choices_menu
->Append(DIALOGS_SINGLE_CHOICE
, _T("&Single choice\tCtrl-C"));
303 choices_menu
->Append(DIALOGS_MULTI_CHOICE
, _T("M&ultiple choice\tCtrl-U"));
304 #endif // wxUSE_CHOICEDLG
306 #if wxUSE_REARRANGECTRL
307 choices_menu
->Append(DIALOGS_REARRANGE
, _T("&Rearrange dialog\tCtrl-R"));
308 #endif // wxUSE_REARRANGECTRL
310 #if USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
311 choices_menu
->AppendSeparator();
312 #endif // USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
314 #if USE_COLOURDLG_GENERIC
315 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, _T("&Choose colour (generic)"));
316 #endif // USE_COLOURDLG_GENERIC
318 #if USE_FONTDLG_GENERIC
319 choices_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, _T("Choose &font (generic)"));
320 #endif // USE_FONTDLG_GENERIC
322 menuDlg
->Append(wxID_ANY
,_T("&Choices and selectors"),choices_menu
);
323 #endif // wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
326 #if wxUSE_TEXTDLG || wxUSE_NUMBERDLG
328 wxMenu
*entry_menu
= new wxMenu
;
331 entry_menu
->Append(DIALOGS_TEXT_ENTRY
, _T("Text &entry\tCtrl-E"));
332 entry_menu
->Append(DIALOGS_PASSWORD_ENTRY
, _T("&Password entry\tCtrl-P"));
333 #endif // wxUSE_TEXTDLG
336 entry_menu
->Append(DIALOGS_NUM_ENTRY
, _T("&Numeric entry\tCtrl-N"));
337 #endif // wxUSE_NUMBERDLG
339 menuDlg
->Append(wxID_ANY
,_T("&Entry dialogs"),entry_menu
);
341 #endif // wxUSE_TEXTDLG || wxUSE_NUMBERDLG
346 wxMenu
*filedlg_menu
= new wxMenu
;
347 filedlg_menu
->Append(DIALOGS_FILE_OPEN
, _T("&Open file\tCtrl-O"));
348 filedlg_menu
->Append(DIALOGS_FILE_OPEN2
, _T("&Second open file\tCtrl-2"));
349 filedlg_menu
->Append(DIALOGS_FILES_OPEN
, _T("Open &files\tCtrl-Q"));
350 filedlg_menu
->Append(DIALOGS_FILE_SAVE
, _T("Sa&ve file\tCtrl-S"));
352 #if USE_FILEDLG_GENERIC
353 filedlg_menu
->AppendSeparator();
354 filedlg_menu
->Append(DIALOGS_FILE_OPEN_GENERIC
, _T("&Open file (generic)"));
355 filedlg_menu
->Append(DIALOGS_FILES_OPEN_GENERIC
, _T("Open &files (generic)"));
356 filedlg_menu
->Append(DIALOGS_FILE_SAVE_GENERIC
, _T("Sa&ve file (generic)"));
357 #endif // USE_FILEDLG_GENERIC
359 menuDlg
->Append(wxID_ANY
,_T("&File operations"),filedlg_menu
);
361 #endif // wxUSE_FILEDLG
364 wxMenu
*dir_menu
= new wxMenu
;
366 dir_menu
->Append(DIALOGS_DIR_CHOOSE
, _T("&Choose a directory\tCtrl-D"));
367 dir_menu
->Append(DIALOGS_DIRNEW_CHOOSE
, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
368 menuDlg
->Append(wxID_ANY
,_T("&Directory operations"),dir_menu
);
370 #if USE_DIRDLG_GENERIC
371 dir_menu
->AppendSeparator();
372 dir_menu
->Append(DIALOGS_GENERIC_DIR_CHOOSE
, _T("&Choose a directory (generic)"));
373 #endif // USE_DIRDLG_GENERIC
375 #endif // wxUSE_DIRDLG
378 #if wxUSE_STARTUP_TIPS || \
379 wxUSE_PROGRESSDLG || \
381 wxUSE_LOG_DIALOG || \
384 wxMenu
*info_menu
= new wxMenu
;
386 #if wxUSE_STARTUP_TIPS
387 info_menu
->Append(DIALOGS_TIP
, _T("&Tip of the day\tCtrl-T"));
388 #endif // wxUSE_STARTUP_TIPS
390 #if wxUSE_PROGRESSDLG
391 info_menu
->Append(DIALOGS_PROGRESS
, _T("Pro&gress dialog\tCtrl-G"));
392 #endif // wxUSE_PROGRESSDLG
395 info_menu
->Append(DIALOGS_BUSYINFO
, _T("&Busy info dialog\tCtrl-B"));
396 #endif // wxUSE_BUSYINFO
399 info_menu
->Append(DIALOGS_LOG_DIALOG
, _T("&Log dialog\tCtrl-L"));
400 #endif // wxUSE_LOG_DIALOG
403 info_menu
->Append(DIALOGS_MESSAGE_BOX_WXINFO
,
404 _T("&wxWidgets information\tCtrl-I"));
405 #endif // wxUSE_MSGDLG
407 menuDlg
->Append(wxID_ANY
,_T("&Informative dialogs"),info_menu
);
409 #endif // wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
412 #if wxUSE_FINDREPLDLG
413 wxMenu
*find_menu
= new wxMenu
;
414 find_menu
->AppendCheckItem(DIALOGS_FIND
, _T("&Find dialog\tCtrl-F"));
415 find_menu
->AppendCheckItem(DIALOGS_REPLACE
, _T("Find and &replace dialog\tShift-Ctrl-F"));
416 menuDlg
->Append(wxID_ANY
,_T("&Searching"),find_menu
);
417 #endif // wxUSE_FINDREPLDLG
419 wxMenu
*dialogs_menu
= new wxMenu
;
420 #if USE_MODAL_PRESENTATION
421 dialogs_menu
->Append(DIALOGS_MODAL
, _T("&Modal dialog\tCtrl-W"));
422 #endif // USE_MODAL_PRESENTATION
423 dialogs_menu
->AppendCheckItem(DIALOGS_MODELESS
, _T("Mode&less dialog\tCtrl-Z"));
424 dialogs_menu
->Append(DIALOGS_CENTRE_SCREEN
, _T("Centered on &screen\tShift-Ctrl-1"));
425 dialogs_menu
->Append(DIALOGS_CENTRE_PARENT
, _T("Centered on &parent\tShift-Ctrl-2"));
427 dialogs_menu
->Append(DIALOGS_MINIFRAME
, _T("&Mini frame"));
428 #endif // wxUSE_MINIFRAME
429 dialogs_menu
->Append(DIALOGS_ONTOP
, _T("Dialog staying on &top"));
430 menuDlg
->Append(wxID_ANY
, _T("&Generic dialogs"), dialogs_menu
);
432 #if USE_SETTINGS_DIALOG
433 wxMenu
*sheet_menu
= new wxMenu
;
434 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET
, _T("&Standard property sheet\tShift-Ctrl-P"));
435 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, _T("&Toolbook sheet\tShift-Ctrl-T"));
437 if (wxPlatformIs(wxPORT_MAC
))
438 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
441 sheet_menu->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
444 menuDlg
->Append(wxID_ANY
, _T("&Property sheets"), sheet_menu
);
445 #endif // USE_SETTINGS_DIALOG
447 wxMenu
*menuNotif
= new wxMenu
;
448 menuNotif
->Append(DIALOGS_REQUEST
, _T("&Request user attention\tCtrl-Shift-R"));
449 #if wxUSE_NOTIFICATION_MESSAGE
450 menuNotif
->Append(DIALOGS_NOTIFY_AUTO
, "&Automatically hidden notification");
451 menuNotif
->Append(DIALOGS_NOTIFY_SHOW
, "&Show manual notification");
452 menuNotif
->Append(DIALOGS_NOTIFY_HIDE
, "&Hide manual notification");
453 #endif // wxUSE_NOTIFICATION_MESSAGE
454 menuDlg
->AppendSubMenu(menuNotif
, "&User notifications");
456 menuDlg
->Append(DIALOGS_STANDARD_BUTTON_SIZER_DIALOG
, _T("&Standard Buttons Sizer Dialog"));
457 menuDlg
->Append(DIALOGS_TEST_DEFAULT_ACTION
, _T("&Test dialog default action"));
459 menuDlg
->AppendSeparator();
460 menuDlg
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"));
463 wxMenu
*menuHelp
= new wxMenu
;
464 menuHelp
->Append(DIALOGS_ABOUTDLG_SIMPLE
, _T("&About (simple)...\tF1"));
465 menuHelp
->Append(DIALOGS_ABOUTDLG_FANCY
, _T("About (&fancy)...\tShift-F1"));
466 menuHelp
->Append(DIALOGS_ABOUTDLG_FULL
, _T("About (f&ull)...\tCtrl-F1"));
467 menuHelp
->Append(DIALOGS_ABOUTDLG_CUSTOM
, _T("About (&custom)...\tCtrl-Shift-F1"));
468 #endif // wxUSE_ABOUTDLG
470 wxMenuBar
*menubar
= new wxMenuBar
;
471 menubar
->Append(menuDlg
, _T("&Dialogs"));
473 menubar
->Append(menuHelp
, _T("&Help"));
474 #endif // wxUSE_ABOUTDLG
476 frame
->SetMenuBar(menubar
);
478 myCanvas
= new MyCanvas(frame
);
479 myCanvas
->SetBackgroundColour(*wxWHITE
);
481 frame
->Centre(wxBOTH
);
491 // My frame constructor
492 MyFrame::MyFrame(wxWindow
*parent
,
493 const wxString
& title
)
494 : wxFrame(parent
, wxID_ANY
, title
)
498 #if USE_MODAL_PRESENTATION
499 m_dialog
= (MyModelessDialog
*)NULL
;
500 #endif // USE_MODAL_PRESENTATION
502 #if wxUSE_FINDREPLDLG
508 m_clrData
.SetChooseFull(true);
509 for (int i
= 0; i
< wxColourData::NUM_CUSTOM
; i
++)
511 unsigned char n
= i
*16;
512 m_clrData
.SetCustomColour(i
, wxColour(n
, n
, n
));
514 #endif // wxUSE_COLOURDLG
516 #if wxUSE_NOTIFICATION_MESSAGE
518 #endif // wxUSE_NOTIFICATION_MESSAGE
522 #endif // wxUSE_STATUSBAR
527 #if wxUSE_NOTIFICATION_MESSAGE
529 #endif // wxUSE_NOTIFICATION_MESSAGE
534 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
))
536 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
538 wxColourDialog
dialog(this, &m_clrData
);
539 dialog
.SetTitle(_("Please choose the background colour"));
540 if ( dialog
.ShowModal() == wxID_OK
)
542 m_clrData
= dialog
.GetColourData();
543 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
544 myCanvas
->ClearBackground();
549 void MyFrame::GetColour(wxCommandEvent
& WXUNUSED(event
))
551 wxColour clr
= wxGetColourFromUser
554 wxGetApp().m_canvasTextColour
,
555 "Please choose the foreground colour"
559 wxGetApp().m_canvasTextColour
= clr
;
562 //else: dialog cancelled by user
565 #endif // wxUSE_COLOURDLG
568 #if USE_COLOURDLG_GENERIC
569 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
571 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
573 //FIXME:TODO:This has no effect...
574 m_clrData
.SetChooseFull(true);
576 for (int i
= 0; i
< 16; i
++)
579 (unsigned char)(i
*16),
580 (unsigned char)(i
*16),
581 (unsigned char)(i
*16)
583 m_clrData
.SetCustomColour(i
, colour
);
586 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &m_clrData
);
587 if (dialog
->ShowModal() == wxID_OK
)
589 m_clrData
= dialog
->GetColourData();
590 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
591 myCanvas
->ClearBackground();
596 #endif // USE_COLOURDLG_GENERIC
599 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
602 data
.SetInitialFont(wxGetApp().m_canvasFont
);
603 data
.SetColour(wxGetApp().m_canvasTextColour
);
605 // you might also do this:
607 // wxFontDialog dialog;
608 // if ( !dialog.Create(this, data) { ... error ... }
610 wxFontDialog
dialog(this, data
);
612 if (dialog
.ShowModal() == wxID_OK
)
614 wxFontData retData
= dialog
.GetFontData();
615 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
616 wxGetApp().m_canvasTextColour
= retData
.GetColour();
619 //else: cancelled by the user, don't change the font
621 #endif // wxUSE_FONTDLG
623 #if USE_FONTDLG_GENERIC
624 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
627 data
.SetInitialFont(wxGetApp().m_canvasFont
);
628 data
.SetColour(wxGetApp().m_canvasTextColour
);
630 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, data
);
631 if (dialog
->ShowModal() == wxID_OK
)
633 wxFontData retData
= dialog
->GetFontData();
634 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
635 wxGetApp().m_canvasTextColour
= retData
.GetColour();
640 #endif // USE_FONTDLG_GENERIC
643 void MyFrame::LogDialog(wxCommandEvent
& WXUNUSED(event
))
645 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
646 // being flushed -- test it
649 wxLogMessage(wxT("This is some message - everything is ok so far."));
650 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
651 wxLogWarning(wxT("And then something went wrong!"));
653 // and if ~wxBusyCursor doesn't do it, then call it manually
657 wxLogError(wxT("Intermediary error handler decided to abort."));
658 wxLogError(wxT("The top level caller detected an unrecoverable error."));
660 wxLog::FlushActive();
662 wxLogMessage(wxT("And this is the same dialog but with only one message."));
664 #endif // wxUSE_LOG_DIALOG
667 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
))
669 wxMessageDialog
dialog(this,
670 "This is a message box\n"
671 "This is a long, long string to test out if the message box "
672 "is laid out properly.",
675 wxNO_DEFAULT
| wxYES_NO
| wxCANCEL
|
679 if ( dialog
.SetYesNoCancelLabels
686 extmsg
= "This platform supports custom button labels,\n"
687 "so you should see the descriptive labels below.";
691 extmsg
= "Custom button labels are not supported on this platform,\n"
692 "so the default \"Yes\"/\"No\"/\"Cancel\" buttons are used.";
694 dialog
.SetExtendedMessage(extmsg
);
696 switch ( dialog
.ShowModal() )
699 wxLogStatus(wxT("You pressed \"Yes\""));
703 wxLogStatus(wxT("You pressed \"No\""));
707 wxLogStatus(wxT("You pressed \"Cancel\""));
711 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
715 void MyFrame::MessageBoxDialog(wxCommandEvent
& WXUNUSED(event
))
717 TestMessageBoxDialog
dlg(this);
721 void MyFrame::MessageBoxInfo(wxCommandEvent
& WXUNUSED(event
))
723 ::wxInfoMessageBox(this);
725 #endif // wxUSE_MSGDLG
728 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
))
730 long res
= wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
731 _T("Even two rows of text."),
732 _T("Enter a number:"), _T("Numeric input test"),
739 msg
= _T("Invalid number entered or dialog cancelled.");
744 msg
.Printf(_T("You've entered %lu"), res
);
745 icon
= wxICON_INFORMATION
;
748 wxMessageBox(msg
, _T("Numeric test result"), wxOK
| icon
, this);
750 #endif // wxUSE_NUMBERDLG
753 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
755 wxString pwd
= wxGetPasswordFromUser(_T("Enter password:"),
756 _T("Password entry dialog"),
761 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd
.c_str()),
762 _T("Got password"), wxOK
| wxICON_INFORMATION
, this);
766 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
768 wxTextEntryDialog
dialog(this,
769 _T("This is a small sample\n")
770 _T("A long, long string to test out the text entrybox"),
771 _T("Please enter a string"),
775 if (dialog
.ShowModal() == wxID_OK
)
777 wxMessageBox(dialog
.GetValue(), _T("Got string"), wxOK
| wxICON_INFORMATION
, this);
780 #endif // wxUSE_TEXTDLG
783 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
785 const wxString choices
[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
787 wxSingleChoiceDialog
dialog(this,
788 _T("This is a small sample\n")
789 _T("A single-choice convenience dialog"),
790 _T("Please select a value"),
791 WXSIZEOF(choices
), choices
);
793 dialog
.SetSelection(2);
795 if (dialog
.ShowModal() == wxID_OK
)
797 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), _T("Got string"));
802 void MyFrame::MultiChoice(wxCommandEvent
& WXUNUSED(event
) )
804 const wxString choices
[] =
806 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
807 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
808 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
811 wxArrayInt selections
;
812 const int count
= wxGetSelectedChoices(selections
,
813 _T("This is a small sample\n")
814 _T("A multi-choice convenience dialog"),
815 _T("Please select a value"),
816 WXSIZEOF(choices
), choices
,
823 msg
= wxT("You did not select any items");
827 msg
.Printf(wxT("You selected %u items:\n"), (unsigned)count
);
828 for ( int n
= 0; n
< count
; n
++ )
830 msg
+= wxString::Format(wxT("\t%u: %u (%s)\n"),
831 (unsigned)n
, (unsigned)selections
[n
],
832 choices
[selections
[n
]].c_str());
839 #endif // wxUSE_CHOICEDLG
841 #if wxUSE_REARRANGECTRL
842 // custom rearrange dialog: it adds the possibility to rename an item to the
843 // base class functionality
844 class MyRearrangeDialog
: public wxRearrangeDialog
847 MyRearrangeDialog(wxWindow
*parent
,
849 wxArrayString
& labels
,
850 wxArrayString
& labelsOrig
)
854 "Configure the columns shown:",
855 "wxRearrangeDialog example",
861 m_labelsOrig(labelsOrig
)
865 wxPanel
* const panel
= new wxPanel(this);
866 wxSizer
* const sizer
= new wxBoxSizer(wxHORIZONTAL
);
868 m_labelOrig
= new wxStaticText(panel
, wxID_ANY
, "");
869 sizer
->Add(m_labelOrig
, wxSizerFlags().Centre().Border(wxRIGHT
));
871 m_text
= new wxTextCtrl(panel
, wxID_ANY
, "",
872 wxDefaultPosition
, wxDefaultSize
,
874 sizer
->Add(m_text
, wxSizerFlags().Centre().Border(wxRIGHT
));
876 sizer
->Add(new wxButton(panel
, wxID_APPLY
, "&Rename"),
877 wxSizerFlags().Centre());
879 panel
->SetSizer(sizer
);
881 // call this first to ensure that the controls have a reasonable best
882 // size before they're added
883 DoUpdateExtraControls(GetList()->GetSelection());
885 AddExtraControls(panel
);
888 // another customization not directly supported by the dialog: add a
890 wxWindow
* const btnOk
= FindWindow(wxID_OK
);
891 wxCHECK_RET( btnOk
, "no Ok button?" );
893 wxSizer
* const sizerBtns
= btnOk
->GetContainingSizer();
894 wxCHECK_RET( sizerBtns
, "no buttons sizer?" );
896 sizerBtns
->Add(new wxButton(this, wxID_RESET
, "&Reset all"),
897 wxSizerFlags().Border(wxLEFT
));
900 // call this instead of ShowModal() to update order and labels array in
901 // case the dialog was not cancelled
904 switch ( ShowModal() )
910 m_order
= GetOrder();
914 // order already reset
922 void OnSelChange(wxCommandEvent
& event
)
924 DoUpdateExtraControls(event
.GetInt());
927 void OnUpdateUIRename(wxUpdateUIEvent
& event
)
929 event
.Enable( CanRename() );
932 void OnRename(wxCommandEvent
& WXUNUSED(event
))
937 m_labels
[m_sel
] = m_text
->GetValue();
938 GetList()->SetString(m_sel
, m_labels
[m_sel
]);
941 void OnReset(wxCommandEvent
& WXUNUSED(event
))
943 // in a real program we should probably ask if the user really wants to
944 // do this but here we just go ahead and reset all columns labels and
945 // their order without confirmation
946 const unsigned count
= m_order
.size();
947 for ( unsigned n
= 0; n
< count
; n
++ )
950 m_labels
[n
] = m_labelsOrig
[n
];
953 EndModal(wxID_RESET
);
956 bool CanRename() const
958 // only allow renaming if the user modified the currently selected item
959 // text (which presupposes that we do have a current item)
960 return m_sel
!= wxNOT_FOUND
&& m_text
->GetValue() != m_labels
[m_sel
];
963 void DoUpdateExtraControls(int sel
)
967 if ( m_sel
== wxNOT_FOUND
)
969 m_labelOrig
->SetLabel("<no selection>");
973 else // have valid item
975 m_labelOrig
->SetLabelText(m_labelsOrig
[m_sel
]);
977 m_text
->SetValue(m_labels
[m_sel
]);
982 wxArrayString
& m_labels
,
986 wxStaticText
*m_labelOrig
;
989 DECLARE_EVENT_TABLE()
990 wxDECLARE_NO_COPY_CLASS(MyRearrangeDialog
);
993 BEGIN_EVENT_TABLE(MyRearrangeDialog
, wxRearrangeDialog
)
994 EVT_LISTBOX(wxID_ANY
, MyRearrangeDialog::OnSelChange
)
996 EVT_UPDATE_UI(wxID_APPLY
, MyRearrangeDialog::OnUpdateUIRename
)
998 EVT_TEXT_ENTER(wxID_ANY
, MyRearrangeDialog::OnRename
)
999 EVT_BUTTON(wxID_APPLY
, MyRearrangeDialog::OnRename
)
1000 EVT_BUTTON(wxID_RESET
, MyRearrangeDialog::OnReset
)
1003 void MyFrame::Rearrange(wxCommandEvent
& WXUNUSED(event
))
1005 // the arrays are static so that we preserve the items order between calls
1007 static wxArrayInt s_order
;
1008 static wxArrayString s_labels
,
1011 // initialize them on the first call
1012 if ( s_labelsOrig
.empty() )
1014 static const struct ItemInfo
1017 const char *labelOrig
;
1021 { "File name", "Name", 0 },
1022 { "File type", "Ext", 1 },
1023 { "Size", "Size", 2 },
1024 { "Creation time", "Ctime", ~3 }, // negated so hidden
1025 { "Last accessed", "Atime", ~4 },
1026 { "Last modified", "Mtime", 5 },
1029 s_order
.reserve(WXSIZEOF(items
));
1030 s_labels
.reserve(WXSIZEOF(items
));
1031 s_labelsOrig
.reserve(WXSIZEOF(items
));
1032 for ( unsigned n
= 0; n
< WXSIZEOF(items
); n
++ )
1034 const ItemInfo
& item
= items
[n
];
1035 s_order
.push_back(item
.order
);
1036 s_labels
.push_back(item
.label
);
1037 s_labelsOrig
.push_back(item
.labelOrig
);
1041 MyRearrangeDialog
dlg(this, s_order
, s_labels
, s_labelsOrig
);
1042 if ( !dlg
.Rearrange() )
1046 for ( unsigned n
= 0; n
< s_order
.size(); n
++ )
1048 columns
+= wxString::Format("\n %u: ", n
);
1049 int idx
= s_order
[n
];
1052 columns
+= "[hidden] ";
1056 columns
+= s_labels
[idx
];
1057 if ( s_labels
[idx
] != s_labelsOrig
[idx
] )
1059 columns
+= wxString::Format(" (original label: \"%s\")",
1064 wxLogMessage("The columns order now is:%s", columns
);
1066 #endif // wxUSE_REARRANGECTRL
1070 // panel with custom controls for file dialog
1071 class MyExtraPanel
: public wxPanel
1074 MyExtraPanel(wxWindow
*parent
);
1075 void OnCheckBox(wxCommandEvent
& event
) { m_btn
->Enable(event
.IsChecked()); }
1076 wxString
GetInfo() const
1078 return wxString::Format("checkbox value = %d", (int) m_cb
->GetValue());
1085 MyExtraPanel::MyExtraPanel(wxWindow
*parent
)
1088 m_btn
= new wxButton(this, -1, _T("Custom Button"));
1089 m_btn
->Enable(false);
1090 m_cb
= new wxCheckBox(this, -1, _T("Enable Custom Button"));
1091 m_cb
->Connect(wxID_ANY
, wxEVT_COMMAND_CHECKBOX_CLICKED
,
1092 wxCommandEventHandler(MyExtraPanel::OnCheckBox
), NULL
, this);
1093 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1094 sizerTop
->Add(m_cb
, wxSizerFlags().Centre().Border());
1095 sizerTop
->AddStretchSpacer();
1096 sizerTop
->Add(m_btn
, wxSizerFlags().Right().Border());
1097 SetSizerAndFit(sizerTop
);
1100 // a static method can be used instead of a function with most of compilers
1101 static wxWindow
* createMyExtraPanel(wxWindow
*parent
)
1103 return new MyExtraPanel(parent
);
1106 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
1111 _T("Testing open file dialog"),
1115 _T("C++ files (*.cpp)|*.cpp")
1117 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
1121 dialog
.SetExtraControlCreator(&createMyExtraPanel
);
1122 dialog
.CentreOnParent();
1123 dialog
.SetDirectory(wxGetHomeDir());
1125 if (dialog
.ShowModal() == wxID_OK
)
1128 wxWindow
* const extra
= dialog
.GetExtraControl();
1129 info
.Printf(_T("Full file name: %s\n")
1132 _T("Custom window: %s"),
1133 dialog
.GetPath().c_str(),
1134 dialog
.GetDirectory().c_str(),
1135 dialog
.GetFilename().c_str(),
1136 extra
? static_cast<MyExtraPanel
*>(extra
)->GetInfo()
1137 : wxString("None"));
1138 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
1139 dialog2
.ShowModal();
1143 // this shows how to take advantage of specifying a default extension in the
1144 // call to wxFileSelector: it is remembered after each new call and the next
1145 // one will use it by default
1146 void MyFrame::FileOpen2(wxCommandEvent
& WXUNUSED(event
) )
1148 static wxString s_extDef
;
1149 wxString path
= wxFileSelector(
1150 _T("Select the file to load"),
1151 wxEmptyString
, wxEmptyString
,
1155 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (%s)|%s"),
1156 wxFileSelectorDefaultWildcardStr
,
1157 wxFileSelectorDefaultWildcardStr
1159 wxFD_OPEN
|wxFD_CHANGE_DIR
|wxFD_PREVIEW
,
1166 // it is just a sample, would use wxSplitPath in real program
1167 s_extDef
= path
.AfterLast(_T('.'));
1169 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
1173 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
1175 wxString wildcards
=
1177 _T("C++ files (*.cpp)|*.cpp");
1181 _T("All files (%s)|%s|C++ files (*.cpp;*.h)|*.cpp;*.h"),
1182 wxFileSelectorDefaultWildcardStr
,
1183 wxFileSelectorDefaultWildcardStr
1186 wxFileDialog
dialog(this, _T("Testing open multiple file dialog"),
1187 wxEmptyString
, wxEmptyString
, wildcards
,
1188 wxFD_OPEN
|wxFD_MULTIPLE
);
1190 if (dialog
.ShowModal() == wxID_OK
)
1192 wxArrayString paths
, filenames
;
1194 dialog
.GetPaths(paths
);
1195 dialog
.GetFilenames(filenames
);
1198 size_t count
= paths
.GetCount();
1199 for ( size_t n
= 0; n
< count
; n
++ )
1201 s
.Printf(_T("File %d: %s (%s)\n"),
1202 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
1206 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
1209 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
1210 dialog2
.ShowModal();
1214 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
1216 wxFileDialog
dialog(this,
1217 _T("Testing save file dialog"),
1220 _T("Text files (*.txt)|*.txt|Document files (*.doc;*.ods)|*.doc;*.ods"),
1221 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
1223 dialog
.SetFilterIndex(1);
1225 if (dialog
.ShowModal() == wxID_OK
)
1227 wxLogMessage(_T("%s, filter %d"),
1228 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
1231 #endif // wxUSE_FILEDLG
1233 #if USE_FILEDLG_GENERIC
1234 void MyFrame::FileOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
1236 wxGenericFileDialog dialog
1239 _T("Testing open file dialog"),
1242 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
1245 dialog
.SetExtraControlCreator(&createMyExtraPanel
);
1246 dialog
.SetDirectory(wxGetHomeDir());
1248 if (dialog
.ShowModal() == wxID_OK
)
1251 info
.Printf(_T("Full file name: %s\n")
1254 dialog
.GetPath().c_str(),
1255 dialog
.GetDirectory().c_str(),
1256 dialog
.GetFilename().c_str());
1257 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
1258 dialog2
.ShowModal();
1262 void MyFrame::FilesOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
1264 // On PocketPC you can disable OK-only dialogs policy using system option
1265 int buttons
= wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel"));
1266 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), 1);
1268 wxString wildcards
= _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
1269 wxGenericFileDialog
dialog(this, _T("Testing open multiple file dialog"),
1270 wxEmptyString
, wxEmptyString
, wildcards
,
1273 if (dialog
.ShowModal() == wxID_OK
)
1275 wxArrayString paths
, filenames
;
1277 dialog
.GetPaths(paths
);
1278 dialog
.GetFilenames(filenames
);
1281 size_t count
= paths
.GetCount();
1282 for ( size_t n
= 0; n
< count
; n
++ )
1284 s
.Printf(_T("File %d: %s (%s)\n"),
1285 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
1289 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
1292 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
1293 dialog2
.ShowModal();
1296 // restore system option
1297 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), buttons
);
1300 void MyFrame::FileSaveGeneric(wxCommandEvent
& WXUNUSED(event
) )
1302 wxGenericFileDialog
dialog(this,
1303 _T("Testing save file dialog"),
1306 _T("Text files (*.txt)|*.txt|Document files (*.doc;*.ods)|*.doc;*.ods"),
1307 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
1309 dialog
.SetFilterIndex(1);
1311 if (dialog
.ShowModal() == wxID_OK
)
1313 wxLogMessage(_T("%s, filter %d"),
1314 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
1317 #endif // USE_FILEDLG_GENERIC
1320 void MyFrame::DoDirChoose(int style
)
1322 // pass some initial dir to wxDirDialog
1324 wxGetHomeDir(&dirHome
);
1326 wxDirDialog
dialog(this, _T("Testing directory picker"), dirHome
, style
);
1328 if (dialog
.ShowModal() == wxID_OK
)
1330 wxLogMessage(_T("Selected path: %s"), dialog
.GetPath().c_str());
1334 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
1336 DoDirChoose(wxDD_DEFAULT_STYLE
| wxDD_DIR_MUST_EXIST
);
1339 void MyFrame::DirChooseNew(wxCommandEvent
& WXUNUSED(event
) )
1341 DoDirChoose(wxDD_DEFAULT_STYLE
& ~wxDD_DIR_MUST_EXIST
);
1343 #endif // wxUSE_DIRDLG
1345 #if USE_DIRDLG_GENERIC
1346 void MyFrame::GenericDirChoose(wxCommandEvent
& WXUNUSED(event
) )
1348 // pass some initial dir to wxDirDialog
1350 wxGetHomeDir(&dirHome
);
1352 wxGenericDirDialog
dialog(this, _T("Testing generic directory picker"), dirHome
);
1354 if (dialog
.ShowModal() == wxID_OK
)
1356 wxMessageDialog
dialog2(this, dialog
.GetPath(), _T("Selected path"));
1357 dialog2
.ShowModal();
1360 #endif // USE_DIRDLG_GENERIC
1362 #if USE_MODAL_PRESENTATION
1363 void MyFrame::ModalDlg(wxCommandEvent
& WXUNUSED(event
))
1365 MyModalDialog
dlg(this);
1368 #endif // USE_MODAL_PRESENTATION
1370 void MyFrame::ModelessDlg(wxCommandEvent
& event
)
1372 bool show
= GetMenuBar()->IsChecked(event
.GetId());
1378 m_dialog
= new MyModelessDialog(this);
1381 m_dialog
->Show(true);
1385 // If m_dialog is NULL, then possibly the system
1386 // didn't report the checked menu item status correctly.
1387 // It should be true just after the menu item was selected,
1388 // if there was no modeless dialog yet.
1390 wxASSERT( m_dialog
!= NULL
);
1396 void MyFrame::DlgCenteredScreen(wxCommandEvent
& WXUNUSED(event
))
1398 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on screen"),
1399 wxDefaultPosition
, wxSize(200, 100));
1400 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1401 dlg
.CentreOnScreen();
1405 void MyFrame::DlgCenteredParent(wxCommandEvent
& WXUNUSED(event
))
1407 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on parent"),
1408 wxDefaultPosition
, wxSize(200, 100));
1409 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1410 dlg
.CentreOnParent();
1415 void MyFrame::MiniFrame(wxCommandEvent
& WXUNUSED(event
))
1417 wxFrame
*frame
= new wxMiniFrame(this, wxID_ANY
, _T("Mini frame"),
1418 wxDefaultPosition
, wxSize(300, 100),
1419 wxCAPTION
| wxCLOSE_BOX
);
1420 new wxStaticText(frame
,
1422 _T("Mini frames have slightly different appearance"),
1424 new wxStaticText(frame
,
1426 _T("from the normal frames but that's the only difference."),
1429 frame
->CentreOnParent();
1432 #endif // wxUSE_MINIFRAME
1434 void MyFrame::DlgOnTop(wxCommandEvent
& WXUNUSED(event
))
1436 wxDialog
dlg(this, wxID_ANY
, _T("Dialog staying on top of other windows"),
1437 wxDefaultPosition
, wxSize(300, 100),
1438 wxDEFAULT_DIALOG_STYLE
| wxSTAY_ON_TOP
);
1439 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1443 #if wxUSE_STARTUP_TIPS
1444 void MyFrame::ShowTip(wxCommandEvent
& WXUNUSED(event
))
1446 static size_t s_index
= (size_t)-1;
1448 if ( s_index
== (size_t)-1 )
1452 // this is completely bogus, we don't know how many lines are there
1453 // in the file, but who cares, it's a demo only...
1454 s_index
= rand() % 5;
1457 wxTipProvider
*tipProvider
= wxCreateFileTipProvider(_T("tips.txt"), s_index
);
1459 bool showAtStartup
= wxShowTip(this, tipProvider
);
1461 if ( showAtStartup
)
1463 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
1464 wxOK
| wxICON_INFORMATION
, this);
1467 s_index
= tipProvider
->GetCurrentTip();
1470 #endif // wxUSE_STARTUP_TIPS
1472 #if USE_SETTINGS_DIALOG
1473 void MyFrame::OnPropertySheet(wxCommandEvent
& event
)
1475 SettingsDialog
dialog(this, event
.GetId());
1478 #endif // USE_SETTINGS_DIALOG
1480 void MyFrame::OnRequestUserAttention(wxCommandEvent
& WXUNUSED(event
))
1482 wxLogStatus(_T("Sleeping for 3 seconds to allow you to switch to another window"));
1486 RequestUserAttention(wxUSER_ATTENTION_ERROR
);
1489 #if wxUSE_NOTIFICATION_MESSAGE
1491 void MyFrame::OnNotifMsgAuto(wxCommandEvent
& WXUNUSED(event
))
1493 if ( !wxNotificationMessage
1495 "Automatic Notification",
1496 "Nothing important has happened\n"
1497 "this notification will disappear soon."
1500 wxLogStatus("Failed to show notification message");
1504 void MyFrame::OnNotifMsgShow(wxCommandEvent
& WXUNUSED(event
))
1508 m_notifMsg
= new wxNotificationMessage
1510 "wxWidgets Manual Notification",
1511 "You can hide this notification from the menu",
1516 if ( !m_notifMsg
->Show(wxNotificationMessage::Timeout_Never
) )
1518 wxLogStatus("Failed to show manual notification message");
1522 void MyFrame::OnNotifMsgHide(wxCommandEvent
& WXUNUSED(event
))
1526 if ( !m_notifMsg
->Close() )
1527 wxLogStatus("Failed to hide manual notification message");
1531 #endif // wxUSE_NOTIFICATION_MESSAGE
1533 void MyFrame::OnStandardButtonsSizerDialog(wxCommandEvent
& WXUNUSED(event
))
1535 StdButtonSizerDialog
dialog(this);
1539 // TestDefaultAction
1541 #define ID_CATCH_LISTBOX_DCLICK 100
1542 #define ID_LISTBOX 101
1544 BEGIN_EVENT_TABLE(TestDefaultActionDialog
, wxDialog
)
1545 EVT_CHECKBOX(ID_CATCH_LISTBOX_DCLICK
, TestDefaultActionDialog::OnCatchListBoxDClick
)
1546 EVT_LISTBOX_DCLICK(ID_LISTBOX
, TestDefaultActionDialog::OnListBoxDClick
)
1549 TestDefaultActionDialog::TestDefaultActionDialog( wxWindow
*parent
) :
1550 wxDialog( parent
, -1, "Test default action" )
1552 m_catchListBoxDClick
= false;
1554 wxBoxSizer
*main_sizer
= new wxBoxSizer( wxVERTICAL
);
1556 wxFlexGridSizer
*grid_sizer
= new wxFlexGridSizer( 2, 5, 5 );
1559 wxListBox
*listbox
= new wxListBox( this, ID_LISTBOX
);
1560 listbox
->Append( "String 1" );
1561 listbox
->Append( "String 2" );
1562 listbox
->Append( "String 3" );
1563 listbox
->Append( "String 4" );
1564 grid_sizer
->Add( listbox
);
1565 #endif // wxUSE_LISTBOX
1567 grid_sizer
->Add( new wxCheckBox( this, ID_CATCH_LISTBOX_DCLICK
, "Catch DoubleClick from wxListBox" ), 0, wxALIGN_CENTRE_VERTICAL
);
1569 grid_sizer
->Add( new wxTextCtrl( this, -1, "", wxDefaultPosition
, wxSize(80,-1), 0 ), 0, wxALIGN_CENTRE_VERTICAL
);
1570 grid_sizer
->Add( new wxStaticText( this, -1, "wxTextCtrl without wxTE_PROCESS_ENTER" ), 0, wxALIGN_CENTRE_VERTICAL
);
1572 grid_sizer
->Add( new wxTextCtrl( this, -1, "", wxDefaultPosition
, wxSize(80,-1), wxTE_PROCESS_ENTER
), 0, wxALIGN_CENTRE_VERTICAL
);
1573 grid_sizer
->Add( new wxStaticText( this, -1, "wxTextCtrl with wxTE_PROCESS_ENTER" ), 0, wxALIGN_CENTRE_VERTICAL
);
1575 main_sizer
->Add( grid_sizer
, 0, wxALL
, 10 );
1577 wxSizer
*button_sizer
= CreateSeparatedButtonSizer( wxOK
|wxCANCEL
);
1579 main_sizer
->Add( button_sizer
, 0, wxALL
|wxGROW
, 5 );
1581 SetSizerAndFit( main_sizer
);
1584 void TestDefaultActionDialog::OnListBoxDClick(wxCommandEvent
& event
)
1586 event
.Skip( !m_catchListBoxDClick
);
1589 void TestDefaultActionDialog::OnCatchListBoxDClick(wxCommandEvent
& WXUNUSED(event
))
1591 m_catchListBoxDClick
= !m_catchListBoxDClick
;
1594 void MyFrame::OnTestDefaultActionDialog(wxCommandEvent
& WXUNUSED(event
))
1596 TestDefaultActionDialog
dialog( this );
1600 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
1605 #if wxUSE_PROGRESSDLG
1607 void MyFrame::ShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1609 static const int max
= 100;
1611 wxProgressDialog
dialog(_T("Progress dialog example"),
1612 _T("An informative message"),
1618 // wxPD_AUTO_HIDE | -- try this as well
1620 wxPD_ESTIMATED_TIME
|
1622 | wxPD_SMOOTH
// - makes indeterminate mode bar on WinXP very small
1626 for ( int i
= 0; i
<= max
; i
++ )
1632 // test both modes of wxProgressDialog behaviour: start in
1633 // indeterminate mode but switch to the determinate one later
1634 const bool determinate
= i
> max
/2;
1638 msg
= _T("That's all, folks!");
1640 else if ( !determinate
)
1642 msg
= _T("Testing indeterminate mode");
1644 else if ( determinate
)
1646 msg
= _T("Now in standard determinate mode");
1649 // will be set to true if "Skip" button was pressed
1653 cont
= dialog
.Update(i
, msg
, &skip
);
1657 cont
= dialog
.Pulse(msg
, &skip
);
1660 // each skip will move progress about quarter forward
1666 if ( wxMessageBox(_T("Do you really want to cancel?"),
1667 _T("Progress dialog question"), // caption
1668 wxYES_NO
| wxICON_QUESTION
) == wxYES
)
1678 wxLogStatus(wxT("Progress dialog aborted!"));
1682 wxLogStatus(wxT("Countdown from %d finished"), max
);
1686 #endif // wxUSE_PROGRESSDLG
1690 static void InitAboutInfoMinimal(wxAboutDialogInfo
& info
)
1692 info
.SetName(_T("Dialogs Sample"));
1693 info
.SetVersion(wxVERSION_NUM_DOT_STRING_T
);
1694 info
.SetDescription(_T("This sample shows different wxWidgets dialogs"));
1695 info
.SetCopyright(_T("(C) 1998-2006 wxWidgets dev team"));
1696 info
.AddDeveloper(_T("Vadim Zeitlin"));
1699 static void InitAboutInfoWebsite(wxAboutDialogInfo
& info
)
1701 InitAboutInfoMinimal(info
);
1703 info
.SetWebSite(_T("http://www.wxwidgets.org/"), _T("wxWidgets web site"));
1706 static void InitAboutInfoAll(wxAboutDialogInfo
& info
)
1708 InitAboutInfoWebsite(info
);
1710 // we can add a second developer
1711 info
.AddDeveloper(_T("A.N. Other"));
1713 // or we can add several persons at once like this
1714 static const wxChar
*docwriters
[] =
1716 _T("First D. Writer"),
1720 info
.SetDocWriters(wxArrayString(WXSIZEOF(docwriters
), docwriters
));
1721 info
.SetLicence(wxString::FromAscii(
1722 " wxWindows Library Licence, Version 3.1\n"
1723 " ======================================\n"
1725 " Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al\n"
1727 " Everyone is permitted to copy and distribute verbatim copies\n"
1728 " of this licence document, but changing it is not allowed.\n"
1730 " WXWINDOWS LIBRARY LICENCE\n"
1731 " TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n"
1733 " ...and so on and so forth...\n"
1736 info
.AddTranslator(_T("Wun Ngo Wen (Martian)"));
1739 void MyFrame::ShowSimpleAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1741 wxAboutDialogInfo info
;
1742 InitAboutInfoMinimal(info
);
1744 wxAboutBox(info
, this);
1747 void MyFrame::ShowFancyAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1749 wxAboutDialogInfo info
;
1750 InitAboutInfoWebsite(info
);
1752 wxAboutBox(info
, this);
1755 void MyFrame::ShowFullAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1757 wxAboutDialogInfo info
;
1758 InitAboutInfoAll(info
);
1760 wxAboutBox(info
, this);
1763 // a trivial example of a custom dialog class
1764 class MyAboutDialog
: public wxGenericAboutDialog
1767 MyAboutDialog(const wxAboutDialogInfo
& info
, wxWindow
* parent
)
1769 Create(info
, parent
);
1772 // add some custom controls
1773 virtual void DoAddCustomControls()
1775 AddControl(new wxStaticLine(this), wxSizerFlags().Expand());
1776 AddText(_T("Some custom text"));
1777 AddControl(new wxStaticLine(this), wxSizerFlags().Expand());
1781 void MyFrame::ShowCustomAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1783 wxAboutDialogInfo info
;
1784 InitAboutInfoAll(info
);
1786 MyAboutDialog
dlg(info
, this);
1790 #endif // wxUSE_ABOUTDLG
1794 void MyFrame::ShowBusyInfo(wxCommandEvent
& WXUNUSED(event
))
1796 wxWindowDisabler disableAll
;
1798 wxBusyInfo
info(_T("Working, please wait..."), this);
1800 for ( int i
= 0; i
< 18; i
++ )
1810 #endif // wxUSE_BUSYINFO
1812 #if wxUSE_FINDREPLDLG
1814 void MyFrame::ShowReplaceDialog( wxCommandEvent
& WXUNUSED(event
) )
1818 delete m_dlgReplace
;
1819 m_dlgReplace
= NULL
;
1823 m_dlgReplace
= new wxFindReplaceDialog
1827 _T("Find and replace dialog"),
1831 m_dlgReplace
->Show(true);
1835 void MyFrame::ShowFindDialog( wxCommandEvent
& WXUNUSED(event
) )
1844 m_dlgFind
= new wxFindReplaceDialog
1853 m_dlgFind
->Show(true);
1857 static wxString
DecodeFindDialogEventFlags(int flags
)
1860 str
<< (flags
& wxFR_DOWN
? _T("down") : _T("up")) << _T(", ")
1861 << (flags
& wxFR_WHOLEWORD
? _T("whole words only, ") : _T(""))
1862 << (flags
& wxFR_MATCHCASE
? _T("") : _T("not "))
1863 << _T("case sensitive");
1868 void MyFrame::OnFindDialog(wxFindDialogEvent
& event
)
1870 wxEventType type
= event
.GetEventType();
1872 if ( type
== wxEVT_COMMAND_FIND
|| type
== wxEVT_COMMAND_FIND_NEXT
)
1874 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
1875 type
== wxEVT_COMMAND_FIND_NEXT
? wxT("next ") : wxT(""),
1876 event
.GetFindString().c_str(),
1877 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1879 else if ( type
== wxEVT_COMMAND_FIND_REPLACE
||
1880 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
)
1882 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
1883 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
? _T("all ") : wxT(""),
1884 event
.GetFindString().c_str(),
1885 event
.GetReplaceString().c_str(),
1886 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1888 else if ( type
== wxEVT_COMMAND_FIND_CLOSE
)
1890 wxFindReplaceDialog
*dlg
= event
.GetDialog();
1894 if ( dlg
== m_dlgFind
)
1897 idMenu
= DIALOGS_FIND
;
1900 else if ( dlg
== m_dlgReplace
)
1902 txt
= _T("Replace");
1903 idMenu
= DIALOGS_REPLACE
;
1904 m_dlgReplace
= NULL
;
1908 txt
= _T("Unknown");
1911 wxFAIL_MSG( _T("unexpected event") );
1914 wxLogMessage(wxT("%s dialog is being closed."), txt
);
1916 if ( idMenu
!= wxID_ANY
)
1918 GetMenuBar()->Check(idMenu
, false);
1925 wxLogError(wxT("Unknown find dialog event!"));
1929 #endif // wxUSE_FINDREPLDLG
1931 // ----------------------------------------------------------------------------
1933 // ----------------------------------------------------------------------------
1935 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
1938 dc
.SetFont(wxGetApp().m_canvasFont
);
1939 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
1940 dc
.SetBackgroundMode(wxTRANSPARENT
);
1942 _T("wxWidgets common dialogs")
1943 #if !defined(__SMARTPHONE__)
1944 _T(" test application")
1949 #if USE_MODAL_PRESENTATION
1951 // ----------------------------------------------------------------------------
1953 // ----------------------------------------------------------------------------
1955 MyModelessDialog::MyModelessDialog(wxWindow
*parent
)
1956 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modeless dialog")))
1958 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
1960 wxButton
*btn
= new wxButton(this, DIALOGS_MODELESS_BTN
, _T("Press me"));
1961 wxCheckBox
*check
= new wxCheckBox(this, wxID_ANY
, _T("Should be disabled"));
1964 sizerTop
->Add(btn
, 1, wxEXPAND
| wxALL
, 5);
1965 sizerTop
->Add(check
, 1, wxEXPAND
| wxALL
, 5);
1967 SetSizerAndFit(sizerTop
);
1970 void MyModelessDialog::OnButton(wxCommandEvent
& WXUNUSED(event
))
1972 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
1973 wxOK
| wxICON_INFORMATION
, this);
1976 void MyModelessDialog::OnClose(wxCloseEvent
& event
)
1978 if ( event
.CanVeto() )
1980 wxMessageBox(_T("Use the menu item to close this dialog"),
1981 _T("Modeless dialog"),
1982 wxOK
| wxICON_INFORMATION
, this);
1988 // ----------------------------------------------------------------------------
1990 // ----------------------------------------------------------------------------
1992 MyModalDialog::MyModalDialog(wxWindow
*parent
)
1993 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modal dialog")))
1995 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1997 m_btnModal
= new wxButton(this, wxID_ANY
, _T("&Modal dialog..."));
1998 m_btnModeless
= new wxButton(this, wxID_ANY
, _T("Mode&less dialog"));
1999 m_btnDelete
= new wxButton(this, wxID_ANY
, _T("&Delete button"));
2001 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _T("&Close"));
2002 sizerTop
->Add(m_btnModal
, 0, wxALIGN_CENTER
| wxALL
, 5);
2003 sizerTop
->Add(m_btnModeless
, 0, wxALIGN_CENTER
| wxALL
, 5);
2004 sizerTop
->Add(m_btnDelete
, 0, wxALIGN_CENTER
| wxALL
, 5);
2005 sizerTop
->Add(btnOk
, 0, wxALIGN_CENTER
| wxALL
, 5);
2007 SetSizerAndFit(sizerTop
);
2009 m_btnModal
->SetFocus();
2010 m_btnModal
->SetDefault();
2013 void MyModalDialog::OnButton(wxCommandEvent
& event
)
2015 if ( event
.GetEventObject() == m_btnDelete
)
2020 m_btnDelete
->Disable();
2022 else if ( event
.GetEventObject() == m_btnModal
)
2025 wxGetTextFromUser(_T("Dummy prompt"),
2026 _T("Modal dialog called from dialog"),
2027 wxEmptyString
, this);
2029 wxMessageBox(_T("Modal dialog called from dialog"));
2030 #endif // wxUSE_TEXTDLG
2032 else if ( event
.GetEventObject() == m_btnModeless
)
2034 (new MyModelessDialog(this))->Show();
2042 #endif // USE_MODAL_PRESENTATION
2044 // ----------------------------------------------------------------------------
2045 // StdButtonSizerDialog
2046 // ----------------------------------------------------------------------------
2048 StdButtonSizerDialog::StdButtonSizerDialog(wxWindow
*parent
)
2049 : wxDialog(parent
, wxID_ANY
, wxString(_T("StdButtonSizer dialog")),
2050 wxDefaultPosition
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
|wxRESIZE_BORDER
),
2051 m_buttonsSizer(NULL
)
2053 wxBoxSizer
*const sizerTop
= new wxBoxSizer(wxVERTICAL
);
2055 wxBoxSizer
*const sizer
= new wxBoxSizer(wxHORIZONTAL
);
2056 wxBoxSizer
*const sizerInside1
= new wxBoxSizer(wxVERTICAL
);
2058 m_chkboxAffirmativeButton
= new wxCheckBox(this, wxID_ANY
, _("Enable Affirmative Button"));
2060 wxStaticBoxSizer
*const sizer1
= new wxStaticBoxSizer(wxVERTICAL
, this, wxT("Affirmative Button"));
2062 m_radiobtnOk
= new wxRadioButton(this, wxID_ANY
, _("Ok"), wxDefaultPosition
, wxDefaultSize
, wxRB_GROUP
);
2063 m_radiobtnYes
= new wxRadioButton(this, wxID_ANY
, _("Yes"));
2065 wxBoxSizer
*const sizerInside2
= new wxBoxSizer(wxVERTICAL
);
2067 m_chkboxDismissButton
= new wxCheckBox(this, wxID_ANY
, _("Enable Dismiss Button"));
2069 wxStaticBoxSizer
*const sizer2
= new wxStaticBoxSizer(wxVERTICAL
, this, wxT("Dismiss Button"));
2071 m_radiobtnCancel
= new wxRadioButton(this, wxID_ANY
, _("Cancel"), wxDefaultPosition
, wxDefaultSize
, wxRB_GROUP
);
2072 m_radiobtnClose
= new wxRadioButton(this, wxID_ANY
, _("Close"));
2074 wxBoxSizer
*const sizer3
= new wxBoxSizer(wxHORIZONTAL
);
2076 m_chkboxNo
= new wxCheckBox(this, wxID_ANY
, _("No"));
2077 m_chkboxHelp
= new wxCheckBox(this, wxID_ANY
, _("Help"));
2078 m_chkboxApply
= new wxCheckBox(this, wxID_ANY
, _("Apply"));
2080 m_chkboxNoDefault
= new wxCheckBox(this, wxID_ANY
, wxT("No Default"));
2082 sizer1
->Add(m_radiobtnOk
, 0, wxALL
, 5);
2083 sizer1
->Add(m_radiobtnYes
, 0, wxALL
, 5);
2085 sizer
->Add(sizerInside1
, 0, 0, 0);
2086 sizerInside1
->Add(m_chkboxAffirmativeButton
, 0, wxALL
, 5);
2087 sizerInside1
->Add(sizer1
, 0, wxALL
, 5);
2088 sizerInside1
->SetItemMinSize(sizer1
, sizer1
->GetStaticBox()->GetBestSize()); // to prevent wrapping of static box label
2090 sizer2
->Add(m_radiobtnCancel
, 0, wxALL
, 5);
2091 sizer2
->Add(m_radiobtnClose
, 0, wxALL
, 5);
2093 sizer
->Add(sizerInside2
, 0, 0, 0);
2094 sizerInside2
->Add(m_chkboxDismissButton
, 0, wxALL
, 5);
2095 sizerInside2
->Add(sizer2
, 0, wxALL
, 5);
2096 sizerInside2
->SetItemMinSize(sizer2
, sizer2
->GetStaticBox()->GetBestSize()); // to prevent wrapping of static box label
2098 sizerTop
->Add(sizer
, 0, wxALL
, 5);
2100 sizer3
->Add(m_chkboxNo
, 0, wxALL
, 5);
2101 sizer3
->Add(m_chkboxHelp
, 0, wxALL
, 5);
2102 sizer3
->Add(m_chkboxApply
, 0, wxALL
, 5);
2104 sizerTop
->Add(sizer3
, 0, wxALL
, 5);
2106 sizerTop
->Add(m_chkboxNoDefault
, 0, wxLEFT
|wxRIGHT
, 10);
2108 EnableDisableControls();
2110 SetSizerAndFit(sizerTop
);
2116 void StdButtonSizerDialog::OnEvent(wxCommandEvent
& WXUNUSED(event
))
2120 m_buttonsSizer
->DeleteWindows();
2121 GetSizer()->Remove(m_buttonsSizer
);
2124 EnableDisableControls();
2127 unsigned long numButtons
= 0;
2129 if (m_chkboxAffirmativeButton
->IsChecked())
2131 if (m_radiobtnOk
->GetValue())
2136 else if (m_radiobtnYes
->GetValue())
2143 if (m_chkboxDismissButton
->IsChecked())
2145 if (m_radiobtnCancel
->GetValue())
2151 else if (m_radiobtnClose
->GetValue())
2159 if (m_chkboxApply
->IsChecked())
2165 if (m_chkboxNo
->IsChecked())
2171 if (m_chkboxHelp
->IsChecked())
2177 if (m_chkboxNoDefault
->IsChecked())
2179 flags
|= wxNO_DEFAULT
;
2182 m_buttonsSizer
= CreateStdDialogButtonSizer(flags
);
2183 GetSizer()->Add(m_buttonsSizer
, 0, wxGROW
|wxALL
, 5);
2186 GetSizer()->SetSizeHints(this);
2189 void StdButtonSizerDialog::EnableDisableControls()
2191 const bool affButtonEnabled
= m_chkboxAffirmativeButton
->IsChecked();
2193 m_radiobtnOk
->Enable(affButtonEnabled
);
2194 m_radiobtnYes
->Enable(affButtonEnabled
);
2196 const bool dismissButtonEnabled
= m_chkboxDismissButton
->IsChecked();
2198 m_radiobtnCancel
->Enable(dismissButtonEnabled
);
2199 m_radiobtnClose
->Enable(dismissButtonEnabled
);
2202 #if USE_SETTINGS_DIALOG
2203 // ----------------------------------------------------------------------------
2205 // ----------------------------------------------------------------------------
2207 IMPLEMENT_CLASS(SettingsDialog
, wxPropertySheetDialog
)
2209 BEGIN_EVENT_TABLE(SettingsDialog
, wxPropertySheetDialog
)
2212 SettingsDialog::SettingsDialog(wxWindow
* win
, int dialogType
)
2214 SetExtraStyle(wxDIALOG_EX_CONTEXTHELP
|wxWS_EX_VALIDATE_RECURSIVELY
);
2219 bool useToolBook
= (dialogType
== DIALOGS_PROPERTY_SHEET_TOOLBOOK
|| dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
);
2220 int resizeBorder
= wxRESIZE_BORDER
;
2228 int sheetStyle
= wxPROPSHEET_SHRINKTOFIT
;
2229 if (dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
)
2230 sheetStyle
|= wxPROPSHEET_BUTTONTOOLBOOK
;
2232 sheetStyle
|= wxPROPSHEET_TOOLBOOK
;
2234 SetSheetStyle(sheetStyle
);
2235 SetSheetInnerBorder(0);
2236 SetSheetOuterBorder(0);
2238 // create a dummy image list with a few icons
2239 const wxSize
imageSize(32, 32);
2241 m_imageList
= new wxImageList(imageSize
.GetWidth(), imageSize
.GetHeight());
2243 Add(wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_OTHER
, imageSize
));
2245 Add(wxArtProvider::GetIcon(wxART_QUESTION
, wxART_OTHER
, imageSize
));
2247 Add(wxArtProvider::GetIcon(wxART_WARNING
, wxART_OTHER
, imageSize
));
2249 Add(wxArtProvider::GetIcon(wxART_ERROR
, wxART_OTHER
, imageSize
));
2254 Create(win
, wxID_ANY
, _("Preferences"), wxDefaultPosition
, wxDefaultSize
,
2255 wxDEFAULT_DIALOG_STYLE
| (int)wxPlatform::IfNot(wxOS_WINDOWS_CE
, resizeBorder
)
2258 // If using a toolbook, also follow Mac style and don't create buttons
2260 CreateButtons(wxOK
| wxCANCEL
|
2261 (int)wxPlatform::IfNot(wxOS_WINDOWS_CE
, wxHELP
)
2264 wxBookCtrlBase
* notebook
= GetBookCtrl();
2265 notebook
->SetImageList(m_imageList
);
2267 wxPanel
* generalSettings
= CreateGeneralSettingsPage(notebook
);
2268 wxPanel
* aestheticSettings
= CreateAestheticSettingsPage(notebook
);
2270 notebook
->AddPage(generalSettings
, _("General"), true, tabImage1
);
2271 notebook
->AddPage(aestheticSettings
, _("Aesthetics"), false, tabImage2
);
2276 SettingsDialog::~SettingsDialog()
2281 wxPanel
* SettingsDialog::CreateGeneralSettingsPage(wxWindow
* parent
)
2283 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
2285 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
2286 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
2290 wxBoxSizer
* itemSizer3
= new wxBoxSizer( wxHORIZONTAL
);
2291 wxCheckBox
* checkBox3
= new wxCheckBox(panel
, ID_LOAD_LAST_PROJECT
, _("&Load last project on startup"), wxDefaultPosition
, wxDefaultSize
);
2292 itemSizer3
->Add(checkBox3
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2293 item0
->Add(itemSizer3
, 0, wxGROW
|wxALL
, 0);
2297 wxString autoSaveLabel
= _("&Auto-save every");
2298 wxString minsLabel
= _("mins");
2300 wxBoxSizer
* itemSizer12
= new wxBoxSizer( wxHORIZONTAL
);
2301 wxCheckBox
* checkBox12
= new wxCheckBox(panel
, ID_AUTO_SAVE
, autoSaveLabel
, wxDefaultPosition
, wxDefaultSize
);
2304 wxSpinCtrl
* spinCtrl12
= new wxSpinCtrl(panel
, ID_AUTO_SAVE_MINS
, wxEmptyString
,
2305 wxDefaultPosition
, wxSize(40, wxDefaultCoord
), wxSP_ARROW_KEYS
, 1, 60, 1);
2308 itemSizer12
->Add(checkBox12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2310 itemSizer12
->Add(spinCtrl12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2312 itemSizer12
->Add(new wxStaticText(panel
, wxID_STATIC
, minsLabel
), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2313 item0
->Add(itemSizer12
, 0, wxGROW
|wxALL
, 0);
2317 wxBoxSizer
* itemSizer8
= new wxBoxSizer( wxHORIZONTAL
);
2318 wxCheckBox
* checkBox6
= new wxCheckBox(panel
, ID_SHOW_TOOLTIPS
, _("Show &tooltips"), wxDefaultPosition
, wxDefaultSize
);
2319 itemSizer8
->Add(checkBox6
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2320 item0
->Add(itemSizer8
, 0, wxGROW
|wxALL
, 0);
2322 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
2324 panel
->SetSizerAndFit(topSizer
);
2329 wxPanel
* SettingsDialog::CreateAestheticSettingsPage(wxWindow
* parent
)
2331 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
2333 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
2334 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
2336 //// PROJECT OR GLOBAL
2337 wxString globalOrProjectChoices
[2];
2338 globalOrProjectChoices
[0] = _("&New projects");
2339 globalOrProjectChoices
[1] = _("&This project");
2341 wxRadioBox
* projectOrGlobal
= new wxRadioBox(panel
, ID_APPLY_SETTINGS_TO
, _("&Apply settings to:"),
2342 wxDefaultPosition
, wxDefaultSize
, 2, globalOrProjectChoices
);
2343 item0
->Add(projectOrGlobal
, 0, wxGROW
|wxALL
, 5);
2345 projectOrGlobal
->SetSelection(0);
2347 //// BACKGROUND STYLE
2348 wxArrayString backgroundStyleChoices
;
2349 backgroundStyleChoices
.Add(wxT("Colour"));
2350 backgroundStyleChoices
.Add(wxT("Image"));
2351 wxStaticBox
* staticBox3
= new wxStaticBox(panel
, wxID_ANY
, _("Background style:"));
2353 wxBoxSizer
* styleSizer
= new wxStaticBoxSizer( staticBox3
, wxVERTICAL
);
2354 item0
->Add(styleSizer
, 0, wxGROW
|wxALL
, 5);
2356 wxBoxSizer
* itemSizer2
= new wxBoxSizer( wxHORIZONTAL
);
2358 wxChoice
* choice2
= new wxChoice(panel
, ID_BACKGROUND_STYLE
, wxDefaultPosition
, wxDefaultSize
, backgroundStyleChoices
);
2360 itemSizer2
->Add(new wxStaticText(panel
, wxID_ANY
, _("&Window:")), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2361 itemSizer2
->Add(5, 5, 1, wxALL
, 0);
2362 itemSizer2
->Add(choice2
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
2364 styleSizer
->Add(itemSizer2
, 0, wxGROW
|wxALL
, 5);
2367 //// FONT SIZE SELECTION
2369 wxStaticBox
* staticBox1
= new wxStaticBox(panel
, wxID_ANY
, _("Tile font size:"));
2370 wxBoxSizer
* itemSizer5
= new wxStaticBoxSizer( staticBox1
, wxHORIZONTAL
);
2372 wxSpinCtrl
* spinCtrl
= new wxSpinCtrl(panel
, ID_FONT_SIZE
, wxEmptyString
, wxDefaultPosition
,
2373 wxSize(80, wxDefaultCoord
));
2374 itemSizer5
->Add(spinCtrl
, 0, wxALL
|wxALIGN_CENTER_HORIZONTAL
|wxALIGN_CENTER_VERTICAL
, 5);
2376 item0
->Add(itemSizer5
, 0, wxGROW
|wxLEFT
|wxRIGHT
, 5);
2379 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
2380 topSizer
->AddSpacer(5);
2382 panel
->SetSizerAndFit(topSizer
);
2387 // ----------------------------------------------------------------------------
2388 // TestMessageBoxDialog
2389 // ----------------------------------------------------------------------------
2392 const TestMessageBoxDialog::BtnInfo
TestMessageBoxDialog::ms_btnInfo
[] =
2397 { wxCANCEL
, "&Cancel" },
2400 BEGIN_EVENT_TABLE(TestMessageBoxDialog
, wxDialog
)
2401 EVT_BUTTON(wxID_APPLY
, TestMessageBoxDialog::OnApply
)
2402 EVT_BUTTON(wxID_CLOSE
, TestMessageBoxDialog::OnClose
)
2405 TestMessageBoxDialog::TestMessageBoxDialog(wxWindow
*parent
)
2406 : wxDialog(parent
, wxID_ANY
, "Message Box Test Dialog",
2407 wxDefaultPosition
, wxDefaultSize
,
2408 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
2410 wxSizer
* const sizerTop
= new wxBoxSizer(wxVERTICAL
);
2412 // this sizer allows to configure the messages shown in the message box
2414 sizerMsgs
= new wxStaticBoxSizer(wxVERTICAL
, this, "&Messages");
2415 sizerMsgs
->Add(new wxStaticText(this, wxID_ANY
, "&Main message:"));
2416 m_textMsg
= new wxTextCtrl(this, wxID_ANY
, "Hello from a box!",
2417 wxDefaultPosition
, wxDefaultSize
,
2419 sizerMsgs
->Add(m_textMsg
, wxSizerFlags(1).Expand().Border(wxBOTTOM
));
2421 sizerMsgs
->Add(new wxStaticText(this, wxID_ANY
, "&Extended message:"));
2422 m_textExtMsg
= new wxTextCtrl(this, wxID_ANY
, "",
2423 wxDefaultPosition
, wxDefaultSize
,
2425 sizerMsgs
->Add(m_textExtMsg
, wxSizerFlags(1).Expand());
2427 sizerTop
->Add(sizerMsgs
, wxSizerFlags(1).Expand().Border());
2430 // this one is for configuring the buttons
2431 wxFlexGridSizer
* const sizerBtns
= new wxFlexGridSizer(2, 5, 5);
2432 sizerBtns
->AddGrowableCol(1);
2434 sizerBtns
->Add(new wxStaticText(this, wxID_ANY
, "Button(s)"));
2435 sizerBtns
->Add(new wxStaticText(this, wxID_ANY
, "Custom label"));
2437 for ( int n
= 0; n
< Btn_Max
; n
++ )
2439 m_buttons
[n
] = new wxCheckBox(this, wxID_ANY
, ms_btnInfo
[n
].name
);
2440 sizerBtns
->Add(m_buttons
[n
], wxSizerFlags().Centre().Left());
2442 m_labels
[n
] = new wxTextCtrl(this, wxID_ANY
);
2443 sizerBtns
->Add(m_labels
[n
], wxSizerFlags(1).Centre().Expand());
2445 m_labels
[n
]->Connect(wxEVT_UPDATE_UI
,
2446 wxUpdateUIEventHandler(
2447 TestMessageBoxDialog::OnUpdateLabelUI
),
2453 sizerBtnsBox
= new wxStaticBoxSizer(wxVERTICAL
, this, "&Buttons");
2454 sizerBtnsBox
->Add(sizerBtns
, wxSizerFlags(1).Expand());
2455 sizerTop
->Add(sizerBtnsBox
, wxSizerFlags().Expand().Border());
2459 const wxString icons
[] = {
2460 "&Information", "&Question", "&Warning", "&Error"
2463 m_icons
= new wxRadioBox(this, wxID_ANY
, "&Icon:",
2464 wxDefaultPosition
, wxDefaultSize
,
2465 WXSIZEOF(icons
), icons
);
2466 sizerTop
->Add(m_icons
, wxSizerFlags().Expand().Border());
2469 // miscellaneous other stuff
2471 sizerFlags
= new wxStaticBoxSizer(wxHORIZONTAL
, this, "&Other flags");
2473 m_chkNoDefault
= new wxCheckBox(this, wxID_ANY
, "Make \"No\" &default");
2474 m_chkNoDefault
->Connect(wxEVT_UPDATE_UI
,
2475 wxUpdateUIEventHandler(
2476 TestMessageBoxDialog::OnUpdateNoDefaultUI
),
2479 sizerFlags
->Add(m_chkNoDefault
, wxSizerFlags(1).Border());
2481 m_chkCentre
= new wxCheckBox(this, wxID_ANY
, "Centre on &parent");
2482 sizerFlags
->Add(m_chkCentre
, wxSizerFlags(1).Border());
2484 sizerTop
->Add(sizerFlags
, wxSizerFlags().Expand().Border());
2486 // finally buttons to show the resulting message box and close this dialog
2487 sizerTop
->Add(CreateStdDialogButtonSizer(wxAPPLY
| wxCLOSE
),
2488 wxSizerFlags().Right().Border());
2490 SetSizerAndFit(sizerTop
);
2492 m_buttons
[Btn_Ok
]->SetValue(true);
2495 void TestMessageBoxDialog::OnUpdateLabelUI(wxUpdateUIEvent
& event
)
2497 for ( int n
= 0; n
< Btn_Max
; n
++ )
2499 if ( event
.GetEventObject() == m_labels
[n
] )
2501 event
.Enable( m_buttons
[n
]->IsChecked() );
2506 wxFAIL_MSG( "called for unknown label" );
2509 void TestMessageBoxDialog::OnUpdateNoDefaultUI(wxUpdateUIEvent
& event
)
2511 event
.Enable( m_buttons
[Btn_No
]->IsChecked() );
2514 void TestMessageBoxDialog::OnApply(wxCommandEvent
& WXUNUSED(event
))
2518 for ( int n
= 0; n
< Btn_Max
; n
++ )
2520 if ( m_buttons
[n
]->IsChecked() )
2521 style
|= ms_btnInfo
[n
].flag
;
2524 switch ( m_icons
->GetSelection() )
2526 case 0: style
|= wxICON_INFORMATION
; break;
2527 case 1: style
|= wxICON_QUESTION
; break;
2528 case 2: style
|= wxICON_WARNING
; break;
2529 case 3: style
|= wxICON_ERROR
; break;
2532 if ( m_chkCentre
->IsChecked() )
2535 if ( m_chkNoDefault
->IsEnabled() && m_chkNoDefault
->IsChecked() )
2536 style
|= wxNO_DEFAULT
;
2539 wxMessageDialog
dlg(this, m_textMsg
->GetValue(), "Test Message Box",
2541 if ( !m_textExtMsg
->IsEmpty() )
2542 dlg
.SetExtendedMessage(m_textExtMsg
->GetValue());
2544 if ( style
& wxYES_NO
)
2546 if ( style
& wxCANCEL
)
2548 dlg
.SetYesNoCancelLabels(m_labels
[Btn_Yes
]->GetValue(),
2549 m_labels
[Btn_No
]->GetValue(),
2550 m_labels
[Btn_Cancel
]->GetValue());
2554 dlg
.SetYesNoLabels(m_labels
[Btn_Yes
]->GetValue(),
2555 m_labels
[Btn_No
]->GetValue());
2560 if ( style
& wxCANCEL
)
2562 dlg
.SetOKCancelLabels(m_labels
[Btn_Ok
]->GetValue(),
2563 m_labels
[Btn_Cancel
]->GetValue());
2567 dlg
.SetOKLabel(m_labels
[Btn_Ok
]->GetValue());
2574 void TestMessageBoxDialog::OnClose(wxCommandEvent
& WXUNUSED(event
))
2576 EndModal(wxID_CANCEL
);
2579 #endif // USE_SETTINGS_DIALOG
2583 // ----------------------------------------------------------------------------
2584 // custom log target
2585 // ----------------------------------------------------------------------------
2587 class MyLogGui
: public wxLogGui
2590 virtual void DoShowSingleLogMessage(const wxString
& message
,
2591 const wxString
& title
,
2594 wxMessageDialog
dlg(NULL
, message
, title
,
2595 wxOK
| wxCANCEL
| wxCANCEL_DEFAULT
| style
);
2596 dlg
.SetOKCancelLabels(wxID_COPY
, wxID_OK
);
2597 dlg
.SetExtendedMessage("Note that this is a custom log dialog.");
2602 wxLog
*MyAppTraits::CreateLogTarget()
2604 return new MyLogGui
;