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 #if defined(__GNUG__) && !defined(__APPLE__)
13 #pragma implementation
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
28 #include "wx/datetime.h"
32 #include "wx/colordlg.h"
33 #endif // wxUSE_COLOURDLG
36 #include "wx/choicdlg.h"
37 #endif // wxUSE_CHOICEDLG
39 #if wxUSE_STARTUP_TIPS
40 #include "wx/tipdlg.h"
41 #endif // wxUSE_STARTUP_TIPS
44 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
45 #include <wx/datetime.h> // wxDateTime
48 #include "wx/progdlg.h"
49 #endif // wxUSE_PROGRESSDLG
52 #include "wx/busyinfo.h"
53 #endif // wxUSE_BUSYINFO
56 #include "wx/numdlg.h"
57 #endif // wxUSE_NUMBERDLG
60 #include "wx/filedlg.h"
61 #endif // wxUSE_FILEDLG
64 #include "wx/dirdlg.h"
65 #endif // wxUSE_DIRDLG
68 #include "wx/fontdlg.h"
69 #endif // wxUSE_FONTDLG
72 #include "wx/fdrepdlg.h"
73 #endif // wxUSE_FINDREPLDLG
77 #if USE_COLOURDLG_GENERIC
78 #include "wx/generic/colrdlgg.h"
79 #endif // USE_COLOURDLG_GENERIC
81 #if USE_DIRDLG_GENERIC
82 #include "wx/generic/dirdlgg.h"
83 #endif // USE_DIRDLG_GENERIC
85 #if USE_FILEDLG_GENERIC
86 #include "wx/generic/filedlgg.h"
87 #endif // USE_FILEDLG_GENERIC
89 #if USE_FONTDLG_GENERIC
90 #include "wx/generic/fontdlgg.h"
91 #endif // USE_FONTDLG_GENERIC
95 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
96 EVT_PAINT(MyCanvas::OnPaint
)
101 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
102 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
105 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
106 #endif // wxUSE_COLOURDLG
109 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
110 #endif // wxUSE_FONTDLG
113 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
114 #endif // wxUSE_LOG_DIALOG
117 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
118 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
119 #endif // wxUSE_TEXTDLG
122 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
123 #endif // wxUSE_NUMBERDLG
126 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
127 EVT_MENU(DIALOGS_MULTI_CHOICE
, MyFrame::MultiChoice
)
128 #endif // wxUSE_CHOICEDLG
131 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
132 EVT_MENU(DIALOGS_FILE_OPEN2
, MyFrame::FileOpen2
)
133 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
134 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
135 #endif // wxUSE_FILEDLG
137 #if USE_FILEDLG_GENERIC
138 EVT_MENU(DIALOGS_FILE_OPEN_GENERIC
, MyFrame::FileOpenGeneric
)
139 EVT_MENU(DIALOGS_FILES_OPEN_GENERIC
, MyFrame::FilesOpenGeneric
)
140 EVT_MENU(DIALOGS_FILE_SAVE_GENERIC
, MyFrame::FileSaveGeneric
)
141 #endif // USE_FILEDLG_GENERIC
144 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
145 EVT_MENU(DIALOGS_DIRNEW_CHOOSE
, MyFrame::DirChooseNew
)
146 #endif // wxUSE_DIRDLG
148 #if USE_MODAL_PRESENTATION
149 EVT_MENU(DIALOGS_MODAL
, MyFrame::ModalDlg
)
150 EVT_MENU(DIALOGS_MODELESS
, MyFrame::ModelessDlg
)
153 #if wxUSE_STARTUP_TIPS
154 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
155 #endif // wxUSE_STARTUP_TIPS
157 #if USE_FONTDLG_GENERIC
158 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
159 #endif // USE_FONTDLG_GENERIC
161 #if USE_DIRDLG_GENERIC
162 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE
, MyFrame::GenericDirChoose
)
163 #endif // wxMSW || wxMAC
165 #if USE_COLOURDLG_GENERIC
166 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
167 #endif // USE_COLOURDLG_GENERIC
169 #if wxUSE_PROGRESSDLG
170 EVT_MENU(DIALOGS_PROGRESS
, MyFrame::ShowProgress
)
171 #endif // wxUSE_PROGRESSDLG
174 EVT_MENU(DIALOGS_BUSYINFO
, MyFrame::ShowBusyInfo
)
175 #endif // wxUSE_BUSYINFO
177 #if wxUSE_FINDREPLDLG
178 EVT_MENU(DIALOGS_FIND
, MyFrame::ShowFindDialog
)
179 EVT_MENU(DIALOGS_REPLACE
, MyFrame::ShowReplaceDialog
)
181 EVT_FIND(wxID_ANY
, MyFrame::OnFindDialog
)
182 EVT_FIND_NEXT(wxID_ANY
, MyFrame::OnFindDialog
)
183 EVT_FIND_REPLACE(wxID_ANY
, MyFrame::OnFindDialog
)
184 EVT_FIND_REPLACE_ALL(wxID_ANY
, MyFrame::OnFindDialog
)
185 EVT_FIND_CLOSE(wxID_ANY
, MyFrame::OnFindDialog
)
186 #endif // wxUSE_FINDREPLDLG
188 EVT_MENU(DIALOGS_REQUEST
, MyFrame::OnRequestUserAttention
)
190 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
193 #if USE_MODAL_PRESENTATION
195 BEGIN_EVENT_TABLE(MyModalDialog
, wxDialog
)
196 EVT_BUTTON(wxID_ANY
, MyModalDialog::OnButton
)
199 BEGIN_EVENT_TABLE(MyModelessDialog
, wxDialog
)
200 EVT_BUTTON(DIALOGS_MODELESS_BTN
, MyModelessDialog::OnButton
)
201 EVT_CLOSE(MyModelessDialog::OnClose
)
204 #endif // USE_MODAL_PRESENTATION
206 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
208 // `Main program' equivalent, creating windows and returning main app frame
212 wxInitAllImageHandlers();
215 m_canvasTextColour
= wxColour(_T("BLACK"));
216 m_canvasFont
= *wxNORMAL_FONT
;
218 // Create the main frame window
219 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets dialogs example"));
222 wxMenu
*file_menu
= new wxMenu
;
224 file_menu
->Append(DIALOGS_MESSAGE_BOX
, _T("&Message box\tCtrl-M"));
227 #if wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
229 wxMenu
*choices_menu
= new wxMenu
;
232 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR
, _T("&Choose colour"));
233 #endif // wxUSE_COLOURDLG
236 choices_menu
->Append(DIALOGS_CHOOSE_FONT
, _T("Choose &font"));
237 #endif // wxUSE_FONTDLG
240 choices_menu
->Append(DIALOGS_SINGLE_CHOICE
, _T("&Single choice\tCtrl-C"));
241 choices_menu
->Append(DIALOGS_MULTI_CHOICE
, _T("M&ultiple choice\tCtrl-U"));
242 #endif // wxUSE_CHOICEDLG
244 #if USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
245 choices_menu
->AppendSeparator();
246 #endif // USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
248 #if USE_COLOURDLG_GENERIC
249 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, _T("&Choose colour (generic)"));
250 #endif // USE_COLOURDLG_GENERIC
252 #if USE_FONTDLG_GENERIC
253 choices_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, _T("Choose &font (generic)"));
254 #endif // USE_FONTDLG_GENERIC
256 file_menu
->Append(wxID_ANY
,_T("&Choices and selectors"),choices_menu
);
257 #endif // wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
260 #if wxUSE_TEXTDLG || wxUSE_NUMBERDLG
262 wxMenu
*entry_menu
= new wxMenu
;
265 entry_menu
->Append(DIALOGS_TEXT_ENTRY
, _T("Text &entry\tCtrl-E"));
266 entry_menu
->Append(DIALOGS_PASSWORD_ENTRY
, _T("&Password entry\tCtrl-P"));
267 #endif // wxUSE_TEXTDLG
270 entry_menu
->Append(DIALOGS_NUM_ENTRY
, _T("&Numeric entry\tCtrl-N"));
271 #endif // wxUSE_NUMBERDLG
273 file_menu
->Append(wxID_ANY
,_T("&Entry dialogs"),entry_menu
);
275 #endif // wxUSE_TEXTDLG || wxUSE_NUMBERDLG
280 wxMenu
*filedlg_menu
= new wxMenu
;
281 filedlg_menu
->Append(DIALOGS_FILE_OPEN
, _T("&Open file\tCtrl-O"));
282 filedlg_menu
->Append(DIALOGS_FILE_OPEN2
, _T("&Second open file\tCtrl-2"));
283 filedlg_menu
->Append(DIALOGS_FILES_OPEN
, _T("Open &files\tCtrl-Q"));
284 filedlg_menu
->Append(DIALOGS_FILE_SAVE
, _T("Sa&ve file\tCtrl-S"));
286 #if USE_FILEDLG_GENERIC
287 filedlg_menu
->AppendSeparator();
288 filedlg_menu
->Append(DIALOGS_FILE_OPEN_GENERIC
, _T("&Open file (generic)"));
289 filedlg_menu
->Append(DIALOGS_FILES_OPEN_GENERIC
, _T("Open &files (generic)"));
290 filedlg_menu
->Append(DIALOGS_FILE_SAVE_GENERIC
, _T("Sa&ve file (generic)"));
291 #endif // USE_FILEDLG_GENERIC
293 file_menu
->Append(wxID_ANY
,_T("&File operations"),filedlg_menu
);
295 #endif // wxUSE_FILEDLG
298 wxMenu
*dir_menu
= new wxMenu
;
300 dir_menu
->Append(DIALOGS_DIR_CHOOSE
, _T("&Choose a directory\tCtrl-D"));
301 dir_menu
->Append(DIALOGS_DIRNEW_CHOOSE
, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
302 file_menu
->Append(wxID_ANY
,_T("&Directory operations"),dir_menu
);
304 #if USE_DIRDLG_GENERIC
305 dir_menu
->AppendSeparator();
306 dir_menu
->Append(DIALOGS_GENERIC_DIR_CHOOSE
, _T("&Choose a directory (generic)"));
307 #endif // USE_DIRDLG_GENERIC
309 #endif // wxUSE_DIRDLG
312 #if wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
314 wxMenu
*info_menu
= new wxMenu
;
316 #if wxUSE_STARTUP_TIPS
317 info_menu
->Append(DIALOGS_TIP
, _T("&Tip of the day\tCtrl-T"));
318 #endif // wxUSE_STARTUP_TIPS
320 #if wxUSE_PROGRESSDLG
321 info_menu
->Append(DIALOGS_PROGRESS
, _T("Pro&gress dialog\tCtrl-G"));
322 #endif // wxUSE_PROGRESSDLG
325 info_menu
->Append(DIALOGS_BUSYINFO
, _T("&Busy info dialog\tCtrl-B"));
326 #endif // wxUSE_BUSYINFO
329 info_menu
->Append(DIALOGS_LOG_DIALOG
, _T("&Log dialog\tCtrl-L"));
330 #endif // wxUSE_LOG_DIALOG
332 file_menu
->Append(wxID_ANY
,_T("&Informative dialogs"),info_menu
);
334 #endif // wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
337 #if wxUSE_FINDREPLDLG
338 wxMenu
*find_menu
= new wxMenu
;
339 find_menu
->AppendCheckItem(DIALOGS_FIND
, _T("&Find dialog\tCtrl-F"));
340 find_menu
->AppendCheckItem(DIALOGS_REPLACE
, _T("Find and &replace dialog\tShift-Ctrl-F"));
341 file_menu
->Append(wxID_ANY
,_T("&Searching"),find_menu
);
342 #endif // wxUSE_FINDREPLDLG
344 #if USE_MODAL_PRESENTATION
345 wxMenu
*modal_menu
= new wxMenu
;
346 modal_menu
->Append(DIALOGS_MODAL
, _T("Mo&dal dialog\tCtrl-W"));
347 modal_menu
->AppendCheckItem(DIALOGS_MODELESS
, _T("Modeless &dialog\tCtrl-Z"));
348 file_menu
->Append(wxID_ANY
,_T("&Modal/Modeless"),modal_menu
);
349 #endif // USE_MODAL_PRESENTATION
351 file_menu
->Append(DIALOGS_REQUEST
, _T("&Request user attention\tCtrl-R"));
353 file_menu
->AppendSeparator();
354 file_menu
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"));
356 wxMenuBar
*menu_bar
= new wxMenuBar
;
357 menu_bar
->Append(file_menu
, _T("&File"));
358 frame
->SetMenuBar(menu_bar
);
360 myCanvas
= new MyCanvas(frame
);
361 myCanvas
->SetBackgroundColour(*wxWHITE
);
363 frame
->Centre(wxBOTH
);
373 // My frame constructor
374 MyFrame::MyFrame(wxWindow
*parent
,
375 const wxString
& title
)
376 : wxFrame(parent
, wxID_ANY
, title
)
378 #if USE_MODAL_PRESENTATION
379 m_dialog
= (MyModelessDialog
*)NULL
;
380 #endif // USE_MODAL_PRESENTATION
382 #if wxUSE_FINDREPLDLG
388 m_clrData
.SetChooseFull(true);
389 for (int i
= 0; i
< 16; i
++)
391 m_clrData
.SetCustomColour(
394 (unsigned char)(i
*16),
395 (unsigned char)(i
*16),
396 (unsigned char)(i
*16)
400 #endif // wxUSE_COLOURDLG
404 #endif // wxUSE_STATUSBAR
408 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
410 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
412 wxColourDialog
dialog(this, &m_clrData
);
413 dialog
.SetTitle(_T("Choose the background colour"));
414 if (dialog
.ShowModal() == wxID_OK
)
416 m_clrData
= dialog
.GetColourData();
417 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
418 myCanvas
->ClearBackground();
422 #endif // wxUSE_COLOURDLG
424 #if USE_COLOURDLG_GENERIC
425 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
427 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
429 //FIXME:TODO:This has no effect...
430 m_clrData
.SetChooseFull(true);
432 for (int i
= 0; i
< 16; i
++)
435 (unsigned char)(i
*16),
436 (unsigned char)(i
*16),
437 (unsigned char)(i
*16)
439 m_clrData
.SetCustomColour(i
, colour
);
442 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &m_clrData
);
443 if (dialog
->ShowModal() == wxID_OK
)
445 m_clrData
= dialog
->GetColourData();
446 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
447 myCanvas
->ClearBackground();
452 #endif // USE_COLOURDLG_GENERIC
455 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
458 data
.SetInitialFont(wxGetApp().m_canvasFont
);
459 data
.SetColour(wxGetApp().m_canvasTextColour
);
461 // you might also do this:
463 // wxFontDialog dialog;
464 // if ( !dialog.Create(this, data) { ... error ... }
466 wxFontDialog
dialog(this, data
);
468 if (dialog
.ShowModal() == wxID_OK
)
470 wxFontData retData
= dialog
.GetFontData();
471 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
472 wxGetApp().m_canvasTextColour
= retData
.GetColour();
475 //else: cancelled by the user, don't change the font
477 #endif // wxUSE_FONTDLG
479 #if USE_FONTDLG_GENERIC
480 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
483 data
.SetInitialFont(wxGetApp().m_canvasFont
);
484 data
.SetColour(wxGetApp().m_canvasTextColour
);
486 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, &data
);
487 if (dialog
->ShowModal() == wxID_OK
)
489 wxFontData retData
= dialog
->GetFontData();
490 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
491 wxGetApp().m_canvasTextColour
= retData
.GetColour();
496 #endif // USE_FONTDLG_GENERIC
499 void MyFrame::LogDialog(wxCommandEvent
& WXUNUSED(event
))
501 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
502 // being flushed -- test it
505 wxLogMessage(wxT("This is some message - everything is ok so far."));
506 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
507 wxLogWarning(wxT("And then something went wrong!"));
509 // and if ~wxBusyCursor doesn't do it, then call it manually
513 wxLogError(wxT("Intermediary error handler decided to abort."));
514 wxLogError(wxT("The top level caller detected an unrecoverable error."));
516 wxLog::FlushActive();
518 wxLogMessage(wxT("And this is the same dialog but with only one message."));
520 #endif // wxUSE_LOG_DIALOG
522 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
524 wxMessageDialog
dialog( NULL
, _T("This is a message box\nA long, long string to test out the message box properly"),
525 _T("Message box text"), wxNO_DEFAULT
|wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
527 switch ( dialog
.ShowModal() )
530 wxLogStatus(wxT("You pressed \"Yes\""));
534 wxLogStatus(wxT("You pressed \"No\""));
538 wxLogStatus(wxT("You pressed \"Cancel\""));
542 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
547 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
) )
549 long res
= wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
550 _T("Even two rows of text."),
551 _T("Enter a number:"), _T("Numeric input test"),
558 msg
= _T("Invalid number entered or dialog cancelled.");
563 msg
.Printf(_T("You've entered %lu"), res
);
564 icon
= wxICON_INFORMATION
;
567 wxMessageBox(msg
, _T("Numeric test result"), wxOK
| icon
, this);
569 #endif // wxUSE_NUMBERDLG
572 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
574 wxString pwd
= wxGetPasswordFromUser(_T("Enter password:"),
575 _T("Password entry dialog"),
580 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd
.c_str()),
581 _T("Got password"), wxOK
| wxICON_INFORMATION
, this);
585 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
587 wxTextEntryDialog
dialog(this,
588 _T("This is a small sample\n")
589 _T("A long, long string to test out the text entrybox"),
590 _T("Please enter a string"),
594 if (dialog
.ShowModal() == wxID_OK
)
596 wxMessageBox(dialog
.GetValue(), _T("Got string"), wxOK
| wxICON_INFORMATION
, this);
599 #endif // wxUSE_TEXTDLG
602 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
604 const wxString choices
[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
606 wxSingleChoiceDialog
dialog(this,
607 _T("This is a small sample\n")
608 _T("A single-choice convenience dialog"),
609 _T("Please select a value"),
610 WXSIZEOF(choices
), choices
);
612 dialog
.SetSelection(2);
614 if (dialog
.ShowModal() == wxID_OK
)
616 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), _T("Got string"));
621 void MyFrame::MultiChoice(wxCommandEvent
& WXUNUSED(event
) )
623 const wxString choices
[] =
625 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
626 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
627 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
630 wxArrayInt selections
;
631 size_t count
= wxGetMultipleChoices(selections
,
632 _T("This is a small sample\n")
633 _T("A multi-choice convenience dialog"),
634 _T("Please select a value"),
635 WXSIZEOF(choices
), choices
,
640 msg
.Printf(wxT("You selected %u items:\n"), (unsigned)count
);
641 for ( size_t n
= 0; n
< count
; n
++ )
643 msg
+= wxString::Format(wxT("\t%u: %u (%s)\n"),
644 (unsigned)n
, (unsigned)selections
[n
],
645 choices
[selections
[n
]].c_str());
649 //else: cancelled or nothing selected
651 #endif // wxUSE_CHOICEDLG
654 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
659 _T("Testing open file dialog"),
663 _T("C++ files (*.cpp)|*.cpp")
665 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
669 dialog
.SetDirectory(wxGetHomeDir());
671 if (dialog
.ShowModal() == wxID_OK
)
674 info
.Printf(_T("Full file name: %s\n")
677 dialog
.GetPath().c_str(),
678 dialog
.GetDirectory().c_str(),
679 dialog
.GetFilename().c_str());
680 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
685 // this shows how to take advantage of specifying a default extension in the
686 // call to wxFileSelector: it is remembered after each new call and the next
687 // one will use it by default
688 void MyFrame::FileOpen2(wxCommandEvent
& WXUNUSED(event
) )
690 static wxString s_extDef
;
691 wxString path
= wxFileSelector(
692 _T("Select the file to load"),
693 wxEmptyString
, wxEmptyString
,
695 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (*.*)|*.*"),
703 // it is just a sample, would use wxSplitPath in real program
704 s_extDef
= path
.AfterLast(_T('.'));
706 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
707 (const wxChar
*) path
, (const wxChar
*) s_extDef
);
710 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
714 _T("C++ files (*.cpp)|*.cpp");
716 _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
718 wxFileDialog
dialog(this, _T("Testing open multiple file dialog"),
719 wxEmptyString
, wxEmptyString
, wildcards
,
722 if (dialog
.ShowModal() == wxID_OK
)
724 wxArrayString paths
, filenames
;
726 dialog
.GetPaths(paths
);
727 dialog
.GetFilenames(filenames
);
730 size_t count
= paths
.GetCount();
731 for ( size_t n
= 0; n
< count
; n
++ )
733 s
.Printf(_T("File %d: %s (%s)\n"),
734 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
738 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
741 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
746 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
748 wxFileDialog
dialog(this,
749 _T("Testing save file dialog"),
752 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
753 wxSAVE
|wxOVERWRITE_PROMPT
);
755 dialog
.SetFilterIndex(1);
757 if (dialog
.ShowModal() == wxID_OK
)
759 wxLogMessage(_T("%s, filter %d"),
760 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
763 #endif // wxUSE_FILEDLG
765 #if USE_FILEDLG_GENERIC
766 void MyFrame::FileOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
768 wxGenericFileDialog dialog
771 _T("Testing open file dialog"),
774 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
777 dialog
.SetDirectory(wxGetHomeDir());
779 if (dialog
.ShowModal() == wxID_OK
)
782 info
.Printf(_T("Full file name: %s\n")
785 dialog
.GetPath().c_str(),
786 dialog
.GetDirectory().c_str(),
787 dialog
.GetFilename().c_str());
788 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
793 void MyFrame::FilesOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
795 wxString wildcards
= _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
796 wxGenericFileDialog
dialog(this, _T("Testing open multiple file dialog"),
797 wxEmptyString
, wxEmptyString
, wildcards
,
800 if (dialog
.ShowModal() == wxID_OK
)
802 wxArrayString paths
, filenames
;
804 dialog
.GetPaths(paths
);
805 dialog
.GetFilenames(filenames
);
808 size_t count
= paths
.GetCount();
809 for ( size_t n
= 0; n
< count
; n
++ )
811 s
.Printf(_T("File %d: %s (%s)\n"),
812 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
816 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
819 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
824 void MyFrame::FileSaveGeneric(wxCommandEvent
& WXUNUSED(event
) )
826 wxGenericFileDialog
dialog(this,
827 _T("Testing save file dialog"),
830 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
831 wxSAVE
|wxOVERWRITE_PROMPT
);
833 dialog
.SetFilterIndex(1);
835 if (dialog
.ShowModal() == wxID_OK
)
837 wxLogMessage(_T("%s, filter %d"),
838 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
841 #endif // USE_FILEDLG_GENERIC
844 void MyFrame::DoDirChoose(int style
)
846 // pass some initial dir to wxDirDialog
848 wxGetHomeDir(&dirHome
);
850 wxDirDialog
dialog(this, _T("Testing directory picker"), dirHome
, style
);
852 if (dialog
.ShowModal() == wxID_OK
)
854 wxLogMessage(_T("Selected path: %s"), dialog
.GetPath().c_str());
858 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
860 DoDirChoose(wxDD_DEFAULT_STYLE
& ~wxDD_NEW_DIR_BUTTON
);
863 void MyFrame::DirChooseNew(wxCommandEvent
& WXUNUSED(event
) )
865 DoDirChoose(wxDD_DEFAULT_STYLE
| wxDD_NEW_DIR_BUTTON
);
867 #endif // wxUSE_DIRDLG
869 #if USE_DIRDLG_GENERIC
870 void MyFrame::GenericDirChoose(wxCommandEvent
& WXUNUSED(event
) )
872 // pass some initial dir to wxDirDialog
874 wxGetHomeDir(&dirHome
);
876 wxGenericDirDialog
dialog(this, _T("Testing generic directory picker"), dirHome
);
878 if (dialog
.ShowModal() == wxID_OK
)
880 wxMessageDialog
dialog2(this, dialog
.GetPath(), _T("Selected path"));
884 #endif // USE_DIRDLG_GENERIC
886 #if USE_MODAL_PRESENTATION
887 void MyFrame::ModalDlg(wxCommandEvent
& WXUNUSED(event
))
889 MyModalDialog
dlg(this);
893 void MyFrame::ModelessDlg(wxCommandEvent
& event
)
895 bool show
= GetMenuBar()->IsChecked(event
.GetId());
901 m_dialog
= new MyModelessDialog(this);
904 m_dialog
->Show(true);
908 // If m_dialog is NULL, then possibly the system
909 // didn't report the checked menu item status correctly.
910 // It should be true just after the menu item was selected,
911 // if there was no modeless dialog yet.
913 wxASSERT( m_dialog
!= NULL
);
918 #endif // USE_MODAL_PRESENTATION
920 #if wxUSE_STARTUP_TIPS
921 void MyFrame::ShowTip(wxCommandEvent
& WXUNUSED(event
))
923 static size_t s_index
= (size_t)-1;
925 if ( s_index
== (size_t)-1 )
929 // this is completely bogus, we don't know how many lines are there
930 // in the file, but who cares, it's a demo only...
931 s_index
= rand() % 5;
934 wxTipProvider
*tipProvider
= wxCreateFileTipProvider(_T("tips.txt"), s_index
);
936 bool showAtStartup
= wxShowTip(this, tipProvider
);
940 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
941 wxOK
| wxICON_INFORMATION
, this);
944 s_index
= tipProvider
->GetCurrentTip();
947 #endif // wxUSE_STARTUP_TIPS
949 void MyFrame::OnRequestUserAttention(wxCommandEvent
& WXUNUSED(event
))
951 wxLogStatus(_T("Sleeping for 3 seconds to allow you to switch to another window"));
955 RequestUserAttention(wxUSER_ATTENTION_ERROR
);
958 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
963 #if wxUSE_PROGRESSDLG
965 void MyFrame::ShowProgress( wxCommandEvent
& WXUNUSED(event
) )
967 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
968 // check the performance
969 int countrandomnumbers
= 0, count
= 0;
970 wxTimeSpan
tsTest(0,0,0,250);
971 wxDateTime DT2
, DT1
= wxDateTime::UNow();
976 ++countrandomnumbers
;
977 if ( countrandomnumbers
== 1000 )
980 countrandomnumbers
= 0;
982 DT2
= wxDateTime::UNow();
983 wxTimeSpan ts
= DT2
.Subtract( DT1
);
984 if ( ts
.IsLongerThan( tsTest
) )
990 const int max
= 40 * count
;
992 static const int max
= 10;
993 #endif // wxUSE_STOPWATCH && wxUSE_LONGLONG
995 wxProgressDialog
dialog(_T("Progress dialog example"),
996 _T("An informative message"),
1002 // wxPD_AUTO_HIDE | -- try this as well
1004 wxPD_ESTIMATED_TIME
|
1005 wxPD_REMAINING_TIME
|
1010 // each skip will move progress about quarter forward
1011 for ( int i
= 0; i
<= max
; i
= wxMin(i
+(skip
?int(max
/4):1), max
+1), skip
= false )
1013 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1014 // do (almost) the same operations as we did for the performance test
1016 for ( int j
= 0; j
< 1000; j
++ )
1021 DT2
= wxDateTime::UNow();
1022 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1023 if ( ts
.IsLongerThan( tsTest
) )
1037 msg
= _T("That's all, folks!");
1039 else if ( i
> max
/ 2 )
1041 msg
= _T("Only a half left (very long message)!");
1044 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1045 if ( (i
% (max
/100)) == 0 ) // // only 100 updates, this makes it much faster
1047 cont
= dialog
.Update(i
, msg
, &skip
);
1050 cont
= dialog
.Update(i
, msg
, &skip
);
1055 if ( wxMessageBox(_T("Do you really want to cancel?"),
1056 _T("Progress dialog question"), // caption
1057 wxYES_NO
| wxICON_QUESTION
) == wxYES
)
1067 wxLogStatus(wxT("Progress dialog aborted!"));
1071 wxLogStatus(wxT("Countdown from %d finished"), max
);
1075 #endif // wxUSE_PROGRESSDLG
1079 void MyFrame::ShowBusyInfo(wxCommandEvent
& WXUNUSED(event
))
1081 wxWindowDisabler disableAll
;
1083 wxBusyInfo
info(_T("Working, please wait..."), this);
1085 for ( int i
= 0; i
< 18; i
++ )
1095 #endif // wxUSE_BUSYINFO
1097 #if wxUSE_FINDREPLDLG
1099 void MyFrame::ShowReplaceDialog( wxCommandEvent
& WXUNUSED(event
) )
1103 delete m_dlgReplace
;
1104 m_dlgReplace
= NULL
;
1108 m_dlgReplace
= new wxFindReplaceDialog
1112 _T("Find and replace dialog"),
1116 m_dlgReplace
->Show(true);
1120 void MyFrame::ShowFindDialog( wxCommandEvent
& WXUNUSED(event
) )
1129 m_dlgFind
= new wxFindReplaceDialog
1138 m_dlgFind
->Show(true);
1142 static wxString
DecodeFindDialogEventFlags(int flags
)
1145 str
<< (flags
& wxFR_DOWN
? _T("down") : _T("up")) << _T(", ")
1146 << (flags
& wxFR_WHOLEWORD
? _T("whole words only, ") : _T(""))
1147 << (flags
& wxFR_MATCHCASE
? _T("") : _T("not "))
1148 << _T("case sensitive");
1153 void MyFrame::OnFindDialog(wxFindDialogEvent
& event
)
1155 wxEventType type
= event
.GetEventType();
1157 if ( type
== wxEVT_COMMAND_FIND
|| type
== wxEVT_COMMAND_FIND_NEXT
)
1159 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
1160 type
== wxEVT_COMMAND_FIND_NEXT
? wxT("next ") : wxT(""),
1161 event
.GetFindString().c_str(),
1162 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1164 else if ( type
== wxEVT_COMMAND_FIND_REPLACE
||
1165 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
)
1167 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
1168 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
? _T("all ") : wxT(""),
1169 event
.GetFindString().c_str(),
1170 event
.GetReplaceString().c_str(),
1171 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1173 else if ( type
== wxEVT_COMMAND_FIND_CLOSE
)
1175 wxFindReplaceDialog
*dlg
= event
.GetDialog();
1179 if ( dlg
== m_dlgFind
)
1182 idMenu
= DIALOGS_FIND
;
1185 else if ( dlg
== m_dlgReplace
)
1187 txt
= _T("Replace");
1188 idMenu
= DIALOGS_REPLACE
;
1189 m_dlgReplace
= NULL
;
1193 txt
= _T("Unknown");
1196 wxFAIL_MSG( _T("unexpected event") );
1199 wxLogMessage(wxT("%s dialog is being closed."), txt
);
1201 if ( idMenu
!= wxID_ANY
)
1203 GetMenuBar()->Check(idMenu
, false);
1210 wxLogError(wxT("Unknown find dialog event!"));
1214 #endif // wxUSE_FINDREPLDLG
1216 // ----------------------------------------------------------------------------
1218 // ----------------------------------------------------------------------------
1220 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
1223 dc
.SetFont(wxGetApp().m_canvasFont
);
1224 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
1225 dc
.SetBackgroundMode(wxTRANSPARENT
);
1227 _T("wxWidgets common dialogs")
1228 #if !defined(__SMARTPHONE__)
1229 _T(" test application")
1234 #if USE_MODAL_PRESENTATION
1236 // ----------------------------------------------------------------------------
1238 // ----------------------------------------------------------------------------
1240 MyModelessDialog::MyModelessDialog(wxWindow
*parent
)
1241 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modeless dialog")))
1243 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
1245 wxButton
*btn
= new wxButton(this, DIALOGS_MODELESS_BTN
, _T("Press me"));
1246 wxCheckBox
*check
= new wxCheckBox(this, wxID_ANY
, _T("Should be disabled"));
1249 sizerTop
->Add(btn
, 1, wxEXPAND
| wxALL
, 5);
1250 sizerTop
->Add(check
, 1, wxEXPAND
| wxALL
, 5);
1254 sizerTop
->SetSizeHints(this);
1255 sizerTop
->Fit(this);
1258 void MyModelessDialog::OnButton(wxCommandEvent
& WXUNUSED(event
))
1260 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
1261 wxOK
| wxICON_INFORMATION
, this);
1264 void MyModelessDialog::OnClose(wxCloseEvent
& event
)
1266 if ( event
.CanVeto() )
1268 wxMessageBox(_T("Use the menu item to close this dialog"),
1269 _T("Modeless dialog"),
1270 wxOK
| wxICON_INFORMATION
, this);
1276 // ----------------------------------------------------------------------------
1278 // ----------------------------------------------------------------------------
1280 MyModalDialog::MyModalDialog(wxWindow
*parent
)
1281 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modal dialog")))
1283 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1285 m_btnModal
= new wxButton(this, wxID_ANY
, _T("&Modal dialog..."));
1286 m_btnModeless
= new wxButton(this, wxID_ANY
, _T("Mode&less dialog"));
1287 m_btnDelete
= new wxButton(this, wxID_ANY
, _T("&Delete button"));
1289 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _T("&Close"));
1290 sizerTop
->Add(m_btnModal
, 0, wxALIGN_CENTER
| wxALL
, 5);
1291 sizerTop
->Add(m_btnModeless
, 0, wxALIGN_CENTER
| wxALL
, 5);
1292 sizerTop
->Add(m_btnDelete
, 0, wxALIGN_CENTER
| wxALL
, 5);
1293 sizerTop
->Add(btnOk
, 0, wxALIGN_CENTER
| wxALL
, 5);
1297 sizerTop
->SetSizeHints(this);
1298 sizerTop
->Fit(this);
1300 m_btnModal
->SetFocus();
1301 m_btnModal
->SetDefault();
1304 void MyModalDialog::OnButton(wxCommandEvent
& event
)
1306 if ( event
.GetEventObject() == m_btnDelete
)
1311 m_btnDelete
->Disable();
1313 else if ( event
.GetEventObject() == m_btnModal
)
1316 wxGetTextFromUser(_T("Dummy prompt"),
1317 _T("Modal dialog called from dialog"),
1318 wxEmptyString
, this);
1320 wxMessageBox(_T("Modal dialog called from dialog"));
1321 #endif // wxUSE_TEXTDLG
1323 else if ( event
.GetEventObject() == m_btnModeless
)
1325 (new MyModelessDialog(this))->Show();
1333 #endif // USE_MODAL_PRESENTATION