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/datetime.h"
27 #include "wx/bookctrl.h"
28 #include "wx/artprov.h"
29 #include "wx/imaglist.h"
30 #include "wx/sysopt.h"
33 #include "wx/colordlg.h"
34 #endif // wxUSE_COLOURDLG
37 #include "wx/choicdlg.h"
38 #endif // wxUSE_CHOICEDLG
40 #if wxUSE_STARTUP_TIPS
41 #include "wx/tipdlg.h"
42 #endif // wxUSE_STARTUP_TIPS
45 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
46 #include "wx/datetime.h" // wxDateTime
49 #include "wx/progdlg.h"
50 #endif // wxUSE_PROGRESSDLG
53 #include "wx/aboutdlg.h"
55 // these headers are only needed for custom about dialog
56 #include "wx/statline.h"
57 #include "wx/generic/aboutdlgg.h"
58 #endif // wxUSE_ABOUTDLG
61 #include "wx/busyinfo.h"
62 #endif // wxUSE_BUSYINFO
65 #include "wx/numdlg.h"
66 #endif // wxUSE_NUMBERDLG
69 #include "wx/filedlg.h"
70 #endif // wxUSE_FILEDLG
73 #include "wx/dirdlg.h"
74 #endif // wxUSE_DIRDLG
77 #include "wx/fontdlg.h"
78 #endif // wxUSE_FONTDLG
81 #include "wx/fdrepdlg.h"
82 #endif // wxUSE_FINDREPLDLG
85 #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
)
117 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
120 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
121 #endif // wxUSE_COLOURDLG
124 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
125 #endif // wxUSE_FONTDLG
128 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
129 #endif // wxUSE_LOG_DIALOG
132 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
133 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
134 #endif // wxUSE_TEXTDLG
137 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
138 #endif // wxUSE_NUMBERDLG
141 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
142 EVT_MENU(DIALOGS_MULTI_CHOICE
, MyFrame::MultiChoice
)
143 #endif // wxUSE_CHOICEDLG
146 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
147 EVT_MENU(DIALOGS_FILE_OPEN2
, MyFrame::FileOpen2
)
148 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
149 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
150 #endif // wxUSE_FILEDLG
152 #if USE_FILEDLG_GENERIC
153 EVT_MENU(DIALOGS_FILE_OPEN_GENERIC
, MyFrame::FileOpenGeneric
)
154 EVT_MENU(DIALOGS_FILES_OPEN_GENERIC
, MyFrame::FilesOpenGeneric
)
155 EVT_MENU(DIALOGS_FILE_SAVE_GENERIC
, MyFrame::FileSaveGeneric
)
156 #endif // USE_FILEDLG_GENERIC
159 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
160 EVT_MENU(DIALOGS_DIRNEW_CHOOSE
, MyFrame::DirChooseNew
)
161 #endif // wxUSE_DIRDLG
163 #if USE_MODAL_PRESENTATION
164 EVT_MENU(DIALOGS_MODAL
, MyFrame::ModalDlg
)
165 EVT_MENU(DIALOGS_MODELESS
, MyFrame::ModelessDlg
)
166 EVT_MENU(DIALOGS_CENTRE_SCREEN
, MyFrame::DlgCenteredScreen
)
167 EVT_MENU(DIALOGS_CENTRE_PARENT
, MyFrame::DlgCenteredParent
)
170 #if wxUSE_STARTUP_TIPS
171 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
172 #endif // wxUSE_STARTUP_TIPS
174 #if USE_FONTDLG_GENERIC
175 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
176 #endif // USE_FONTDLG_GENERIC
178 #if USE_DIRDLG_GENERIC
179 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE
, MyFrame::GenericDirChoose
)
180 #endif // wxMSW || wxMAC
182 #if USE_COLOURDLG_GENERIC
183 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
184 #endif // USE_COLOURDLG_GENERIC
186 #if wxUSE_PROGRESSDLG
187 EVT_MENU(DIALOGS_PROGRESS
, MyFrame::ShowProgress
)
188 #endif // wxUSE_PROGRESSDLG
191 EVT_MENU(DIALOGS_ABOUTDLG_SIMPLE
, MyFrame::ShowSimpleAboutDialog
)
192 EVT_MENU(DIALOGS_ABOUTDLG_FANCY
, MyFrame::ShowFancyAboutDialog
)
193 EVT_MENU(DIALOGS_ABOUTDLG_FULL
, MyFrame::ShowFullAboutDialog
)
194 EVT_MENU(DIALOGS_ABOUTDLG_CUSTOM
, MyFrame::ShowCustomAboutDialog
)
195 #endif // wxUSE_ABOUTDLG
198 EVT_MENU(DIALOGS_BUSYINFO
, MyFrame::ShowBusyInfo
)
199 #endif // wxUSE_BUSYINFO
201 #if wxUSE_FINDREPLDLG
202 EVT_MENU(DIALOGS_FIND
, MyFrame::ShowFindDialog
)
203 EVT_MENU(DIALOGS_REPLACE
, MyFrame::ShowReplaceDialog
)
205 EVT_FIND(wxID_ANY
, MyFrame::OnFindDialog
)
206 EVT_FIND_NEXT(wxID_ANY
, MyFrame::OnFindDialog
)
207 EVT_FIND_REPLACE(wxID_ANY
, MyFrame::OnFindDialog
)
208 EVT_FIND_REPLACE_ALL(wxID_ANY
, MyFrame::OnFindDialog
)
209 EVT_FIND_CLOSE(wxID_ANY
, MyFrame::OnFindDialog
)
210 #endif // wxUSE_FINDREPLDLG
212 #if USE_SETTINGS_DIALOG
213 EVT_MENU(DIALOGS_PROPERTY_SHEET
, MyFrame::OnPropertySheet
)
214 EVT_MENU(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, MyFrame::OnPropertySheet
)
215 EVT_MENU(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, MyFrame::OnPropertySheet
)
218 EVT_MENU(DIALOGS_REQUEST
, MyFrame::OnRequestUserAttention
)
220 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
223 #if USE_MODAL_PRESENTATION
225 BEGIN_EVENT_TABLE(MyModalDialog
, wxDialog
)
226 EVT_BUTTON(wxID_ANY
, MyModalDialog::OnButton
)
229 BEGIN_EVENT_TABLE(MyModelessDialog
, wxDialog
)
230 EVT_BUTTON(DIALOGS_MODELESS_BTN
, MyModelessDialog::OnButton
)
231 EVT_CLOSE(MyModelessDialog::OnClose
)
234 #endif // USE_MODAL_PRESENTATION
236 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
238 // `Main program' equivalent, creating windows and returning main app frame
242 wxInitAllImageHandlers();
245 m_canvasTextColour
= *wxBLACK
;
246 m_canvasFont
= *wxNORMAL_FONT
;
248 // Create the main frame window
249 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets dialogs example"));
252 wxMenu
*menuDlg
= new wxMenu
;
254 menuDlg
->Append(DIALOGS_MESSAGE_BOX
, _T("&Message box\tCtrl-M"));
257 #if wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
259 wxMenu
*choices_menu
= new wxMenu
;
262 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR
, _T("&Choose colour"));
263 #endif // wxUSE_COLOURDLG
266 choices_menu
->Append(DIALOGS_CHOOSE_FONT
, _T("Choose &font"));
267 #endif // wxUSE_FONTDLG
270 choices_menu
->Append(DIALOGS_SINGLE_CHOICE
, _T("&Single choice\tCtrl-C"));
271 choices_menu
->Append(DIALOGS_MULTI_CHOICE
, _T("M&ultiple choice\tCtrl-U"));
272 #endif // wxUSE_CHOICEDLG
274 #if USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
275 choices_menu
->AppendSeparator();
276 #endif // USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
278 #if USE_COLOURDLG_GENERIC
279 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, _T("&Choose colour (generic)"));
280 #endif // USE_COLOURDLG_GENERIC
282 #if USE_FONTDLG_GENERIC
283 choices_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, _T("Choose &font (generic)"));
284 #endif // USE_FONTDLG_GENERIC
286 menuDlg
->Append(wxID_ANY
,_T("&Choices and selectors"),choices_menu
);
287 #endif // wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
290 #if wxUSE_TEXTDLG || wxUSE_NUMBERDLG
292 wxMenu
*entry_menu
= new wxMenu
;
295 entry_menu
->Append(DIALOGS_TEXT_ENTRY
, _T("Text &entry\tCtrl-E"));
296 entry_menu
->Append(DIALOGS_PASSWORD_ENTRY
, _T("&Password entry\tCtrl-P"));
297 #endif // wxUSE_TEXTDLG
300 entry_menu
->Append(DIALOGS_NUM_ENTRY
, _T("&Numeric entry\tCtrl-N"));
301 #endif // wxUSE_NUMBERDLG
303 menuDlg
->Append(wxID_ANY
,_T("&Entry dialogs"),entry_menu
);
305 #endif // wxUSE_TEXTDLG || wxUSE_NUMBERDLG
310 wxMenu
*filedlg_menu
= new wxMenu
;
311 filedlg_menu
->Append(DIALOGS_FILE_OPEN
, _T("&Open file\tCtrl-O"));
312 filedlg_menu
->Append(DIALOGS_FILE_OPEN2
, _T("&Second open file\tCtrl-2"));
313 filedlg_menu
->Append(DIALOGS_FILES_OPEN
, _T("Open &files\tCtrl-Q"));
314 filedlg_menu
->Append(DIALOGS_FILE_SAVE
, _T("Sa&ve file\tCtrl-S"));
316 #if USE_FILEDLG_GENERIC
317 filedlg_menu
->AppendSeparator();
318 filedlg_menu
->Append(DIALOGS_FILE_OPEN_GENERIC
, _T("&Open file (generic)"));
319 filedlg_menu
->Append(DIALOGS_FILES_OPEN_GENERIC
, _T("Open &files (generic)"));
320 filedlg_menu
->Append(DIALOGS_FILE_SAVE_GENERIC
, _T("Sa&ve file (generic)"));
321 #endif // USE_FILEDLG_GENERIC
323 menuDlg
->Append(wxID_ANY
,_T("&File operations"),filedlg_menu
);
325 #endif // wxUSE_FILEDLG
328 wxMenu
*dir_menu
= new wxMenu
;
330 dir_menu
->Append(DIALOGS_DIR_CHOOSE
, _T("&Choose a directory\tCtrl-D"));
331 dir_menu
->Append(DIALOGS_DIRNEW_CHOOSE
, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
332 menuDlg
->Append(wxID_ANY
,_T("&Directory operations"),dir_menu
);
334 #if USE_DIRDLG_GENERIC
335 dir_menu
->AppendSeparator();
336 dir_menu
->Append(DIALOGS_GENERIC_DIR_CHOOSE
, _T("&Choose a directory (generic)"));
337 #endif // USE_DIRDLG_GENERIC
339 #endif // wxUSE_DIRDLG
342 #if wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
344 wxMenu
*info_menu
= new wxMenu
;
346 #if wxUSE_STARTUP_TIPS
347 info_menu
->Append(DIALOGS_TIP
, _T("&Tip of the day\tCtrl-T"));
348 #endif // wxUSE_STARTUP_TIPS
350 #if wxUSE_PROGRESSDLG
351 info_menu
->Append(DIALOGS_PROGRESS
, _T("Pro&gress dialog\tCtrl-G"));
352 #endif // wxUSE_PROGRESSDLG
355 info_menu
->Append(DIALOGS_BUSYINFO
, _T("&Busy info dialog\tCtrl-B"));
356 #endif // wxUSE_BUSYINFO
359 info_menu
->Append(DIALOGS_LOG_DIALOG
, _T("&Log dialog\tCtrl-L"));
360 #endif // wxUSE_LOG_DIALOG
362 menuDlg
->Append(wxID_ANY
,_T("&Informative dialogs"),info_menu
);
364 #endif // wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
367 #if wxUSE_FINDREPLDLG
368 wxMenu
*find_menu
= new wxMenu
;
369 find_menu
->AppendCheckItem(DIALOGS_FIND
, _T("&Find dialog\tCtrl-F"));
370 find_menu
->AppendCheckItem(DIALOGS_REPLACE
, _T("Find and &replace dialog\tShift-Ctrl-F"));
371 menuDlg
->Append(wxID_ANY
,_T("&Searching"),find_menu
);
372 #endif // wxUSE_FINDREPLDLG
374 #if USE_MODAL_PRESENTATION
375 wxMenu
*dialogs_menu
= new wxMenu
;
376 dialogs_menu
->Append(DIALOGS_MODAL
, _T("&Modal dialog\tCtrl-W"));
377 dialogs_menu
->AppendCheckItem(DIALOGS_MODELESS
, _T("Mode&less dialog\tCtrl-Z"));
378 dialogs_menu
->Append(DIALOGS_CENTRE_SCREEN
, _T("Centered on &screen\tShift-Ctrl-1"));
379 dialogs_menu
->Append(DIALOGS_CENTRE_PARENT
, _T("Centered on &parent\tShift-Ctrl-2"));
380 menuDlg
->Append(wxID_ANY
, _T("&Generic dialogs"), dialogs_menu
);
381 #endif // USE_MODAL_PRESENTATION
383 #if USE_SETTINGS_DIALOG
384 wxMenu
*sheet_menu
= new wxMenu
;
385 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET
, _T("&Standard property sheet\tShift-Ctrl-P"));
386 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, _T("&Toolbook sheet\tShift-Ctrl-T"));
388 if (wxPlatformIs(wxPORT_MAC
))
389 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
392 sheet_menu->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
395 menuDlg
->Append(wxID_ANY
, _T("&Property sheets"), sheet_menu
);
396 #endif // USE_SETTINGS_DIALOG
398 menuDlg
->Append(DIALOGS_REQUEST
, _T("&Request user attention\tCtrl-R"));
400 menuDlg
->AppendSeparator();
401 menuDlg
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"));
404 wxMenu
*menuHelp
= new wxMenu
;
405 menuHelp
->Append(DIALOGS_ABOUTDLG_SIMPLE
, _T("&About (simple)...\tF1"));
406 menuHelp
->Append(DIALOGS_ABOUTDLG_FANCY
, _T("About (&fancy)...\tShift-F1"));
407 menuHelp
->Append(DIALOGS_ABOUTDLG_FULL
, _T("About (f&ull)...\tCtrl-F1"));
408 menuHelp
->Append(DIALOGS_ABOUTDLG_CUSTOM
, _T("About (&custom)...\tCtrl-Shift-F1"));
409 #endif // wxUSE_ABOUTDLG
411 wxMenuBar
*menubar
= new wxMenuBar
;
412 menubar
->Append(menuDlg
, _T("&Dialogs"));
414 menubar
->Append(menuHelp
, _T("&Help"));
415 #endif // wxUSE_ABOUTDLG
417 frame
->SetMenuBar(menubar
);
419 myCanvas
= new MyCanvas(frame
);
420 myCanvas
->SetBackgroundColour(*wxWHITE
);
422 frame
->Centre(wxBOTH
);
432 // My frame constructor
433 MyFrame::MyFrame(wxWindow
*parent
,
434 const wxString
& title
)
435 : wxFrame(parent
, wxID_ANY
, title
)
439 #if USE_MODAL_PRESENTATION
440 m_dialog
= (MyModelessDialog
*)NULL
;
441 #endif // USE_MODAL_PRESENTATION
443 #if wxUSE_FINDREPLDLG
449 m_clrData
.SetChooseFull(true);
450 for (int i
= 0; i
< 16; i
++)
452 m_clrData
.SetCustomColour(
455 (unsigned char)(i
*16),
456 (unsigned char)(i
*16),
457 (unsigned char)(i
*16)
461 #endif // wxUSE_COLOURDLG
465 #endif // wxUSE_STATUSBAR
469 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
471 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
473 wxColourDialog
dialog(this, &m_clrData
);
474 dialog
.SetTitle(_T("Choose the background colour"));
475 if (dialog
.ShowModal() == wxID_OK
)
477 m_clrData
= dialog
.GetColourData();
478 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
479 myCanvas
->ClearBackground();
483 #endif // wxUSE_COLOURDLG
485 #if USE_COLOURDLG_GENERIC
486 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
488 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
490 //FIXME:TODO:This has no effect...
491 m_clrData
.SetChooseFull(true);
493 for (int i
= 0; i
< 16; i
++)
496 (unsigned char)(i
*16),
497 (unsigned char)(i
*16),
498 (unsigned char)(i
*16)
500 m_clrData
.SetCustomColour(i
, colour
);
503 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &m_clrData
);
504 if (dialog
->ShowModal() == wxID_OK
)
506 m_clrData
= dialog
->GetColourData();
507 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
508 myCanvas
->ClearBackground();
513 #endif // USE_COLOURDLG_GENERIC
516 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
519 data
.SetInitialFont(wxGetApp().m_canvasFont
);
520 data
.SetColour(wxGetApp().m_canvasTextColour
);
522 // you might also do this:
524 // wxFontDialog dialog;
525 // if ( !dialog.Create(this, data) { ... error ... }
527 wxFontDialog
dialog(this, data
);
529 if (dialog
.ShowModal() == wxID_OK
)
531 wxFontData retData
= dialog
.GetFontData();
532 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
533 wxGetApp().m_canvasTextColour
= retData
.GetColour();
536 //else: cancelled by the user, don't change the font
538 #endif // wxUSE_FONTDLG
540 #if USE_FONTDLG_GENERIC
541 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
544 data
.SetInitialFont(wxGetApp().m_canvasFont
);
545 data
.SetColour(wxGetApp().m_canvasTextColour
);
547 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, data
);
548 if (dialog
->ShowModal() == wxID_OK
)
550 wxFontData retData
= dialog
->GetFontData();
551 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
552 wxGetApp().m_canvasTextColour
= retData
.GetColour();
557 #endif // USE_FONTDLG_GENERIC
560 void MyFrame::LogDialog(wxCommandEvent
& WXUNUSED(event
))
562 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
563 // being flushed -- test it
566 wxLogMessage(wxT("This is some message - everything is ok so far."));
567 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
568 wxLogWarning(wxT("And then something went wrong!"));
570 // and if ~wxBusyCursor doesn't do it, then call it manually
574 wxLogError(wxT("Intermediary error handler decided to abort."));
575 wxLogError(wxT("The top level caller detected an unrecoverable error."));
577 wxLog::FlushActive();
579 wxLogMessage(wxT("And this is the same dialog but with only one message."));
581 #endif // wxUSE_LOG_DIALOG
583 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
585 wxMessageDialog
dialog( NULL
, _T("This is a message box\nA long, long string to test out the message box properly"),
586 _T("Message box text"), wxNO_DEFAULT
|wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
588 switch ( dialog
.ShowModal() )
591 wxLogStatus(wxT("You pressed \"Yes\""));
595 wxLogStatus(wxT("You pressed \"No\""));
599 wxLogStatus(wxT("You pressed \"Cancel\""));
603 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
608 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
) )
610 long res
= wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
611 _T("Even two rows of text."),
612 _T("Enter a number:"), _T("Numeric input test"),
619 msg
= _T("Invalid number entered or dialog cancelled.");
624 msg
.Printf(_T("You've entered %lu"), res
);
625 icon
= wxICON_INFORMATION
;
628 wxMessageBox(msg
, _T("Numeric test result"), wxOK
| icon
, this);
630 #endif // wxUSE_NUMBERDLG
633 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
635 wxString pwd
= wxGetPasswordFromUser(_T("Enter password:"),
636 _T("Password entry dialog"),
641 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd
.c_str()),
642 _T("Got password"), wxOK
| wxICON_INFORMATION
, this);
646 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
648 wxTextEntryDialog
dialog(this,
649 _T("This is a small sample\n")
650 _T("A long, long string to test out the text entrybox"),
651 _T("Please enter a string"),
655 if (dialog
.ShowModal() == wxID_OK
)
657 wxMessageBox(dialog
.GetValue(), _T("Got string"), wxOK
| wxICON_INFORMATION
, this);
660 #endif // wxUSE_TEXTDLG
663 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
665 const wxString choices
[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
667 wxSingleChoiceDialog
dialog(this,
668 _T("This is a small sample\n")
669 _T("A single-choice convenience dialog"),
670 _T("Please select a value"),
671 WXSIZEOF(choices
), choices
);
673 dialog
.SetSelection(2);
675 if (dialog
.ShowModal() == wxID_OK
)
677 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), _T("Got string"));
682 void MyFrame::MultiChoice(wxCommandEvent
& WXUNUSED(event
) )
684 const wxString choices
[] =
686 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
687 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
688 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
691 wxArrayInt selections
;
692 size_t count
= wxGetMultipleChoices(selections
,
693 _T("This is a small sample\n")
694 _T("A multi-choice convenience dialog"),
695 _T("Please select a value"),
696 WXSIZEOF(choices
), choices
,
701 msg
.Printf(wxT("You selected %u items:\n"), (unsigned)count
);
702 for ( size_t n
= 0; n
< count
; n
++ )
704 msg
+= wxString::Format(wxT("\t%u: %u (%s)\n"),
705 (unsigned)n
, (unsigned)selections
[n
],
706 choices
[selections
[n
]].c_str());
710 //else: cancelled or nothing selected
712 #endif // wxUSE_CHOICEDLG
715 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
720 _T("Testing open file dialog"),
724 _T("C++ files (*.cpp)|*.cpp")
726 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
730 dialog
.CentreOnParent();
731 dialog
.SetDirectory(wxGetHomeDir());
733 if (dialog
.ShowModal() == wxID_OK
)
736 info
.Printf(_T("Full file name: %s\n")
739 dialog
.GetPath().c_str(),
740 dialog
.GetDirectory().c_str(),
741 dialog
.GetFilename().c_str());
742 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
747 // this shows how to take advantage of specifying a default extension in the
748 // call to wxFileSelector: it is remembered after each new call and the next
749 // one will use it by default
750 void MyFrame::FileOpen2(wxCommandEvent
& WXUNUSED(event
) )
752 static wxString s_extDef
;
753 wxString path
= wxFileSelector(
754 _T("Select the file to load"),
755 wxEmptyString
, wxEmptyString
,
759 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (%s)|%s"),
760 wxFileSelectorDefaultWildcardStr
,
761 wxFileSelectorDefaultWildcardStr
763 wxFD_OPEN
|wxFD_CHANGE_DIR
|wxFD_PREVIEW
,
770 // it is just a sample, would use wxSplitPath in real program
771 s_extDef
= path
.AfterLast(_T('.'));
773 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
774 (const wxChar
*) path
, (const wxChar
*) s_extDef
);
777 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
781 _T("C++ files (*.cpp)|*.cpp");
785 _T("All files (%s)|%s|C++ files (*.cpp;*.h)|*.cpp;*.h"),
786 wxFileSelectorDefaultWildcardStr
,
787 wxFileSelectorDefaultWildcardStr
790 wxFileDialog
dialog(this, _T("Testing open multiple file dialog"),
791 wxEmptyString
, wxEmptyString
, wildcards
,
792 wxFD_OPEN
|wxFD_MULTIPLE
);
794 if (dialog
.ShowModal() == wxID_OK
)
796 wxArrayString paths
, filenames
;
798 dialog
.GetPaths(paths
);
799 dialog
.GetFilenames(filenames
);
802 size_t count
= paths
.GetCount();
803 for ( size_t n
= 0; n
< count
; n
++ )
805 s
.Printf(_T("File %d: %s (%s)\n"),
806 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
810 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
813 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
818 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
820 wxFileDialog
dialog(this,
821 _T("Testing save file dialog"),
824 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
825 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
827 dialog
.SetFilterIndex(1);
829 if (dialog
.ShowModal() == wxID_OK
)
831 wxLogMessage(_T("%s, filter %d"),
832 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
835 #endif // wxUSE_FILEDLG
837 #if USE_FILEDLG_GENERIC
838 void MyFrame::FileOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
840 wxGenericFileDialog dialog
843 _T("Testing open file dialog"),
846 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
849 dialog
.SetDirectory(wxGetHomeDir());
851 if (dialog
.ShowModal() == wxID_OK
)
854 info
.Printf(_T("Full file name: %s\n")
857 dialog
.GetPath().c_str(),
858 dialog
.GetDirectory().c_str(),
859 dialog
.GetFilename().c_str());
860 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
865 void MyFrame::FilesOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
867 // On PocketPC you can disable OK-only dialogs policy using system option
868 int buttons
= wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel"));
869 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), 1);
871 wxString wildcards
= _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
872 wxGenericFileDialog
dialog(this, _T("Testing open multiple file dialog"),
873 wxEmptyString
, wxEmptyString
, wildcards
,
876 if (dialog
.ShowModal() == wxID_OK
)
878 wxArrayString paths
, filenames
;
880 dialog
.GetPaths(paths
);
881 dialog
.GetFilenames(filenames
);
884 size_t count
= paths
.GetCount();
885 for ( size_t n
= 0; n
< count
; n
++ )
887 s
.Printf(_T("File %d: %s (%s)\n"),
888 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
892 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
895 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
899 // restore system option
900 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), buttons
);
903 void MyFrame::FileSaveGeneric(wxCommandEvent
& WXUNUSED(event
) )
905 wxGenericFileDialog
dialog(this,
906 _T("Testing save file dialog"),
909 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
910 wxFD_SAVE
|wxFD_OVERWRITE_PROMPT
);
912 dialog
.SetFilterIndex(1);
914 if (dialog
.ShowModal() == wxID_OK
)
916 wxLogMessage(_T("%s, filter %d"),
917 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
920 #endif // USE_FILEDLG_GENERIC
923 void MyFrame::DoDirChoose(int style
)
925 // pass some initial dir to wxDirDialog
927 wxGetHomeDir(&dirHome
);
929 wxDirDialog
dialog(this, _T("Testing directory picker"), dirHome
, style
);
931 if (dialog
.ShowModal() == wxID_OK
)
933 wxLogMessage(_T("Selected path: %s"), dialog
.GetPath().c_str());
937 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
939 DoDirChoose(wxDD_DEFAULT_STYLE
| wxDD_DIR_MUST_EXIST
);
942 void MyFrame::DirChooseNew(wxCommandEvent
& WXUNUSED(event
) )
944 DoDirChoose(wxDD_DEFAULT_STYLE
& ~wxDD_DIR_MUST_EXIST
);
946 #endif // wxUSE_DIRDLG
948 #if USE_DIRDLG_GENERIC
949 void MyFrame::GenericDirChoose(wxCommandEvent
& WXUNUSED(event
) )
951 // pass some initial dir to wxDirDialog
953 wxGetHomeDir(&dirHome
);
955 wxGenericDirDialog
dialog(this, _T("Testing generic directory picker"), dirHome
);
957 if (dialog
.ShowModal() == wxID_OK
)
959 wxMessageDialog
dialog2(this, dialog
.GetPath(), _T("Selected path"));
963 #endif // USE_DIRDLG_GENERIC
965 #if USE_MODAL_PRESENTATION
966 void MyFrame::ModalDlg(wxCommandEvent
& WXUNUSED(event
))
968 MyModalDialog
dlg(this);
972 void MyFrame::ModelessDlg(wxCommandEvent
& event
)
974 bool show
= GetMenuBar()->IsChecked(event
.GetId());
980 m_dialog
= new MyModelessDialog(this);
983 m_dialog
->Show(true);
987 // If m_dialog is NULL, then possibly the system
988 // didn't report the checked menu item status correctly.
989 // It should be true just after the menu item was selected,
990 // if there was no modeless dialog yet.
992 wxASSERT( m_dialog
!= NULL
);
998 void MyFrame::DlgCenteredScreen(wxCommandEvent
& WXUNUSED(event
))
1000 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on screen"),
1001 wxDefaultPosition
, wxSize(200, 100));
1002 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1003 dlg
.CentreOnScreen();
1007 void MyFrame::DlgCenteredParent(wxCommandEvent
& WXUNUSED(event
))
1009 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on parent"),
1010 wxDefaultPosition
, wxSize(200, 100));
1011 (new wxButton(&dlg
, wxID_OK
, _T("Close")))->Centre();
1012 dlg
.CentreOnParent();
1016 #endif // USE_MODAL_PRESENTATION
1018 #if wxUSE_STARTUP_TIPS
1019 void MyFrame::ShowTip(wxCommandEvent
& WXUNUSED(event
))
1021 static size_t s_index
= (size_t)-1;
1023 if ( s_index
== (size_t)-1 )
1027 // this is completely bogus, we don't know how many lines are there
1028 // in the file, but who cares, it's a demo only...
1029 s_index
= rand() % 5;
1032 wxTipProvider
*tipProvider
= wxCreateFileTipProvider(_T("tips.txt"), s_index
);
1034 bool showAtStartup
= wxShowTip(this, tipProvider
);
1036 if ( showAtStartup
)
1038 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
1039 wxOK
| wxICON_INFORMATION
, this);
1042 s_index
= tipProvider
->GetCurrentTip();
1045 #endif // wxUSE_STARTUP_TIPS
1047 #if USE_SETTINGS_DIALOG
1048 void MyFrame::OnPropertySheet(wxCommandEvent
& event
)
1050 SettingsDialog
dialog(this, event
.GetId());
1053 #endif // USE_SETTINGS_DIALOG
1055 void MyFrame::OnRequestUserAttention(wxCommandEvent
& WXUNUSED(event
))
1057 wxLogStatus(_T("Sleeping for 3 seconds to allow you to switch to another window"));
1061 RequestUserAttention(wxUSER_ATTENTION_ERROR
);
1064 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
1069 #if wxUSE_PROGRESSDLG
1071 void MyFrame::ShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1073 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1074 // check the performance
1075 int countrandomnumbers
= 0, count
= 0;
1076 wxTimeSpan
tsTest(0,0,0,250);
1077 wxDateTime DT2
, DT1
= wxDateTime::UNow();
1082 ++countrandomnumbers
;
1083 if ( countrandomnumbers
== 1000 )
1086 countrandomnumbers
= 0;
1088 DT2
= wxDateTime::UNow();
1089 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1090 if ( ts
.IsLongerThan( tsTest
) )
1096 const int max
= 40 * count
;
1098 static const int max
= 10;
1099 #endif // wxUSE_STOPWATCH && wxUSE_LONGLONG
1101 wxProgressDialog
dialog(_T("Progress dialog example"),
1102 _T("An informative message"),
1108 // wxPD_AUTO_HIDE | -- try this as well
1110 wxPD_ESTIMATED_TIME
|
1111 wxPD_REMAINING_TIME
|
1116 // each skip will move progress about quarter forward
1117 for ( int i
= 0; i
<= max
; i
= wxMin(i
+(skip
?int(max
/4):1), max
+1), skip
= false )
1119 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1120 // do (almost) the same operations as we did for the performance test
1122 for ( int j
= 0; j
< 1000; j
++ )
1127 DT2
= wxDateTime::UNow();
1128 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1129 if ( ts
.IsLongerThan( tsTest
) )
1143 msg
= _T("That's all, folks!");
1145 else if ( i
> max
/ 2 )
1147 msg
= _T("Only a half left (very long message)!");
1150 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1151 if ( (i
% (max
/100)) == 0 ) // // only 100 updates, this makes it much faster
1153 cont
= dialog
.Update(i
, msg
, &skip
);
1156 cont
= dialog
.Update(i
, msg
, &skip
);
1161 if ( wxMessageBox(_T("Do you really want to cancel?"),
1162 _T("Progress dialog question"), // caption
1163 wxYES_NO
| wxICON_QUESTION
) == wxYES
)
1173 wxLogStatus(wxT("Progress dialog aborted!"));
1177 wxLogStatus(wxT("Countdown from %d finished"), max
);
1181 #endif // wxUSE_PROGRESSDLG
1185 static void InitAboutInfoMinimal(wxAboutDialogInfo
& info
)
1187 info
.SetName(_T("Dialogs Sample"));
1188 info
.SetVersion(wxVERSION_NUM_DOT_STRING_T
);
1189 info
.SetDescription(_T("This sample shows different wxWidgets dialogs"));
1190 info
.SetCopyright(_T("(C) 1998-2006 wxWidgets dev team"));
1191 info
.AddDeveloper(_T("Vadim Zeitlin"));
1194 static void InitAboutInfoWebsite(wxAboutDialogInfo
& info
)
1196 InitAboutInfoMinimal(info
);
1198 info
.SetWebSite(_T("http://www.wxwidgets.org/"), _T("wxWidgets web site"));
1201 static void InitAboutInfoAll(wxAboutDialogInfo
& info
)
1203 InitAboutInfoMinimal(info
);
1205 // we can add a second developer
1206 info
.AddDeveloper(_T("A.N. Other"));
1208 // or we can add several persons at once like this
1209 static const wxChar
*docwriters
[] =
1211 _T("First D. Writer"),
1215 info
.SetDocWriters(wxArrayString(WXSIZEOF(docwriters
), docwriters
));
1216 info
.SetLicence(wxString::FromAscii(
1217 " wxWindows Library Licence, Version 3.1\n"
1218 " ======================================\n"
1220 " Copyright (c) 1998-2005 Julian Smart, Robert Roebling et al\n"
1222 " Everyone is permitted to copy and distribute verbatim copies\n"
1223 " of this licence document, but changing it is not allowed.\n"
1225 " WXWINDOWS LIBRARY LICENCE\n"
1226 " TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n"
1228 " ...and so on and so forth...\n"
1231 info
.AddTranslator(_T("Wun Ngo Wen (Martian)"));
1234 void MyFrame::ShowSimpleAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1236 wxAboutDialogInfo info
;
1237 InitAboutInfoMinimal(info
);
1242 void MyFrame::ShowFancyAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1244 wxAboutDialogInfo info
;
1245 InitAboutInfoWebsite(info
);
1250 void MyFrame::ShowFullAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1252 wxAboutDialogInfo info
;
1253 InitAboutInfoAll(info
);
1258 void MyFrame::ShowCustomAboutDialog(wxCommandEvent
& WXUNUSED(event
))
1260 class MyAboutDialog
: public wxGenericAboutDialog
1263 MyAboutDialog(const wxAboutDialogInfo
& info
)
1268 // add some custom controls
1269 virtual void DoAddCustomControls()
1271 AddControl(new wxStaticLine(this), wxSizerFlags().Expand());
1272 AddText(_T("Some custom text"));
1273 AddControl(new wxStaticLine(this), wxSizerFlags().Expand());
1277 wxAboutDialogInfo info
;
1278 InitAboutInfoAll(info
);
1280 MyAboutDialog
dlg(info
);
1284 #endif // wxUSE_ABOUTDLG
1288 void MyFrame::ShowBusyInfo(wxCommandEvent
& WXUNUSED(event
))
1290 wxWindowDisabler disableAll
;
1292 wxBusyInfo
info(_T("Working, please wait..."), this);
1294 for ( int i
= 0; i
< 18; i
++ )
1304 #endif // wxUSE_BUSYINFO
1306 #if wxUSE_FINDREPLDLG
1308 void MyFrame::ShowReplaceDialog( wxCommandEvent
& WXUNUSED(event
) )
1312 delete m_dlgReplace
;
1313 m_dlgReplace
= NULL
;
1317 m_dlgReplace
= new wxFindReplaceDialog
1321 _T("Find and replace dialog"),
1325 m_dlgReplace
->Show(true);
1329 void MyFrame::ShowFindDialog( wxCommandEvent
& WXUNUSED(event
) )
1338 m_dlgFind
= new wxFindReplaceDialog
1347 m_dlgFind
->Show(true);
1351 static wxString
DecodeFindDialogEventFlags(int flags
)
1354 str
<< (flags
& wxFR_DOWN
? _T("down") : _T("up")) << _T(", ")
1355 << (flags
& wxFR_WHOLEWORD
? _T("whole words only, ") : _T(""))
1356 << (flags
& wxFR_MATCHCASE
? _T("") : _T("not "))
1357 << _T("case sensitive");
1362 void MyFrame::OnFindDialog(wxFindDialogEvent
& event
)
1364 wxEventType type
= event
.GetEventType();
1366 if ( type
== wxEVT_COMMAND_FIND
|| type
== wxEVT_COMMAND_FIND_NEXT
)
1368 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
1369 type
== wxEVT_COMMAND_FIND_NEXT
? wxT("next ") : wxT(""),
1370 event
.GetFindString().c_str(),
1371 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1373 else if ( type
== wxEVT_COMMAND_FIND_REPLACE
||
1374 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
)
1376 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
1377 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
? _T("all ") : wxT(""),
1378 event
.GetFindString().c_str(),
1379 event
.GetReplaceString().c_str(),
1380 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1382 else if ( type
== wxEVT_COMMAND_FIND_CLOSE
)
1384 wxFindReplaceDialog
*dlg
= event
.GetDialog();
1388 if ( dlg
== m_dlgFind
)
1391 idMenu
= DIALOGS_FIND
;
1394 else if ( dlg
== m_dlgReplace
)
1396 txt
= _T("Replace");
1397 idMenu
= DIALOGS_REPLACE
;
1398 m_dlgReplace
= NULL
;
1402 txt
= _T("Unknown");
1405 wxFAIL_MSG( _T("unexpected event") );
1408 wxLogMessage(wxT("%s dialog is being closed."), txt
);
1410 if ( idMenu
!= wxID_ANY
)
1412 GetMenuBar()->Check(idMenu
, false);
1419 wxLogError(wxT("Unknown find dialog event!"));
1423 #endif // wxUSE_FINDREPLDLG
1425 // ----------------------------------------------------------------------------
1427 // ----------------------------------------------------------------------------
1429 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
1432 dc
.SetFont(wxGetApp().m_canvasFont
);
1433 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
1434 dc
.SetBackgroundMode(wxTRANSPARENT
);
1436 _T("wxWidgets common dialogs")
1437 #if !defined(__SMARTPHONE__)
1438 _T(" test application")
1443 #if USE_MODAL_PRESENTATION
1445 // ----------------------------------------------------------------------------
1447 // ----------------------------------------------------------------------------
1449 MyModelessDialog::MyModelessDialog(wxWindow
*parent
)
1450 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modeless dialog")))
1452 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
1454 wxButton
*btn
= new wxButton(this, DIALOGS_MODELESS_BTN
, _T("Press me"));
1455 wxCheckBox
*check
= new wxCheckBox(this, wxID_ANY
, _T("Should be disabled"));
1458 sizerTop
->Add(btn
, 1, wxEXPAND
| wxALL
, 5);
1459 sizerTop
->Add(check
, 1, wxEXPAND
| wxALL
, 5);
1463 sizerTop
->SetSizeHints(this);
1464 sizerTop
->Fit(this);
1467 void MyModelessDialog::OnButton(wxCommandEvent
& WXUNUSED(event
))
1469 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
1470 wxOK
| wxICON_INFORMATION
, this);
1473 void MyModelessDialog::OnClose(wxCloseEvent
& event
)
1475 if ( event
.CanVeto() )
1477 wxMessageBox(_T("Use the menu item to close this dialog"),
1478 _T("Modeless dialog"),
1479 wxOK
| wxICON_INFORMATION
, this);
1485 // ----------------------------------------------------------------------------
1487 // ----------------------------------------------------------------------------
1489 MyModalDialog::MyModalDialog(wxWindow
*parent
)
1490 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modal dialog")))
1492 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1494 m_btnModal
= new wxButton(this, wxID_ANY
, _T("&Modal dialog..."));
1495 m_btnModeless
= new wxButton(this, wxID_ANY
, _T("Mode&less dialog"));
1496 m_btnDelete
= new wxButton(this, wxID_ANY
, _T("&Delete button"));
1498 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _T("&Close"));
1499 sizerTop
->Add(m_btnModal
, 0, wxALIGN_CENTER
| wxALL
, 5);
1500 sizerTop
->Add(m_btnModeless
, 0, wxALIGN_CENTER
| wxALL
, 5);
1501 sizerTop
->Add(m_btnDelete
, 0, wxALIGN_CENTER
| wxALL
, 5);
1502 sizerTop
->Add(btnOk
, 0, wxALIGN_CENTER
| wxALL
, 5);
1506 sizerTop
->SetSizeHints(this);
1507 sizerTop
->Fit(this);
1509 m_btnModal
->SetFocus();
1510 m_btnModal
->SetDefault();
1513 void MyModalDialog::OnButton(wxCommandEvent
& event
)
1515 if ( event
.GetEventObject() == m_btnDelete
)
1520 m_btnDelete
->Disable();
1522 else if ( event
.GetEventObject() == m_btnModal
)
1525 wxGetTextFromUser(_T("Dummy prompt"),
1526 _T("Modal dialog called from dialog"),
1527 wxEmptyString
, this);
1529 wxMessageBox(_T("Modal dialog called from dialog"));
1530 #endif // wxUSE_TEXTDLG
1532 else if ( event
.GetEventObject() == m_btnModeless
)
1534 (new MyModelessDialog(this))->Show();
1542 #endif // USE_MODAL_PRESENTATION
1544 #if USE_SETTINGS_DIALOG
1545 // ----------------------------------------------------------------------------
1547 // ----------------------------------------------------------------------------
1549 IMPLEMENT_CLASS(SettingsDialog
, wxPropertySheetDialog
)
1551 BEGIN_EVENT_TABLE(SettingsDialog
, wxPropertySheetDialog
)
1554 SettingsDialog::SettingsDialog(wxWindow
* win
, int dialogType
)
1556 SetExtraStyle(wxDIALOG_EX_CONTEXTHELP
|wxWS_EX_VALIDATE_RECURSIVELY
);
1561 bool useToolBook
= (dialogType
== DIALOGS_PROPERTY_SHEET_TOOLBOOK
|| dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
);
1562 int resizeBorder
= wxRESIZE_BORDER
;
1570 int sheetStyle
= wxPROPSHEET_SHRINKTOFIT
;
1571 if (dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
)
1572 sheetStyle
|= wxPROPSHEET_BUTTONTOOLBOOK
;
1574 sheetStyle
|= wxPROPSHEET_TOOLBOOK
;
1576 SetSheetStyle(sheetStyle
);
1577 SetSheetInnerBorder(0);
1578 SetSheetOuterBorder(0);
1580 // create a dummy image list with a few icons
1581 const wxSize
imageSize(32, 32);
1583 m_imageList
= new wxImageList(imageSize
.GetWidth(), imageSize
.GetHeight());
1585 Add(wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_OTHER
, imageSize
));
1587 Add(wxArtProvider::GetIcon(wxART_QUESTION
, wxART_OTHER
, imageSize
));
1589 Add(wxArtProvider::GetIcon(wxART_WARNING
, wxART_OTHER
, imageSize
));
1591 Add(wxArtProvider::GetIcon(wxART_ERROR
, wxART_OTHER
, imageSize
));
1596 Create(win
, wxID_ANY
, _("Preferences"), wxDefaultPosition
, wxDefaultSize
,
1597 wxDEFAULT_DIALOG_STYLE
| (int)wxPlatform::IfNot(wxOS_WINDOWS_CE
, resizeBorder
)
1600 // If using a toolbook, also follow Mac style and don't create buttons
1602 CreateButtons(wxOK
| wxCANCEL
|
1603 (int)wxPlatform::IfNot(wxOS_WINDOWS_CE
, wxHELP
)
1606 wxBookCtrlBase
* notebook
= GetBookCtrl();
1607 notebook
->SetImageList(m_imageList
);
1609 wxPanel
* generalSettings
= CreateGeneralSettingsPage(notebook
);
1610 wxPanel
* aestheticSettings
= CreateAestheticSettingsPage(notebook
);
1612 notebook
->AddPage(generalSettings
, _("General"), true, tabImage1
);
1613 notebook
->AddPage(aestheticSettings
, _("Aesthetics"), false, tabImage2
);
1618 SettingsDialog::~SettingsDialog()
1623 wxPanel
* SettingsDialog::CreateGeneralSettingsPage(wxWindow
* parent
)
1625 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
1627 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
1628 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
1632 wxBoxSizer
* itemSizer3
= new wxBoxSizer( wxHORIZONTAL
);
1633 wxCheckBox
* checkBox3
= new wxCheckBox(panel
, ID_LOAD_LAST_PROJECT
, _("&Load last project on startup"), wxDefaultPosition
, wxDefaultSize
);
1634 itemSizer3
->Add(checkBox3
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1635 item0
->Add(itemSizer3
, 0, wxGROW
|wxALL
, 0);
1639 wxString autoSaveLabel
= _("&Auto-save every");
1640 wxString minsLabel
= _("mins");
1642 wxBoxSizer
* itemSizer12
= new wxBoxSizer( wxHORIZONTAL
);
1643 wxCheckBox
* checkBox12
= new wxCheckBox(panel
, ID_AUTO_SAVE
, autoSaveLabel
, wxDefaultPosition
, wxDefaultSize
);
1646 wxSpinCtrl
* spinCtrl12
= new wxSpinCtrl(panel
, ID_AUTO_SAVE_MINS
, wxEmptyString
,
1647 wxDefaultPosition
, wxSize(40, wxDefaultCoord
), wxSP_ARROW_KEYS
, 1, 60, 1);
1650 itemSizer12
->Add(checkBox12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1652 itemSizer12
->Add(spinCtrl12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1654 itemSizer12
->Add(new wxStaticText(panel
, wxID_STATIC
, minsLabel
), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1655 item0
->Add(itemSizer12
, 0, wxGROW
|wxALL
, 0);
1659 wxBoxSizer
* itemSizer8
= new wxBoxSizer( wxHORIZONTAL
);
1660 wxCheckBox
* checkBox6
= new wxCheckBox(panel
, ID_SHOW_TOOLTIPS
, _("Show &tooltips"), wxDefaultPosition
, wxDefaultSize
);
1661 itemSizer8
->Add(checkBox6
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1662 item0
->Add(itemSizer8
, 0, wxGROW
|wxALL
, 0);
1664 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
1666 panel
->SetSizer(topSizer
);
1667 topSizer
->Fit(panel
);
1672 wxPanel
* SettingsDialog::CreateAestheticSettingsPage(wxWindow
* parent
)
1674 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
1676 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
1677 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
1679 //// PROJECT OR GLOBAL
1680 wxString globalOrProjectChoices
[2];
1681 globalOrProjectChoices
[0] = _("&New projects");
1682 globalOrProjectChoices
[1] = _("&This project");
1684 wxRadioBox
* projectOrGlobal
= new wxRadioBox(panel
, ID_APPLY_SETTINGS_TO
, _("&Apply settings to:"),
1685 wxDefaultPosition
, wxDefaultSize
, 2, globalOrProjectChoices
);
1686 item0
->Add(projectOrGlobal
, 0, wxGROW
|wxALL
, 5);
1688 projectOrGlobal
->SetSelection(0);
1690 //// BACKGROUND STYLE
1691 wxArrayString backgroundStyleChoices
;
1692 backgroundStyleChoices
.Add(wxT("Colour"));
1693 backgroundStyleChoices
.Add(wxT("Image"));
1694 wxStaticBox
* staticBox3
= new wxStaticBox(panel
, wxID_ANY
, _("Background style:"));
1696 wxBoxSizer
* styleSizer
= new wxStaticBoxSizer( staticBox3
, wxVERTICAL
);
1697 item0
->Add(styleSizer
, 0, wxGROW
|wxALL
, 5);
1699 wxBoxSizer
* itemSizer2
= new wxBoxSizer( wxHORIZONTAL
);
1701 wxChoice
* choice2
= new wxChoice(panel
, ID_BACKGROUND_STYLE
, wxDefaultPosition
, wxDefaultSize
, backgroundStyleChoices
);
1703 itemSizer2
->Add(new wxStaticText(panel
, wxID_ANY
, _("&Window:")), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1704 itemSizer2
->Add(5, 5, 1, wxALL
, 0);
1705 itemSizer2
->Add(choice2
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1707 styleSizer
->Add(itemSizer2
, 0, wxGROW
|wxALL
, 5);
1710 //// FONT SIZE SELECTION
1712 wxStaticBox
* staticBox1
= new wxStaticBox(panel
, wxID_ANY
, _("Tile font size:"));
1713 wxBoxSizer
* itemSizer5
= new wxStaticBoxSizer( staticBox1
, wxHORIZONTAL
);
1715 wxSpinCtrl
* spinCtrl
= new wxSpinCtrl(panel
, ID_FONT_SIZE
, wxEmptyString
, wxDefaultPosition
,
1716 wxSize(80, wxDefaultCoord
));
1717 itemSizer5
->Add(spinCtrl
, 0, wxALL
|wxALIGN_CENTER_HORIZONTAL
|wxALIGN_CENTER_VERTICAL
, 5);
1719 item0
->Add(itemSizer5
, 0, wxGROW
|wxLEFT
|wxRIGHT
, 5);
1722 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
1723 topSizer
->AddSpacer(5);
1725 panel
->SetSizer(topSizer
);
1726 topSizer
->Fit(panel
);
1731 #endif // USE_SETTINGS_DIALOG