]> git.saurik.com Git - wxWidgets.git/blame - samples/dialogs/dialogs.cpp
added tests for changing display resolution and going full screen
[wxWidgets.git] / samples / dialogs / dialogs.cpp
CommitLineData
457814b5
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialogs.cpp
3// Purpose: Common dialogs demo
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
c50f1fb9 9// Licence: wxWindows license
457814b5
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation
14#pragma interface
15#endif
16
17// For compilers that support precompilation, includes "wx/wx.h".
18#include "wx/wxprec.h"
19
20#ifdef __BORLANDC__
21#pragma hdrstop
22#endif
23
24#ifndef WX_PRECOMP
25#include "wx/wx.h"
26#endif
27
329e86bf
RR
28#include "wx/colordlg.h"
29#include "wx/filedlg.h"
30#include "wx/dirdlg.h"
31#include "wx/fontdlg.h"
32#include "wx/choicdlg.h"
33#include "wx/tipdlg.h"
abceee76 34#include "wx/progdlg.h"
761989ff 35#include "wx/fdrepdlg.h"
a62b0bcc 36#include "wx/busyinfo.h"
457814b5 37
dfad0599
JS
38#define wxTEST_GENERIC_DIALOGS_IN_MSW 0
39
40#if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
012f2cb2
GD
41#include "wx/generic/colrdlgg.h"
42#include "wx/generic/fontdlgg.h"
457814b5
JS
43#endif
44
7e5c1138 45#define wxUSE_DIRDLGG 0
d7d17624 46
4ad3c82f 47#if !defined(__WXMSW__) || defined(wxUSE_DIRDLGG) && wxUSE_DIRDLGG
d7d17624 48#include "wx/generic/dirdlgg.h"
4ad3c82f
VZ
49#endif
50
457814b5
JS
51#include "dialogs.h"
52
53IMPLEMENT_APP(MyApp)
54
4c45f240
VZ
55BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
56 EVT_PAINT(MyCanvas::OnPaint)
57END_EVENT_TABLE()
58
59BEGIN_EVENT_TABLE(MyFrame, wxFrame)
60 EVT_MENU(DIALOGS_CHOOSE_COLOUR, MyFrame::ChooseColour)
61 EVT_MENU(DIALOGS_CHOOSE_FONT, MyFrame::ChooseFont)
62 EVT_MENU(DIALOGS_LOG_DIALOG, MyFrame::LogDialog)
63 EVT_MENU(DIALOGS_MESSAGE_BOX, MyFrame::MessageBox)
64 EVT_MENU(DIALOGS_TEXT_ENTRY, MyFrame::TextEntry)
65 EVT_MENU(DIALOGS_PASSWORD_ENTRY, MyFrame::PasswordEntry)
66 EVT_MENU(DIALOGS_NUM_ENTRY, MyFrame::NumericEntry)
67 EVT_MENU(DIALOGS_SINGLE_CHOICE, MyFrame::SingleChoice)
d6c9c1b7 68 EVT_MENU(DIALOGS_MULTI_CHOICE, MyFrame::MultiChoice)
4c45f240 69 EVT_MENU(DIALOGS_FILE_OPEN, MyFrame::FileOpen)
35b45b33 70 EVT_MENU(DIALOGS_FILE_OPEN2, MyFrame::FileOpen2)
4c45f240
VZ
71 EVT_MENU(DIALOGS_FILES_OPEN, MyFrame::FilesOpen)
72 EVT_MENU(DIALOGS_FILE_SAVE, MyFrame::FileSave)
73 EVT_MENU(DIALOGS_DIR_CHOOSE, MyFrame::DirChoose)
f09c8393 74 EVT_MENU(DIALOGS_DIRNEW_CHOOSE, MyFrame::DirChooseNew)
af2b012d 75#if defined(__WXMSW__) || defined(__WXMAC__)
51a58d8b 76 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE, MyFrame::GenericDirChoose)
af2b012d 77#endif // wxMSW || wxMAC
f6bcfd97 78 EVT_MENU(DIALOGS_MODAL, MyFrame::ModalDlg)
4c45f240
VZ
79 EVT_MENU(DIALOGS_MODELESS, MyFrame::ModelessDlg)
80 EVT_MENU(DIALOGS_TIP, MyFrame::ShowTip)
81#if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
82 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC, MyFrame::ChooseColourGeneric)
83 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC, MyFrame::ChooseFontGeneric)
abceee76 84#endif
a62b0bcc 85
abceee76
VZ
86#if wxUSE_PROGRESSDLG
87 EVT_MENU(DIALOGS_PROGRESS, MyFrame::ShowProgress)
761989ff 88#endif // wxUSE_PROGRESSDLG
a62b0bcc
VZ
89
90#if wxUSE_BUSYINFO
91 EVT_MENU(DIALOGS_BUSYINFO, MyFrame::ShowBusyInfo)
92#endif // wxUSE_BUSYINFO
93
761989ff
VZ
94#if wxUSE_FINDREPLDLG
95 EVT_MENU(DIALOGS_FIND, MyFrame::ShowFindDialog)
96 EVT_MENU(DIALOGS_REPLACE, MyFrame::ShowReplaceDialog)
97
98 EVT_FIND(-1, MyFrame::OnFindDialog)
99 EVT_FIND_NEXT(-1, MyFrame::OnFindDialog)
100 EVT_FIND_REPLACE(-1, MyFrame::OnFindDialog)
101 EVT_FIND_REPLACE_ALL(-1, MyFrame::OnFindDialog)
102 EVT_FIND_CLOSE(-1, MyFrame::OnFindDialog)
103#endif // wxUSE_FINDREPLDLG
4c45f240 104 EVT_MENU(wxID_EXIT, MyFrame::OnExit)
4c45f240 105END_EVENT_TABLE()
abceee76 106
f6bcfd97
BP
107BEGIN_EVENT_TABLE(MyModalDialog, wxDialog)
108 EVT_BUTTON(-1, MyModalDialog::OnButton)
109END_EVENT_TABLE()
110
abceee76 111BEGIN_EVENT_TABLE(MyModelessDialog, wxDialog)
5d987909
VZ
112 EVT_BUTTON(DIALOGS_MODELESS_BTN, MyModelessDialog::OnButton)
113
abceee76
VZ
114 EVT_CLOSE(MyModelessDialog::OnClose)
115END_EVENT_TABLE()
116
c67daf87 117MyCanvas *myCanvas = (MyCanvas *) NULL;
457814b5 118
457814b5 119// `Main program' equivalent, creating windows and returning main app frame
4c45f240 120bool MyApp::OnInit()
457814b5 121{
e5ea3f7a 122#if defined(__WXGTK__) && defined(wxUSE_UNICODE)
dcf924a3 123 wxConvCurrent = &wxConvLibc;
e5ea3f7a
RR
124#endif
125
9f84eccd 126 m_canvasTextColour = wxColour(_T("BLACK"));
66bd6b93 127 m_canvasFont = *wxNORMAL_FONT;
457814b5
JS
128
129 // Create the main frame window
2f1cd905 130 MyFrame *frame = new MyFrame((wxFrame *) NULL, _T("wxWindows dialogs example"), wxPoint(20, 20), wxSize(400, 300));
457814b5
JS
131
132 // Make a menubar
133 wxMenu *file_menu = new wxMenu;
134
78a189c9 135 file_menu->Append(DIALOGS_CHOOSE_COLOUR, _T("&Choose colour"));
457814b5 136
dfad0599 137#if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
78a189c9 138 file_menu->Append(DIALOGS_CHOOSE_COLOUR_GENERIC, _T("Choose colour (&generic)"));
457814b5
JS
139#endif
140
141 file_menu->AppendSeparator();
78a189c9 142 file_menu->Append(DIALOGS_CHOOSE_FONT, _T("Choose &font"));
457814b5 143
dfad0599 144#if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
78a189c9 145 file_menu->Append(DIALOGS_CHOOSE_FONT_GENERIC, _T("Choose f&ont (generic)"));
457814b5 146#endif
f09c8393 147
457814b5 148 file_menu->AppendSeparator();
78a189c9
VZ
149 file_menu->Append(DIALOGS_LOG_DIALOG, _T("&Log dialog\tCtrl-L"));
150 file_menu->Append(DIALOGS_MESSAGE_BOX, _T("&Message box\tCtrl-M"));
151 file_menu->Append(DIALOGS_TEXT_ENTRY, _T("Text &entry\tCtrl-E"));
152 file_menu->Append(DIALOGS_PASSWORD_ENTRY, _T("&Password entry\tCtrl-P"));
153 file_menu->Append(DIALOGS_NUM_ENTRY, _T("&Numeric entry\tCtrl-N"));
154 file_menu->Append(DIALOGS_SINGLE_CHOICE, _T("&Single choice\tCtrl-C"));
155 file_menu->Append(DIALOGS_MULTI_CHOICE, _T("M&ultiple choice\tCtrl-U"));
457814b5 156 file_menu->AppendSeparator();
78a189c9 157 file_menu->Append(DIALOGS_TIP, _T("&Tip of the day\tCtrl-T"));
c50f1fb9 158 file_menu->AppendSeparator();
78a189c9
VZ
159 file_menu->Append(DIALOGS_FILE_OPEN, _T("&Open file\tCtrl-O"));
160 file_menu->Append(DIALOGS_FILE_OPEN2, _T("&Second open file\tCtrl-2"));
161 file_menu->Append(DIALOGS_FILES_OPEN, _T("Open &files\tCtrl-Q"));
162 file_menu->Append(DIALOGS_FILE_SAVE, _T("Sa&ve file\tCtrl-S"));
163 file_menu->Append(DIALOGS_DIR_CHOOSE, _T("&Choose a directory\tCtrl-D"));
f09c8393 164 file_menu->Append(DIALOGS_DIRNEW_CHOOSE, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
af2b012d 165#if defined(__WXMSW__) || defined(__WXMAC__)
78a189c9 166 file_menu->Append(DIALOGS_GENERIC_DIR_CHOOSE, _T("&Choose a directory (generic implementation)"));
af2b012d 167#endif // wxMSW || wxMAC
f09c8393
VZ
168 file_menu->AppendSeparator();
169
abceee76 170#if wxUSE_PROGRESSDLG
78a189c9 171 file_menu->Append(DIALOGS_PROGRESS, _T("Pro&gress dialog\tCtrl-G"));
abceee76 172#endif // wxUSE_PROGRESSDLG
a62b0bcc 173#if wxUSE_BUSYINFO
78a189c9 174 file_menu->Append(DIALOGS_BUSYINFO, _T("&Busy info dialog\tCtrl-B"));
a62b0bcc 175#endif // wxUSE_BUSYINFO
761989ff 176#if wxUSE_FINDREPLDLG
9f84eccd
MB
177 file_menu->Append(DIALOGS_FIND, _T("&Find dialog\tCtrl-F"), _T(""), TRUE);
178 file_menu->Append(DIALOGS_REPLACE, _T("Find and &replace dialog\tShift-Ctrl-F"), _T(""), TRUE);
761989ff 179#endif // wxUSE_FINDREPLDLG
f6bcfd97 180 file_menu->AppendSeparator();
f09c8393 181
78a189c9 182 file_menu->Append(DIALOGS_MODAL, _T("Mo&dal dialog\tCtrl-W"));
9f84eccd 183 file_menu->Append(DIALOGS_MODELESS, _T("Modeless &dialog\tCtrl-Z"), _T(""), TRUE);
4c45f240 184 file_menu->AppendSeparator();
f09c8393 185
78a189c9 186 file_menu->Append(wxID_EXIT, _T("E&xit\tAlt-X"));
457814b5 187 wxMenuBar *menu_bar = new wxMenuBar;
78a189c9 188 menu_bar->Append(file_menu, _T("&File"));
457814b5
JS
189 frame->SetMenuBar(menu_bar);
190
191 myCanvas = new MyCanvas(frame);
192 myCanvas->SetBackgroundColour(*wxWHITE);
193
194 frame->Centre(wxBOTH);
d93c719a 195
457814b5
JS
196 // Show the frame
197 frame->Show(TRUE);
198
199 SetTopWindow(frame);
200
201 return TRUE;
202}
203
204// My frame constructor
4c45f240
VZ
205MyFrame::MyFrame(wxWindow *parent,
206 const wxString& title,
207 const wxPoint& pos,
208 const wxSize& size)
209 : wxFrame(parent, -1, title, pos, size)
210{
211 m_dialog = (MyModelessDialog *)NULL;
f1e1ed3b 212
043dcdaa 213#if wxUSE_FINDREPLDLG
14fca738
VZ
214 m_dlgFind =
215 m_dlgReplace = NULL;
043dcdaa
JJ
216#endif
217
f1e1ed3b 218 CreateStatusBar();
4c45f240 219}
457814b5 220
d355d3fe 221void MyFrame::ChooseColour(wxCommandEvent& WXUNUSED(event) )
457814b5 222{
afbd36dd
VZ
223 wxColour col = myCanvas->GetBackgroundColour();
224
f6bcfd97 225 wxColourData data;
afbd36dd 226 data.SetColour(col);
f6bcfd97
BP
227 data.SetChooseFull(TRUE);
228 for (int i = 0; i < 16; i++)
229 {
457814b5
JS
230 wxColour colour(i*16, i*16, i*16);
231 data.SetCustomColour(i, colour);
f6bcfd97 232 }
d93c719a 233
afbd36dd 234 wxColourDialog dialog(this, &data);
9f84eccd 235 dialog.SetTitle(_T("Choose the background colour"));
afbd36dd 236 if (dialog.ShowModal() == wxID_OK)
f6bcfd97 237 {
afbd36dd
VZ
238 wxColourData retData = dialog.GetColourData();
239 col = retData.GetColour();
457814b5
JS
240 myCanvas->SetBackgroundColour(col);
241 myCanvas->Clear();
242 myCanvas->Refresh();
f6bcfd97 243 }
457814b5
JS
244}
245
d355d3fe 246void MyFrame::ChooseFont(wxCommandEvent& WXUNUSED(event) )
457814b5 247{
dbc65e27
VZ
248 wxFontData data;
249 data.SetInitialFont(wxGetApp().m_canvasFont);
250 data.SetColour(wxGetApp().m_canvasTextColour);
d93c719a 251
dbc65e27
VZ
252 // you might also do this:
253 //
254 // wxFontDialog dialog;
255 // if ( !dialog.Create(this, data) { ... error ... }
256 //
257 wxFontDialog dialog(this, data);
258
259 if (dialog.ShowModal() == wxID_OK)
260 {
261 wxFontData retData = dialog.GetFontData();
457814b5
JS
262 wxGetApp().m_canvasFont = retData.GetChosenFont();
263 wxGetApp().m_canvasTextColour = retData.GetColour();
264 myCanvas->Refresh();
dbc65e27
VZ
265 }
266 //else: cancelled by the user, don't change the font
457814b5
JS
267}
268
dfad0599 269#if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
d355d3fe 270void MyFrame::ChooseColourGeneric(wxCommandEvent& WXUNUSED(event))
457814b5
JS
271{
272 wxColourData data;
273 data.SetChooseFull(TRUE);
274 for (int i = 0; i < 16; i++)
275 {
276 wxColour colour(i*16, i*16, i*16);
277 data.SetCustomColour(i, colour);
278 }
d93c719a 279
457814b5
JS
280 wxGenericColourDialog *dialog = new wxGenericColourDialog(this, &data);
281 if (dialog->ShowModal() == wxID_OK)
282 {
283 wxColourData retData = dialog->GetColourData();
284 wxColour col = retData.GetColour();
285// wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
286 myCanvas->SetBackgroundColour(col);
287 myCanvas->Clear();
288 myCanvas->Refresh();
289 }
5919d76b 290 dialog->Destroy();
457814b5
JS
291}
292
d355d3fe 293void MyFrame::ChooseFontGeneric(wxCommandEvent& WXUNUSED(event) )
457814b5
JS
294{
295 wxFontData data;
296 data.SetInitialFont(wxGetApp().m_canvasFont);
297 data.SetColour(wxGetApp().m_canvasTextColour);
298
299 wxGenericFontDialog *dialog = new wxGenericFontDialog(this, &data);
300 if (dialog->ShowModal() == wxID_OK)
301 {
302 wxFontData retData = dialog->GetFontData();
303 wxGetApp().m_canvasFont = retData.GetChosenFont();
304 wxGetApp().m_canvasTextColour = retData.GetColour();
305 myCanvas->Refresh();
306 }
5919d76b 307 dialog->Destroy();
457814b5 308}
d93c719a
VZ
309#endif // wxTEST_GENERIC_DIALOGS_IN_MSW
310
311void MyFrame::LogDialog(wxCommandEvent& event)
312{
2c8e4738
VZ
313 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
314 // being flushed -- test it
315 {
316 wxBusyCursor bc;
4693b20c
MB
317 wxLogMessage(wxT("This is some message - everything is ok so far."));
318 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
319 wxLogWarning(wxT("And then something went wrong!"));
9fe52545
VZ
320
321 // and if ~wxBusyCursor doesn't do it, then call it manually
322 wxYield();
2c8e4738
VZ
323 }
324
4693b20c
MB
325 wxLogError(wxT("Intermediary error handler decided to abort."));
326 wxLogError(wxT("The top level caller detected an unrecoverable error."));
5888ef1e 327
7923c649
VZ
328 wxLog::FlushActive();
329
4693b20c 330 wxLogMessage(wxT("And this is the same dialog but with only one message."));
d93c719a 331}
457814b5 332
d355d3fe 333void MyFrame::MessageBox(wxCommandEvent& WXUNUSED(event) )
457814b5 334{
78a189c9
VZ
335 wxMessageDialog dialog( NULL, _T("This is a message box\nA long, long string to test out the message box properly"),
336 _T("Message box text"), wxNO_DEFAULT|wxYES_NO|wxCANCEL|wxICON_INFORMATION);
457814b5 337
49b957be
VZ
338 switch ( dialog.ShowModal() )
339 {
340 case wxID_YES:
4fce73fc 341 wxLogStatus(wxT("You pressed \"Yes\""));
49b957be
VZ
342 break;
343
344 case wxID_NO:
4fce73fc 345 wxLogStatus(wxT("You pressed \"No\""));
49b957be
VZ
346 break;
347
348 case wxID_CANCEL:
4fce73fc 349 wxLogStatus(wxT("You pressed \"Cancel\""));
49b957be
VZ
350 break;
351
352 default:
4fce73fc 353 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
49b957be 354 }
457814b5
JS
355}
356
c49245f8
VZ
357void MyFrame::NumericEntry(wxCommandEvent& WXUNUSED(event) )
358{
78a189c9
VZ
359 long res = wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
360 _T("Even two rows of text."),
361 _T("Enter a number:"), _T("Numeric input test"),
e65cc56a 362 50, 0, 100, this );
c49245f8
VZ
363
364 wxString msg;
365 int icon;
366 if ( res == -1 )
367 {
78a189c9 368 msg = _T("Invalid number entered or dialog cancelled.");
c49245f8
VZ
369 icon = wxICON_HAND;
370 }
371 else
d93c719a
VZ
372 {
373 msg.Printf(_T("You've entered %lu"), res );
c49245f8
VZ
374 icon = wxICON_INFORMATION;
375 }
376
78a189c9 377 wxMessageBox(msg, _T("Numeric test result"), wxOK | icon, this);
c49245f8
VZ
378}
379
a294c6d5 380void MyFrame::PasswordEntry(wxCommandEvent& WXUNUSED(event))
457814b5 381{
2f1cd905 382 wxString pwd = wxGetPasswordFromUser(_T("Enter password:"),
78a189c9 383 _T("Password entry dialog"),
9f84eccd 384 _T(""),
a294c6d5
VZ
385 this);
386 if ( !!pwd )
387 {
4693b20c 388 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd.c_str()),
78a189c9 389 _T("Got password"), wxOK | wxICON_INFORMATION, this);
a294c6d5
VZ
390 }
391}
392
393void MyFrame::TextEntry(wxCommandEvent& WXUNUSED(event))
394{
395 wxTextEntryDialog dialog(this,
78a189c9
VZ
396 _T("This is a small sample\n")
397 _T("A long, long string to test out the text entrybox"),
398 _T("Please enter a string"),
399 _T("Default value"),
a294c6d5 400 wxOK | wxCANCEL);
457814b5
JS
401
402 if (dialog.ShowModal() == wxID_OK)
403 {
78a189c9 404 wxMessageDialog dialog2(this, dialog.GetValue(), _T("Got string"));
c50f1fb9 405 dialog2.ShowModal();
457814b5
JS
406 }
407}
408
d355d3fe 409void MyFrame::SingleChoice(wxCommandEvent& WXUNUSED(event) )
457814b5 410{
78a189c9 411 const wxString choices[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
457814b5 412
5f95bb70 413 wxSingleChoiceDialog dialog(this,
78a189c9
VZ
414 _T("This is a small sample\n")
415 _T("A single-choice convenience dialog"),
416 _T("Please select a value"),
5f95bb70 417 WXSIZEOF(choices), choices);
457814b5 418
ef77f91e
JS
419 dialog.SetSelection(2);
420
421 if (dialog.ShowModal() == wxID_OK)
422 {
78a189c9 423 wxMessageDialog dialog2(this, dialog.GetStringSelection(), _T("Got string"));
ef77f91e
JS
424 dialog2.ShowModal();
425 }
457814b5
JS
426}
427
d6c9c1b7
VZ
428void MyFrame::MultiChoice(wxCommandEvent& WXUNUSED(event) )
429{
5f95bb70
VZ
430 const wxString choices[] =
431 {
78a189c9
VZ
432 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
433 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
434 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
5f95bb70 435 };
d6c9c1b7
VZ
436
437 wxArrayInt selections;
438 size_t count = wxGetMultipleChoices(selections,
78a189c9
VZ
439 _T("This is a small sample\n")
440 _T("A multi-choice convenience dialog"),
441 _T("Please select a value"),
5f95bb70 442 WXSIZEOF(choices), choices,
d6c9c1b7
VZ
443 this);
444 if ( count )
445 {
3d49ce44 446 wxString msg;
4693b20c 447 msg.Printf(wxT("You selected %u items:\n"), count);
d6c9c1b7
VZ
448 for ( size_t n = 0; n < count; n++ )
449 {
4693b20c 450 msg += wxString::Format(wxT("\t%u: %u (%s)\n"), n, selections[n],
3d49ce44 451 choices[selections[n]].c_str());
d6c9c1b7 452 }
3d49ce44 453 wxLogMessage(msg);
d6c9c1b7
VZ
454 }
455 //else: cancelled or nothing selected
456}
457
d355d3fe 458void MyFrame::FileOpen(wxCommandEvent& WXUNUSED(event) )
457814b5 459{
fbf4eacb
VZ
460 wxFileDialog dialog
461 (
462 this,
463 _T("Testing open file dialog"),
464 _T(""),
465 _T(""),
a4e64fb5
MB
466#ifdef __WXMOTIF__
467 _T("C++ files (*.cpp)|*.cpp")
468#else
fbf4eacb 469 _T("C++ files (*.h;*.cpp)|*.h;*.cpp")
a4e64fb5 470#endif
fbf4eacb 471 );
457814b5 472
5b636c67
VZ
473 dialog.SetDirectory(wxGetHomeDir());
474
c50f1fb9
VZ
475 if (dialog.ShowModal() == wxID_OK)
476 {
5919d76b 477 wxString info;
13393ab6
RR
478 info.Printf(_T("Full file name: %s\n")
479 _T("Path: %s\n")
480 _T("Name: %s"),
5919d76b
VZ
481 dialog.GetPath().c_str(),
482 dialog.GetDirectory().c_str(),
483 dialog.GetFilename().c_str());
78a189c9 484 wxMessageDialog dialog2(this, info, _T("Selected file"));
c50f1fb9
VZ
485 dialog2.ShowModal();
486 }
457814b5
JS
487}
488
35b45b33
VZ
489// this shows how to take advantage of specifying a default extension in the
490// call to wxFileSelector: it is remembered after each new call and the next
491// one will use it by default
492void MyFrame::FileOpen2(wxCommandEvent& WXUNUSED(event) )
493{
494 static wxString s_extDef;
495 wxString path = wxFileSelector(
496 _T("Select the file to load"),
2f1cd905 497 _T(""), _T(""),
35b45b33
VZ
498 s_extDef,
499 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (*.*)|*.*"),
fbf4eacb 500 wxCHANGE_DIR,
35b45b33
VZ
501 this
502 );
503
504 if ( !path )
505 return;
506
507 // it is just a sample, would use wxSplitPath in real program
508 s_extDef = path.AfterLast(_T('.'));
509
510 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
37d403aa 511 (const wxChar*) path, (const wxChar*) s_extDef);
35b45b33
VZ
512}
513
c61f4f6d
VZ
514void MyFrame::FilesOpen(wxCommandEvent& WXUNUSED(event) )
515{
78a189c9 516 wxFileDialog dialog(this, _T("Testing open multiple file dialog"),
811ad6a1 517 _T(""), _T(""), wxFileSelectorDefaultWildcardStr,
470caaf9 518 wxMULTIPLE);
c61f4f6d
VZ
519
520 if (dialog.ShowModal() == wxID_OK)
521 {
522 wxArrayString paths, filenames;
523
524 dialog.GetPaths(paths);
525 dialog.GetFilenames(filenames);
526
527 wxString msg, s;
528 size_t count = paths.GetCount();
529 for ( size_t n = 0; n < count; n++ )
530 {
531 s.Printf(_T("File %d: %s (%s)\n"),
532 n, paths[n].c_str(), filenames[n].c_str());
533
534 msg += s;
535 }
536
78a189c9 537 wxMessageDialog dialog2(this, msg, _T("Selected files"));
c61f4f6d
VZ
538 dialog2.ShowModal();
539 }
540}
541
d355d3fe 542void MyFrame::FileSave(wxCommandEvent& WXUNUSED(event) )
457814b5 543{
2f1cd905
VZ
544 wxFileDialog dialog(this,
545 _T("Testing save file dialog"),
546 _T(""),
2b5f62a0 547 _T("myletter.doc"),
2f1cd905
VZ
548 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
549 wxSAVE|wxOVERWRITE_PROMPT);
c50f1fb9 550
2b5f62a0
VZ
551 dialog.SetFilterIndex(1);
552
c50f1fb9
VZ
553 if (dialog.ShowModal() == wxID_OK)
554 {
2b5f62a0
VZ
555 wxLogMessage(_T("%s, filter %d"),
556 dialog.GetPath().c_str(), dialog.GetFilterIndex());
c50f1fb9 557 }
457814b5
JS
558}
559
f09c8393 560void MyFrame::DoDirChoose(int style)
457814b5 561{
3f2711d5
VZ
562 // pass some initial dir to wxDirDialog
563 wxString dirHome;
564 wxGetHomeDir(&dirHome);
565
f09c8393 566 wxDirDialog dialog(this, _T("Testing directory picker"), dirHome, style);
c50f1fb9
VZ
567
568 if (dialog.ShowModal() == wxID_OK)
569 {
2b5f62a0 570 wxLogMessage(_T("Selected path: %s"), dialog.GetPath().c_str());
c50f1fb9
VZ
571 }
572}
573
f09c8393
VZ
574void MyFrame::DirChoose(wxCommandEvent& WXUNUSED(event) )
575{
576 DoDirChoose(wxDD_DEFAULT_STYLE & ~wxDD_NEW_DIR_BUTTON);
577}
578
579void MyFrame::DirChooseNew(wxCommandEvent& WXUNUSED(event) )
580{
581 DoDirChoose(wxDD_NEW_DIR_BUTTON);
582}
583
af2b012d
VZ
584#if defined(__WXMSW__) || defined(__WXMAC__)
585
51a58d8b
JS
586void MyFrame::GenericDirChoose(wxCommandEvent& WXUNUSED(event) )
587{
4ad3c82f 588#if !defined(__WXMSW__) || defined(wxUSE_DIRDLGG) && wxUSE_DIRDLGG
51a58d8b
JS
589 // pass some initial dir to wxDirDialog
590 wxString dirHome;
591 wxGetHomeDir(&dirHome);
592
78a189c9 593 wxGenericDirDialog dialog(this, _T("Testing generic directory picker"), dirHome);
51a58d8b
JS
594
595 if (dialog.ShowModal() == wxID_OK)
596 {
78a189c9 597 wxMessageDialog dialog2(this, dialog.GetPath(), _T("Selected path"));
51a58d8b
JS
598 dialog2.ShowModal();
599 }
4ad3c82f 600#else
4693b20c
MB
601 wxLogError(wxT("Sorry, generic dir dialog not available:\n")
602 wxT("set wxUSE_DIRDLGG to 1 and recompile"));
4ad3c82f 603#endif
51a58d8b
JS
604}
605
af2b012d
VZ
606#endif // wxMSW || wxMAC
607
f6bcfd97
BP
608void MyFrame::ModalDlg(wxCommandEvent& WXUNUSED(event))
609{
610 MyModalDialog dlg(this);
611 dlg.ShowModal();
612}
613
4c45f240
VZ
614void MyFrame::ModelessDlg(wxCommandEvent& event)
615{
2f82899b 616 bool show = GetMenuBar()->IsChecked(event.GetId());
4c45f240
VZ
617
618 if ( show )
619 {
620 if ( !m_dialog )
621 {
622 m_dialog = new MyModelessDialog(this);
623 }
624
625 m_dialog->Show(TRUE);
626 }
627 else // hide
628 {
629 m_dialog->Hide();
630 }
631}
632
c50f1fb9
VZ
633void MyFrame::ShowTip(wxCommandEvent& event)
634{
78bd7ed3 635#if wxUSE_STARTUP_TIPS
c50f1fb9
VZ
636 static size_t s_index = (size_t)-1;
637
638 if ( s_index == (size_t)-1 )
639 {
640 srand(time(NULL));
641
642 // this is completely bogus, we don't know how many lines are there
643 // in the file, but who cares, it's a demo only...
644 s_index = rand() % 5;
645 }
646
2f1cd905 647 wxTipProvider *tipProvider = wxCreateFileTipProvider(_T("tips.txt"), s_index);
c50f1fb9
VZ
648
649 bool showAtStartup = wxShowTip(this, tipProvider);
650
651 if ( showAtStartup )
652 {
2f1cd905 653 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
c50f1fb9
VZ
654 wxOK | wxICON_INFORMATION, this);
655 }
457814b5 656
c50f1fb9
VZ
657 s_index = tipProvider->GetCurrentTip();
658 delete tipProvider;
78bd7ed3 659#endif
457814b5
JS
660}
661
d355d3fe 662void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event) )
457814b5 663{
c50f1fb9 664 Close(TRUE);
457814b5
JS
665}
666
abceee76
VZ
667#if wxUSE_PROGRESSDLG
668
669void MyFrame::ShowProgress( wxCommandEvent& WXUNUSED(event) )
670{
671 static const int max = 10;
672
2f1cd905 673 wxProgressDialog dialog(_T("Progress dialog example"),
78a189c9 674 _T("An informative message"),
abceee76
VZ
675 max, // range
676 this, // parent
677 wxPD_CAN_ABORT |
678 wxPD_APP_MODAL |
df26c4c6 679 // wxPD_AUTO_HIDE | -- try this as well
abceee76
VZ
680 wxPD_ELAPSED_TIME |
681 wxPD_ESTIMATED_TIME |
682 wxPD_REMAINING_TIME);
683
684 bool cont = TRUE;
d8ddee9c 685 for ( int i = 0; i <= max; i++ )
abceee76
VZ
686 {
687 wxSleep(1);
688 if ( i == max )
689 {
78a189c9 690 cont = dialog.Update(i, _T("That's all, folks!"));
abceee76
VZ
691 }
692 else if ( i == max / 2 )
693 {
78a189c9 694 cont = dialog.Update(i, _T("Only a half left (very long message)!"));
abceee76
VZ
695 }
696 else
697 {
698 cont = dialog.Update(i);
699 }
d8ddee9c
VZ
700
701 if ( !cont )
702 {
78a189c9
VZ
703 if ( wxMessageBox(_T("Do you really want to cancel?"),
704 _T("Progress dialog question"), // caption
705 wxYES_NO | wxICON_QUESTION) == wxYES )
d8ddee9c
VZ
706 break;
707
708 dialog.Resume();
709 }
abceee76
VZ
710 }
711
712 if ( !cont )
713 {
4693b20c 714 wxLogStatus(wxT("Progress dialog aborted!"));
abceee76
VZ
715 }
716 else
717 {
4693b20c 718 wxLogStatus(wxT("Countdown from %d finished"), max);
abceee76
VZ
719 }
720}
721
722#endif // wxUSE_PROGRESSDLG
723
a62b0bcc
VZ
724#if wxUSE_BUSYINFO
725
726void MyFrame::ShowBusyInfo(wxCommandEvent& WXUNUSED(event))
727{
21977bac
VZ
728 wxWindowDisabler disableAll;
729
9f84eccd 730 wxBusyInfo info(_T("Working, please wait..."), this);
a62b0bcc 731
5b636c67 732 for ( int i = 0; i < 18; i++ )
a62b0bcc 733 {
5b636c67 734 //wxUsleep(100);
a62b0bcc
VZ
735 wxTheApp->Yield();
736 }
5b636c67
VZ
737
738 wxSleep(2);
739 //wxWakeUpIdle();
a62b0bcc
VZ
740}
741
742#endif // wxUSE_BUSYINFO
743
761989ff
VZ
744#if wxUSE_FINDREPLDLG
745
746void MyFrame::ShowReplaceDialog( wxCommandEvent& WXUNUSED(event) )
747{
14fca738
VZ
748 if ( m_dlgReplace )
749 {
750 delete m_dlgReplace;
751 m_dlgReplace = NULL;
752 }
753 else
754 {
755 m_dlgReplace = new wxFindReplaceDialog
756 (
757 this,
758 &m_findData,
78a189c9 759 _T("Find and replace dialog"),
14fca738
VZ
760 wxFR_REPLACEDIALOG
761 );
762
763 m_dlgReplace->Show(TRUE);
764 }
761989ff
VZ
765}
766
767void MyFrame::ShowFindDialog( wxCommandEvent& WXUNUSED(event) )
768{
14fca738
VZ
769 if ( m_dlgFind )
770 {
771 delete m_dlgFind;
772 m_dlgFind = NULL;
773 }
774 else
775 {
776 m_dlgFind = new wxFindReplaceDialog
777 (
778 this,
779 &m_findData,
78a189c9 780 _T("Find dialog"),
14fca738
VZ
781 // just for testing
782 wxFR_NOWHOLEWORD
783 );
784
785 m_dlgFind->Show(TRUE);
786 }
761989ff
VZ
787}
788
789static wxString DecodeFindDialogEventFlags(int flags)
790{
791 wxString str;
78a189c9 792 str << (flags & wxFR_DOWN ? _T("down") : _T("up")) << _T(", ")
2f1cd905
VZ
793 << (flags & wxFR_WHOLEWORD ? _T("whole words only, ") : _T(""))
794 << (flags & wxFR_MATCHCASE ? _T("") : _T("not "))
78a189c9 795 << _T("case sensitive");
761989ff
VZ
796
797 return str;
798}
799
800void MyFrame::OnFindDialog(wxFindDialogEvent& event)
801{
802 wxEventType type = event.GetEventType();
803
804 if ( type == wxEVT_COMMAND_FIND || type == wxEVT_COMMAND_FIND_NEXT )
805 {
4693b20c 806 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
eba33006 807 type == wxEVT_COMMAND_FIND_NEXT ? wxT("next ") : wxT(""),
761989ff
VZ
808 event.GetFindString().c_str(),
809 DecodeFindDialogEventFlags(event.GetFlags()).c_str());
810 }
811 else if ( type == wxEVT_COMMAND_FIND_REPLACE ||
812 type == wxEVT_COMMAND_FIND_REPLACE_ALL )
813 {
4693b20c 814 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
eba33006 815 type == wxEVT_COMMAND_FIND_REPLACE_ALL ? _T("all ") : wxT(""),
761989ff
VZ
816 event.GetFindString().c_str(),
817 event.GetReplaceString().c_str(),
818 DecodeFindDialogEventFlags(event.GetFlags()).c_str());
819 }
820 else if ( type == wxEVT_COMMAND_FIND_CLOSE )
821 {
14fca738
VZ
822 wxFindReplaceDialog *dlg = event.GetDialog();
823
df26c4c6 824 int idMenu;
14fca738
VZ
825 const wxChar *txt;
826 if ( dlg == m_dlgFind )
827 {
828 txt = _T("Find");
df26c4c6 829 idMenu = DIALOGS_FIND;
14fca738
VZ
830 m_dlgFind = NULL;
831 }
832 else if ( dlg == m_dlgReplace )
833 {
834 txt = _T("Replace");
df26c4c6 835 idMenu = DIALOGS_REPLACE;
14fca738
VZ
836 m_dlgReplace = NULL;
837 }
838 else
839 {
840 txt = _T("Unknown");
df26c4c6 841 idMenu = -1;
14fca738 842
2f1cd905 843 wxFAIL_MSG( _T("unexpected event") );
14fca738
VZ
844 }
845
df26c4c6
VZ
846 wxLogMessage(wxT("%s dialog is being closed."), txt);
847
848 if ( idMenu != -1 )
849 {
850 GetMenuBar()->Check(idMenu, FALSE);
851 }
761989ff 852
14fca738 853 dlg->Destroy();
761989ff
VZ
854 }
855 else
856 {
4693b20c 857 wxLogError(wxT("Unknown find dialog event!"));
761989ff
VZ
858 }
859}
860
861#endif // wxUSE_FINDREPLDLG
862
abceee76
VZ
863// ----------------------------------------------------------------------------
864// MyCanvas
865// ----------------------------------------------------------------------------
866
d355d3fe 867void MyCanvas::OnPaint(wxPaintEvent& WXUNUSED(event) )
457814b5 868{
c50f1fb9 869 wxPaintDC dc(this);
457814b5
JS
870 dc.SetFont(wxGetApp().m_canvasFont);
871 dc.SetTextForeground(wxGetApp().m_canvasTextColour);
872 dc.SetBackgroundMode(wxTRANSPARENT);
9f84eccd 873 dc.DrawText(_T("wxWindows common dialogs test application"), 10, 10);
457814b5
JS
874}
875
4c45f240
VZ
876// ----------------------------------------------------------------------------
877// MyModelessDialog
878// ----------------------------------------------------------------------------
457814b5 879
4c45f240 880MyModelessDialog::MyModelessDialog(wxWindow *parent)
9f84eccd 881 : wxDialog(parent, -1, wxString(_T("Modeless dialog")))
4c45f240 882{
cbc66a27
VZ
883 wxBoxSizer *sizerTop = new wxBoxSizer(wxVERTICAL);
884
78a189c9
VZ
885 wxButton *btn = new wxButton(this, DIALOGS_MODELESS_BTN, _T("Press me"));
886 wxCheckBox *check = new wxCheckBox(this, -1, _T("Should be disabled"));
cbc66a27
VZ
887 check->Disable();
888
889 sizerTop->Add(btn, 1, wxEXPAND | wxALL, 5);
890 sizerTop->Add(check, 1, wxEXPAND | wxALL, 5);
891
892 SetAutoLayout(TRUE);
893 SetSizer(sizerTop);
894
895 sizerTop->SetSizeHints(this);
896 sizerTop->Fit(this);
4c45f240 897}
abceee76 898
5d987909
VZ
899void MyModelessDialog::OnButton(wxCommandEvent& WXUNUSED(event))
900{
2f1cd905 901 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
5d987909
VZ
902 wxOK | wxICON_INFORMATION, this);
903}
904
abceee76
VZ
905void MyModelessDialog::OnClose(wxCloseEvent& event)
906{
907 if ( event.CanVeto() )
908 {
2f1cd905 909 wxMessageBox(_T("Use the menu item to close this dialog"),
78a189c9 910 _T("Modeless dialog"),
abceee76
VZ
911 wxOK | wxICON_INFORMATION, this);
912
913 event.Veto();
914 }
915}
916
f6bcfd97
BP
917// ----------------------------------------------------------------------------
918// MyModalDialog
919// ----------------------------------------------------------------------------
920
921MyModalDialog::MyModalDialog(wxWindow *parent)
f3dbeba4 922 : wxDialog(parent, -1, wxString(_T("Modal dialog")))
f6bcfd97
BP
923{
924 wxBoxSizer *sizerTop = new wxBoxSizer(wxHORIZONTAL);
925
5315ebfa
VZ
926 m_btnModal = new wxButton(this, -1, _T("&Modal dialog..."));
927 m_btnModeless = new wxButton(this, -1, _T("Mode&less dialog"));
78a189c9 928 m_btnDelete = new wxButton(this, -1, _T("&Delete button"));
5315ebfa 929
78a189c9 930 wxButton *btnOk = new wxButton(this, wxID_CANCEL, _T("&Close"));
5315ebfa
VZ
931 sizerTop->Add(m_btnModal, 0, wxALIGN_CENTER | wxALL, 5);
932 sizerTop->Add(m_btnModeless, 0, wxALIGN_CENTER | wxALL, 5);
f6bcfd97 933 sizerTop->Add(m_btnDelete, 0, wxALIGN_CENTER | wxALL, 5);
9b70bb91 934 sizerTop->Add(btnOk, 0, wxALIGN_CENTER | wxALL, 5);
f6bcfd97
BP
935
936 SetAutoLayout(TRUE);
937 SetSizer(sizerTop);
938
939 sizerTop->SetSizeHints(this);
940 sizerTop->Fit(this);
941
5315ebfa
VZ
942 m_btnModal->SetFocus();
943 m_btnModal->SetDefault();
f6bcfd97
BP
944}
945
946void MyModalDialog::OnButton(wxCommandEvent& event)
947{
948 if ( event.GetEventObject() == m_btnDelete )
949 {
5315ebfa
VZ
950 delete m_btnModal;
951 m_btnModal = NULL;
f6bcfd97
BP
952
953 m_btnDelete->Disable();
954 }
5315ebfa 955 else if ( event.GetEventObject() == m_btnModal )
f6bcfd97 956 {
78a189c9
VZ
957 wxGetTextFromUser(_T("Dummy prompt"),
958 _T("Modal dialog called from dialog"),
959 _T(""), this);
f6bcfd97 960 }
5315ebfa
VZ
961 else if ( event.GetEventObject() == m_btnModeless )
962 {
963 (new MyModelessDialog(this))->Show();
964 }
f6bcfd97
BP
965 else
966 {
967 event.Skip();
968 }
969}