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/busyinfo.h"
54 #endif // wxUSE_BUSYINFO
57 #include "wx/numdlg.h"
58 #endif // wxUSE_NUMBERDLG
61 #include "wx/filedlg.h"
62 #endif // wxUSE_FILEDLG
65 #include "wx/dirdlg.h"
66 #endif // wxUSE_DIRDLG
69 #include "wx/fontdlg.h"
70 #endif // wxUSE_FONTDLG
73 #include "wx/fdrepdlg.h"
74 #endif // wxUSE_FINDREPLDLG
77 #include "wx/spinctrl.h"
80 #include "wx/propdlg.h"
84 #if USE_COLOURDLG_GENERIC
85 #include "wx/generic/colrdlgg.h"
86 #endif // USE_COLOURDLG_GENERIC
88 #if USE_DIRDLG_GENERIC
89 #include "wx/generic/dirdlgg.h"
90 #endif // USE_DIRDLG_GENERIC
92 #if USE_FILEDLG_GENERIC
93 #include "wx/generic/filedlgg.h"
94 #endif // USE_FILEDLG_GENERIC
96 #if USE_FONTDLG_GENERIC
97 #include "wx/generic/fontdlgg.h"
98 #endif // USE_FONTDLG_GENERIC
102 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
103 EVT_PAINT(MyCanvas::OnPaint
)
108 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
109 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
112 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
113 #endif // wxUSE_COLOURDLG
116 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
117 #endif // wxUSE_FONTDLG
120 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
121 #endif // wxUSE_LOG_DIALOG
124 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
125 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
126 #endif // wxUSE_TEXTDLG
129 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
130 #endif // wxUSE_NUMBERDLG
133 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
134 EVT_MENU(DIALOGS_MULTI_CHOICE
, MyFrame::MultiChoice
)
135 #endif // wxUSE_CHOICEDLG
138 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
139 EVT_MENU(DIALOGS_FILE_OPEN2
, MyFrame::FileOpen2
)
140 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
141 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
142 #endif // wxUSE_FILEDLG
144 #if USE_FILEDLG_GENERIC
145 EVT_MENU(DIALOGS_FILE_OPEN_GENERIC
, MyFrame::FileOpenGeneric
)
146 EVT_MENU(DIALOGS_FILES_OPEN_GENERIC
, MyFrame::FilesOpenGeneric
)
147 EVT_MENU(DIALOGS_FILE_SAVE_GENERIC
, MyFrame::FileSaveGeneric
)
148 #endif // USE_FILEDLG_GENERIC
151 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
152 EVT_MENU(DIALOGS_DIRNEW_CHOOSE
, MyFrame::DirChooseNew
)
153 #endif // wxUSE_DIRDLG
155 #if USE_MODAL_PRESENTATION
156 EVT_MENU(DIALOGS_MODAL
, MyFrame::ModalDlg
)
157 EVT_MENU(DIALOGS_MODELESS
, MyFrame::ModelessDlg
)
158 EVT_MENU(DIALOGS_CENTRE_SCREEN
, MyFrame::DlgCenteredScreen
)
159 EVT_MENU(DIALOGS_CENTRE_PARENT
, MyFrame::DlgCenteredParent
)
162 #if wxUSE_STARTUP_TIPS
163 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
164 #endif // wxUSE_STARTUP_TIPS
166 #if USE_FONTDLG_GENERIC
167 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
168 #endif // USE_FONTDLG_GENERIC
170 #if USE_DIRDLG_GENERIC
171 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE
, MyFrame::GenericDirChoose
)
172 #endif // wxMSW || wxMAC
174 #if USE_COLOURDLG_GENERIC
175 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
176 #endif // USE_COLOURDLG_GENERIC
178 #if wxUSE_PROGRESSDLG
179 EVT_MENU(DIALOGS_PROGRESS
, MyFrame::ShowProgress
)
180 #endif // wxUSE_PROGRESSDLG
183 EVT_MENU(DIALOGS_BUSYINFO
, MyFrame::ShowBusyInfo
)
184 #endif // wxUSE_BUSYINFO
186 #if wxUSE_FINDREPLDLG
187 EVT_MENU(DIALOGS_FIND
, MyFrame::ShowFindDialog
)
188 EVT_MENU(DIALOGS_REPLACE
, MyFrame::ShowReplaceDialog
)
190 EVT_FIND(wxID_ANY
, MyFrame::OnFindDialog
)
191 EVT_FIND_NEXT(wxID_ANY
, MyFrame::OnFindDialog
)
192 EVT_FIND_REPLACE(wxID_ANY
, MyFrame::OnFindDialog
)
193 EVT_FIND_REPLACE_ALL(wxID_ANY
, MyFrame::OnFindDialog
)
194 EVT_FIND_CLOSE(wxID_ANY
, MyFrame::OnFindDialog
)
195 #endif // wxUSE_FINDREPLDLG
197 #if USE_SETTINGS_DIALOG
198 EVT_MENU(DIALOGS_PROPERTY_SHEET
, MyFrame::OnPropertySheet
)
199 EVT_MENU(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, MyFrame::OnPropertySheet
)
200 EVT_MENU(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, MyFrame::OnPropertySheet
)
203 EVT_MENU(DIALOGS_REQUEST
, MyFrame::OnRequestUserAttention
)
205 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
208 #if USE_MODAL_PRESENTATION
210 BEGIN_EVENT_TABLE(MyModalDialog
, wxDialog
)
211 EVT_BUTTON(wxID_ANY
, MyModalDialog::OnButton
)
214 BEGIN_EVENT_TABLE(MyModelessDialog
, wxDialog
)
215 EVT_BUTTON(DIALOGS_MODELESS_BTN
, MyModelessDialog::OnButton
)
216 EVT_CLOSE(MyModelessDialog::OnClose
)
219 #endif // USE_MODAL_PRESENTATION
221 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
223 // `Main program' equivalent, creating windows and returning main app frame
227 wxInitAllImageHandlers();
230 m_canvasTextColour
= wxColour(_T("BLACK"));
231 m_canvasFont
= *wxNORMAL_FONT
;
233 // Create the main frame window
234 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets dialogs example"));
237 wxMenu
*file_menu
= new wxMenu
;
239 file_menu
->Append(DIALOGS_MESSAGE_BOX
, _T("&Message box\tCtrl-M"));
242 #if wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
244 wxMenu
*choices_menu
= new wxMenu
;
247 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR
, _T("&Choose colour"));
248 #endif // wxUSE_COLOURDLG
251 choices_menu
->Append(DIALOGS_CHOOSE_FONT
, _T("Choose &font"));
252 #endif // wxUSE_FONTDLG
255 choices_menu
->Append(DIALOGS_SINGLE_CHOICE
, _T("&Single choice\tCtrl-C"));
256 choices_menu
->Append(DIALOGS_MULTI_CHOICE
, _T("M&ultiple choice\tCtrl-U"));
257 #endif // wxUSE_CHOICEDLG
259 #if USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
260 choices_menu
->AppendSeparator();
261 #endif // USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
263 #if USE_COLOURDLG_GENERIC
264 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, _T("&Choose colour (generic)"));
265 #endif // USE_COLOURDLG_GENERIC
267 #if USE_FONTDLG_GENERIC
268 choices_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, _T("Choose &font (generic)"));
269 #endif // USE_FONTDLG_GENERIC
271 file_menu
->Append(wxID_ANY
,_T("&Choices and selectors"),choices_menu
);
272 #endif // wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
275 #if wxUSE_TEXTDLG || wxUSE_NUMBERDLG
277 wxMenu
*entry_menu
= new wxMenu
;
280 entry_menu
->Append(DIALOGS_TEXT_ENTRY
, _T("Text &entry\tCtrl-E"));
281 entry_menu
->Append(DIALOGS_PASSWORD_ENTRY
, _T("&Password entry\tCtrl-P"));
282 #endif // wxUSE_TEXTDLG
285 entry_menu
->Append(DIALOGS_NUM_ENTRY
, _T("&Numeric entry\tCtrl-N"));
286 #endif // wxUSE_NUMBERDLG
288 file_menu
->Append(wxID_ANY
,_T("&Entry dialogs"),entry_menu
);
290 #endif // wxUSE_TEXTDLG || wxUSE_NUMBERDLG
295 wxMenu
*filedlg_menu
= new wxMenu
;
296 filedlg_menu
->Append(DIALOGS_FILE_OPEN
, _T("&Open file\tCtrl-O"));
297 filedlg_menu
->Append(DIALOGS_FILE_OPEN2
, _T("&Second open file\tCtrl-2"));
298 filedlg_menu
->Append(DIALOGS_FILES_OPEN
, _T("Open &files\tCtrl-Q"));
299 filedlg_menu
->Append(DIALOGS_FILE_SAVE
, _T("Sa&ve file\tCtrl-S"));
301 #if USE_FILEDLG_GENERIC
302 filedlg_menu
->AppendSeparator();
303 filedlg_menu
->Append(DIALOGS_FILE_OPEN_GENERIC
, _T("&Open file (generic)"));
304 filedlg_menu
->Append(DIALOGS_FILES_OPEN_GENERIC
, _T("Open &files (generic)"));
305 filedlg_menu
->Append(DIALOGS_FILE_SAVE_GENERIC
, _T("Sa&ve file (generic)"));
306 #endif // USE_FILEDLG_GENERIC
308 file_menu
->Append(wxID_ANY
,_T("&File operations"),filedlg_menu
);
310 #endif // wxUSE_FILEDLG
313 wxMenu
*dir_menu
= new wxMenu
;
315 dir_menu
->Append(DIALOGS_DIR_CHOOSE
, _T("&Choose a directory\tCtrl-D"));
316 dir_menu
->Append(DIALOGS_DIRNEW_CHOOSE
, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
317 file_menu
->Append(wxID_ANY
,_T("&Directory operations"),dir_menu
);
319 #if USE_DIRDLG_GENERIC
320 dir_menu
->AppendSeparator();
321 dir_menu
->Append(DIALOGS_GENERIC_DIR_CHOOSE
, _T("&Choose a directory (generic)"));
322 #endif // USE_DIRDLG_GENERIC
324 #endif // wxUSE_DIRDLG
327 #if wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
329 wxMenu
*info_menu
= new wxMenu
;
331 #if wxUSE_STARTUP_TIPS
332 info_menu
->Append(DIALOGS_TIP
, _T("&Tip of the day\tCtrl-T"));
333 #endif // wxUSE_STARTUP_TIPS
335 #if wxUSE_PROGRESSDLG
336 info_menu
->Append(DIALOGS_PROGRESS
, _T("Pro&gress dialog\tCtrl-G"));
337 #endif // wxUSE_PROGRESSDLG
340 info_menu
->Append(DIALOGS_BUSYINFO
, _T("&Busy info dialog\tCtrl-B"));
341 #endif // wxUSE_BUSYINFO
344 info_menu
->Append(DIALOGS_LOG_DIALOG
, _T("&Log dialog\tCtrl-L"));
345 #endif // wxUSE_LOG_DIALOG
347 file_menu
->Append(wxID_ANY
,_T("&Informative dialogs"),info_menu
);
349 #endif // wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
352 #if wxUSE_FINDREPLDLG
353 wxMenu
*find_menu
= new wxMenu
;
354 find_menu
->AppendCheckItem(DIALOGS_FIND
, _T("&Find dialog\tCtrl-F"));
355 find_menu
->AppendCheckItem(DIALOGS_REPLACE
, _T("Find and &replace dialog\tShift-Ctrl-F"));
356 file_menu
->Append(wxID_ANY
,_T("&Searching"),find_menu
);
357 #endif // wxUSE_FINDREPLDLG
359 #if USE_MODAL_PRESENTATION
360 wxMenu
*dialogs_menu
= new wxMenu
;
361 dialogs_menu
->Append(DIALOGS_MODAL
, _T("&Modal dialog\tCtrl-W"));
362 dialogs_menu
->AppendCheckItem(DIALOGS_MODELESS
, _T("Mode&less dialog\tCtrl-Z"));
363 dialogs_menu
->AppendCheckItem(DIALOGS_CENTRE_SCREEN
, _T("Centered on &screen\tShift-Ctrl-1"));
364 dialogs_menu
->AppendCheckItem(DIALOGS_CENTRE_PARENT
, _T("Centered on &parent\tShift-Ctrl-2"));
365 file_menu
->Append(wxID_ANY
, _T("&Generic dialogs"), dialogs_menu
);
366 #endif // USE_MODAL_PRESENTATION
368 #if USE_SETTINGS_DIALOG
369 wxMenu
*sheet_menu
= new wxMenu
;
370 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET
, _T("&Standard property sheet\tShift-Ctrl-P"));
371 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_TOOLBOOK
, _T("&Toolbook sheet\tShift-Ctrl-T"));
373 sheet_menu
->Append(DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
, _T("Button &Toolbook sheet\tShift-Ctrl-U"));
375 file_menu
->Append(wxID_ANY
, _T("&Property sheets"), sheet_menu
);
376 #endif // USE_SETTINGS_DIALOG
378 file_menu
->Append(DIALOGS_REQUEST
, _T("&Request user attention\tCtrl-R"));
380 file_menu
->AppendSeparator();
381 file_menu
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"));
383 wxMenuBar
*menu_bar
= new wxMenuBar
;
384 menu_bar
->Append(file_menu
, _T("&File"));
385 frame
->SetMenuBar(menu_bar
);
387 myCanvas
= new MyCanvas(frame
);
388 myCanvas
->SetBackgroundColour(*wxWHITE
);
390 frame
->Centre(wxBOTH
);
400 // My frame constructor
401 MyFrame::MyFrame(wxWindow
*parent
,
402 const wxString
& title
)
403 : wxFrame(parent
, wxID_ANY
, title
)
407 #if USE_MODAL_PRESENTATION
408 m_dialog
= (MyModelessDialog
*)NULL
;
409 #endif // USE_MODAL_PRESENTATION
411 #if wxUSE_FINDREPLDLG
417 m_clrData
.SetChooseFull(true);
418 for (int i
= 0; i
< 16; i
++)
420 m_clrData
.SetCustomColour(
423 (unsigned char)(i
*16),
424 (unsigned char)(i
*16),
425 (unsigned char)(i
*16)
429 #endif // wxUSE_COLOURDLG
433 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
435 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
437 wxColourDialog
dialog(this, &m_clrData
);
438 dialog
.SetTitle(_T("Choose the background colour"));
439 if (dialog
.ShowModal() == wxID_OK
)
441 m_clrData
= dialog
.GetColourData();
442 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
443 myCanvas
->ClearBackground();
447 #endif // wxUSE_COLOURDLG
449 #if USE_COLOURDLG_GENERIC
450 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
452 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
454 //FIXME:TODO:This has no effect...
455 m_clrData
.SetChooseFull(true);
457 for (int i
= 0; i
< 16; i
++)
460 (unsigned char)(i
*16),
461 (unsigned char)(i
*16),
462 (unsigned char)(i
*16)
464 m_clrData
.SetCustomColour(i
, colour
);
467 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &m_clrData
);
468 if (dialog
->ShowModal() == wxID_OK
)
470 m_clrData
= dialog
->GetColourData();
471 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
472 myCanvas
->ClearBackground();
477 #endif // USE_COLOURDLG_GENERIC
480 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
483 data
.SetInitialFont(wxGetApp().m_canvasFont
);
484 data
.SetColour(wxGetApp().m_canvasTextColour
);
486 // you might also do this:
488 // wxFontDialog dialog;
489 // if ( !dialog.Create(this, data) { ... error ... }
491 wxFontDialog
dialog(this, data
);
493 if (dialog
.ShowModal() == wxID_OK
)
495 wxFontData retData
= dialog
.GetFontData();
496 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
497 wxGetApp().m_canvasTextColour
= retData
.GetColour();
500 //else: cancelled by the user, don't change the font
502 #endif // wxUSE_FONTDLG
504 #if USE_FONTDLG_GENERIC
505 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
508 data
.SetInitialFont(wxGetApp().m_canvasFont
);
509 data
.SetColour(wxGetApp().m_canvasTextColour
);
511 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, data
);
512 if (dialog
->ShowModal() == wxID_OK
)
514 wxFontData retData
= dialog
->GetFontData();
515 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
516 wxGetApp().m_canvasTextColour
= retData
.GetColour();
521 #endif // USE_FONTDLG_GENERIC
524 void MyFrame::LogDialog(wxCommandEvent
& WXUNUSED(event
))
526 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
527 // being flushed -- test it
530 wxLogMessage(wxT("This is some message - everything is ok so far."));
531 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
532 wxLogWarning(wxT("And then something went wrong!"));
534 // and if ~wxBusyCursor doesn't do it, then call it manually
538 wxLogError(wxT("Intermediary error handler decided to abort."));
539 wxLogError(wxT("The top level caller detected an unrecoverable error."));
541 wxLog::FlushActive();
543 wxLogMessage(wxT("And this is the same dialog but with only one message."));
545 #endif // wxUSE_LOG_DIALOG
547 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
549 wxMessageDialog
dialog( NULL
, _T("This is a message box\nA long, long string to test out the message box properly"),
550 _T("Message box text"), wxNO_DEFAULT
|wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
552 switch ( dialog
.ShowModal() )
555 wxLogStatus(wxT("You pressed \"Yes\""));
559 wxLogStatus(wxT("You pressed \"No\""));
563 wxLogStatus(wxT("You pressed \"Cancel\""));
567 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
572 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
) )
574 long res
= wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
575 _T("Even two rows of text."),
576 _T("Enter a number:"), _T("Numeric input test"),
583 msg
= _T("Invalid number entered or dialog cancelled.");
588 msg
.Printf(_T("You've entered %lu"), res
);
589 icon
= wxICON_INFORMATION
;
592 wxMessageBox(msg
, _T("Numeric test result"), wxOK
| icon
, this);
594 #endif // wxUSE_NUMBERDLG
597 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
599 wxString pwd
= wxGetPasswordFromUser(_T("Enter password:"),
600 _T("Password entry dialog"),
605 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd
.c_str()),
606 _T("Got password"), wxOK
| wxICON_INFORMATION
, this);
610 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
612 wxTextEntryDialog
dialog(this,
613 _T("This is a small sample\n")
614 _T("A long, long string to test out the text entrybox"),
615 _T("Please enter a string"),
619 if (dialog
.ShowModal() == wxID_OK
)
621 wxMessageBox(dialog
.GetValue(), _T("Got string"), wxOK
| wxICON_INFORMATION
, this);
624 #endif // wxUSE_TEXTDLG
627 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
629 const wxString choices
[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
631 wxSingleChoiceDialog
dialog(this,
632 _T("This is a small sample\n")
633 _T("A single-choice convenience dialog"),
634 _T("Please select a value"),
635 WXSIZEOF(choices
), choices
);
637 dialog
.SetSelection(2);
639 if (dialog
.ShowModal() == wxID_OK
)
641 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), _T("Got string"));
646 void MyFrame::MultiChoice(wxCommandEvent
& WXUNUSED(event
) )
648 const wxString choices
[] =
650 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
651 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
652 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
655 wxArrayInt selections
;
656 size_t count
= wxGetMultipleChoices(selections
,
657 _T("This is a small sample\n")
658 _T("A multi-choice convenience dialog"),
659 _T("Please select a value"),
660 WXSIZEOF(choices
), choices
,
665 msg
.Printf(wxT("You selected %u items:\n"), (unsigned)count
);
666 for ( size_t n
= 0; n
< count
; n
++ )
668 msg
+= wxString::Format(wxT("\t%u: %u (%s)\n"),
669 (unsigned)n
, (unsigned)selections
[n
],
670 choices
[selections
[n
]].c_str());
674 //else: cancelled or nothing selected
676 #endif // wxUSE_CHOICEDLG
679 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
684 _T("Testing open file dialog"),
688 _T("C++ files (*.cpp)|*.cpp")
690 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
694 dialog
.SetDirectory(wxGetHomeDir());
695 dialog
.CentreOnParent();
697 if (dialog
.ShowModal() == wxID_OK
)
700 info
.Printf(_T("Full file name: %s\n")
703 dialog
.GetPath().c_str(),
704 dialog
.GetDirectory().c_str(),
705 dialog
.GetFilename().c_str());
706 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
711 // this shows how to take advantage of specifying a default extension in the
712 // call to wxFileSelector: it is remembered after each new call and the next
713 // one will use it by default
714 void MyFrame::FileOpen2(wxCommandEvent
& WXUNUSED(event
) )
716 static wxString s_extDef
;
717 wxString path
= wxFileSelector(
718 _T("Select the file to load"),
719 wxEmptyString
, wxEmptyString
,
723 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (%s)|%s"),
724 wxFileSelectorDefaultWildcardStr
,
725 wxFileSelectorDefaultWildcardStr
734 // it is just a sample, would use wxSplitPath in real program
735 s_extDef
= path
.AfterLast(_T('.'));
737 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
738 (const wxChar
*) path
, (const wxChar
*) s_extDef
);
741 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
745 _T("C++ files (*.cpp)|*.cpp");
749 _T("All files (%s)|%s|C++ files (*.cpp;*.h)|*.cpp;*.h"),
750 wxFileSelectorDefaultWildcardStr
,
751 wxFileSelectorDefaultWildcardStr
754 wxFileDialog
dialog(this, _T("Testing open multiple file dialog"),
755 wxEmptyString
, wxEmptyString
, wildcards
,
758 if (dialog
.ShowModal() == wxID_OK
)
760 wxArrayString paths
, filenames
;
762 dialog
.GetPaths(paths
);
763 dialog
.GetFilenames(filenames
);
766 size_t count
= paths
.GetCount();
767 for ( size_t n
= 0; n
< count
; n
++ )
769 s
.Printf(_T("File %d: %s (%s)\n"),
770 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
774 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
777 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
782 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
784 wxFileDialog
dialog(this,
785 _T("Testing save file dialog"),
788 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
789 wxSAVE
|wxOVERWRITE_PROMPT
);
791 dialog
.SetFilterIndex(1);
793 if (dialog
.ShowModal() == wxID_OK
)
795 wxLogMessage(_T("%s, filter %d"),
796 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
799 #endif // wxUSE_FILEDLG
801 #if USE_FILEDLG_GENERIC
802 void MyFrame::FileOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
804 wxGenericFileDialog dialog
807 _T("Testing open file dialog"),
810 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
813 dialog
.SetDirectory(wxGetHomeDir());
815 if (dialog
.ShowModal() == wxID_OK
)
818 info
.Printf(_T("Full file name: %s\n")
821 dialog
.GetPath().c_str(),
822 dialog
.GetDirectory().c_str(),
823 dialog
.GetFilename().c_str());
824 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
829 void MyFrame::FilesOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
831 // On PocketPC you can disable OK-only dialogs policy using system option
832 int buttons
= wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel"));
833 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), 1);
835 wxString wildcards
= _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
836 wxGenericFileDialog
dialog(this, _T("Testing open multiple file dialog"),
837 wxEmptyString
, wxEmptyString
, wildcards
,
840 if (dialog
.ShowModal() == wxID_OK
)
842 wxArrayString paths
, filenames
;
844 dialog
.GetPaths(paths
);
845 dialog
.GetFilenames(filenames
);
848 size_t count
= paths
.GetCount();
849 for ( size_t n
= 0; n
< count
; n
++ )
851 s
.Printf(_T("File %d: %s (%s)\n"),
852 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
856 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
859 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
863 // restore system option
864 wxSystemOptions::SetOption(wxT("wince.dialog.real-ok-cancel"), buttons
);
867 void MyFrame::FileSaveGeneric(wxCommandEvent
& WXUNUSED(event
) )
869 wxGenericFileDialog
dialog(this,
870 _T("Testing save file dialog"),
873 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
874 wxSAVE
|wxOVERWRITE_PROMPT
);
876 dialog
.SetFilterIndex(1);
878 if (dialog
.ShowModal() == wxID_OK
)
880 wxLogMessage(_T("%s, filter %d"),
881 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
884 #endif // USE_FILEDLG_GENERIC
887 void MyFrame::DoDirChoose(int style
)
889 // pass some initial dir to wxDirDialog
891 wxGetHomeDir(&dirHome
);
893 wxDirDialog
dialog(this, _T("Testing directory picker"), dirHome
, style
);
895 if (dialog
.ShowModal() == wxID_OK
)
897 wxLogMessage(_T("Selected path: %s"), dialog
.GetPath().c_str());
901 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
903 DoDirChoose(wxDD_DEFAULT_STYLE
& ~wxDD_NEW_DIR_BUTTON
);
906 void MyFrame::DirChooseNew(wxCommandEvent
& WXUNUSED(event
) )
908 DoDirChoose(wxDD_DEFAULT_STYLE
| wxDD_NEW_DIR_BUTTON
);
910 #endif // wxUSE_DIRDLG
912 #if USE_DIRDLG_GENERIC
913 void MyFrame::GenericDirChoose(wxCommandEvent
& WXUNUSED(event
) )
915 // pass some initial dir to wxDirDialog
917 wxGetHomeDir(&dirHome
);
919 wxGenericDirDialog
dialog(this, _T("Testing generic directory picker"), dirHome
);
921 if (dialog
.ShowModal() == wxID_OK
)
923 wxMessageDialog
dialog2(this, dialog
.GetPath(), _T("Selected path"));
927 #endif // USE_DIRDLG_GENERIC
929 #if USE_MODAL_PRESENTATION
930 void MyFrame::ModalDlg(wxCommandEvent
& WXUNUSED(event
))
932 MyModalDialog
dlg(this);
936 void MyFrame::ModelessDlg(wxCommandEvent
& event
)
938 bool show
= GetMenuBar()->IsChecked(event
.GetId());
944 m_dialog
= new MyModelessDialog(this);
947 m_dialog
->Show(true);
951 // If m_dialog is NULL, then possibly the system
952 // didn't report the checked menu item status correctly.
953 // It should be true just after the menu item was selected,
954 // if there was no modeless dialog yet.
956 wxASSERT( m_dialog
!= NULL
);
962 void MyFrame::DlgCenteredScreen(wxCommandEvent
& WXUNUSED(event
))
964 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on screen"),
965 wxDefaultPosition
, wxSize(200, 100));
966 new wxButton(&dlg
, wxID_OK
, _T("Close"), wxPoint(10, 10));
967 dlg
.CentreOnScreen();
971 void MyFrame::DlgCenteredParent(wxCommandEvent
& WXUNUSED(event
))
973 wxDialog
dlg(this, wxID_ANY
, _T("Dialog centered on parent"),
974 wxDefaultPosition
, wxSize(200, 100));
975 new wxButton(&dlg
, wxID_OK
, _T("Close"), wxPoint(10, 10));
976 dlg
.CentreOnParent();
980 #endif // USE_MODAL_PRESENTATION
982 #if wxUSE_STARTUP_TIPS
983 void MyFrame::ShowTip(wxCommandEvent
& WXUNUSED(event
))
985 static size_t s_index
= (size_t)-1;
987 if ( s_index
== (size_t)-1 )
991 // this is completely bogus, we don't know how many lines are there
992 // in the file, but who cares, it's a demo only...
993 s_index
= rand() % 5;
996 wxTipProvider
*tipProvider
= wxCreateFileTipProvider(_T("tips.txt"), s_index
);
998 bool showAtStartup
= wxShowTip(this, tipProvider
);
1000 if ( showAtStartup
)
1002 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
1003 wxOK
| wxICON_INFORMATION
, this);
1006 s_index
= tipProvider
->GetCurrentTip();
1009 #endif // wxUSE_STARTUP_TIPS
1011 #if USE_SETTINGS_DIALOG
1012 void MyFrame::OnPropertySheet(wxCommandEvent
& event
)
1014 SettingsDialog
dialog(this, event
.GetId());
1017 #endif // USE_SETTINGS_DIALOG
1019 void MyFrame::OnRequestUserAttention(wxCommandEvent
& WXUNUSED(event
))
1021 wxLogStatus(_T("Sleeping for 3 seconds to allow you to switch to another window"));
1025 RequestUserAttention(wxUSER_ATTENTION_ERROR
);
1028 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
1033 #if wxUSE_PROGRESSDLG
1035 void MyFrame::ShowProgress( wxCommandEvent
& WXUNUSED(event
) )
1037 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1038 // check the performance
1039 int countrandomnumbers
= 0, count
= 0;
1040 wxTimeSpan
tsTest(0,0,0,250);
1041 wxDateTime DT2
, DT1
= wxDateTime::UNow();
1046 ++countrandomnumbers
;
1047 if ( countrandomnumbers
== 1000 )
1050 countrandomnumbers
= 0;
1052 DT2
= wxDateTime::UNow();
1053 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1054 if ( ts
.IsLongerThan( tsTest
) )
1060 const int max
= 40 * count
;
1062 static const int max
= 10;
1063 #endif // wxUSE_STOPWATCH && wxUSE_LONGLONG
1065 wxProgressDialog
dialog(_T("Progress dialog example"),
1066 _T("An informative message"),
1072 // wxPD_AUTO_HIDE | -- try this as well
1074 wxPD_ESTIMATED_TIME
|
1075 wxPD_REMAINING_TIME
|
1080 // each skip will move progress about quarter forward
1081 for ( int i
= 0; i
<= max
; i
= wxMin(i
+(skip
?int(max
/4):1), max
+1), skip
= false )
1083 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1084 // do (almost) the same operations as we did for the performance test
1086 for ( int j
= 0; j
< 1000; j
++ )
1091 DT2
= wxDateTime::UNow();
1092 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1093 if ( ts
.IsLongerThan( tsTest
) )
1107 msg
= _T("That's all, folks!");
1109 else if ( i
> max
/ 2 )
1111 msg
= _T("Only a half left (very long message)!");
1114 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1115 if ( (i
% (max
/100)) == 0 ) // // only 100 updates, this makes it much faster
1117 cont
= dialog
.Update(i
, msg
, &skip
);
1120 cont
= dialog
.Update(i
, msg
, &skip
);
1125 if ( wxMessageBox(_T("Do you really want to cancel?"),
1126 _T("Progress dialog question"), // caption
1127 wxYES_NO
| wxICON_QUESTION
) == wxYES
)
1137 wxLogStatus(wxT("Progress dialog aborted!"));
1141 wxLogStatus(wxT("Countdown from %d finished"), max
);
1145 #endif // wxUSE_PROGRESSDLG
1149 void MyFrame::ShowBusyInfo(wxCommandEvent
& WXUNUSED(event
))
1151 wxWindowDisabler disableAll
;
1153 wxBusyInfo
info(_T("Working, please wait..."), this);
1155 for ( int i
= 0; i
< 18; i
++ )
1165 #endif // wxUSE_BUSYINFO
1167 #if wxUSE_FINDREPLDLG
1169 void MyFrame::ShowReplaceDialog( wxCommandEvent
& WXUNUSED(event
) )
1173 delete m_dlgReplace
;
1174 m_dlgReplace
= NULL
;
1178 m_dlgReplace
= new wxFindReplaceDialog
1182 _T("Find and replace dialog"),
1186 m_dlgReplace
->Show(true);
1190 void MyFrame::ShowFindDialog( wxCommandEvent
& WXUNUSED(event
) )
1199 m_dlgFind
= new wxFindReplaceDialog
1208 m_dlgFind
->Show(true);
1212 static wxString
DecodeFindDialogEventFlags(int flags
)
1215 str
<< (flags
& wxFR_DOWN
? _T("down") : _T("up")) << _T(", ")
1216 << (flags
& wxFR_WHOLEWORD
? _T("whole words only, ") : _T(""))
1217 << (flags
& wxFR_MATCHCASE
? _T("") : _T("not "))
1218 << _T("case sensitive");
1223 void MyFrame::OnFindDialog(wxFindDialogEvent
& event
)
1225 wxEventType type
= event
.GetEventType();
1227 if ( type
== wxEVT_COMMAND_FIND
|| type
== wxEVT_COMMAND_FIND_NEXT
)
1229 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
1230 type
== wxEVT_COMMAND_FIND_NEXT
? wxT("next ") : wxT(""),
1231 event
.GetFindString().c_str(),
1232 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1234 else if ( type
== wxEVT_COMMAND_FIND_REPLACE
||
1235 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
)
1237 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
1238 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
? _T("all ") : wxT(""),
1239 event
.GetFindString().c_str(),
1240 event
.GetReplaceString().c_str(),
1241 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1243 else if ( type
== wxEVT_COMMAND_FIND_CLOSE
)
1245 wxFindReplaceDialog
*dlg
= event
.GetDialog();
1249 if ( dlg
== m_dlgFind
)
1252 idMenu
= DIALOGS_FIND
;
1255 else if ( dlg
== m_dlgReplace
)
1257 txt
= _T("Replace");
1258 idMenu
= DIALOGS_REPLACE
;
1259 m_dlgReplace
= NULL
;
1263 txt
= _T("Unknown");
1266 wxFAIL_MSG( _T("unexpected event") );
1269 wxLogMessage(wxT("%s dialog is being closed."), txt
);
1271 if ( idMenu
!= wxID_ANY
)
1273 GetMenuBar()->Check(idMenu
, false);
1280 wxLogError(wxT("Unknown find dialog event!"));
1284 #endif // wxUSE_FINDREPLDLG
1286 // ----------------------------------------------------------------------------
1288 // ----------------------------------------------------------------------------
1290 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
1293 dc
.SetFont(wxGetApp().m_canvasFont
);
1294 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
1295 dc
.SetBackgroundMode(wxTRANSPARENT
);
1297 _T("wxWidgets common dialogs")
1298 #if !defined(__SMARTPHONE__)
1299 _T(" test application")
1304 #if USE_MODAL_PRESENTATION
1306 // ----------------------------------------------------------------------------
1308 // ----------------------------------------------------------------------------
1310 MyModelessDialog::MyModelessDialog(wxWindow
*parent
)
1311 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modeless dialog")))
1313 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
1315 wxButton
*btn
= new wxButton(this, DIALOGS_MODELESS_BTN
, _T("Press me"));
1316 wxCheckBox
*check
= new wxCheckBox(this, wxID_ANY
, _T("Should be disabled"));
1319 sizerTop
->Add(btn
, 1, wxEXPAND
| wxALL
, 5);
1320 sizerTop
->Add(check
, 1, wxEXPAND
| wxALL
, 5);
1324 sizerTop
->SetSizeHints(this);
1325 sizerTop
->Fit(this);
1328 void MyModelessDialog::OnButton(wxCommandEvent
& WXUNUSED(event
))
1330 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
1331 wxOK
| wxICON_INFORMATION
, this);
1334 void MyModelessDialog::OnClose(wxCloseEvent
& event
)
1336 if ( event
.CanVeto() )
1338 wxMessageBox(_T("Use the menu item to close this dialog"),
1339 _T("Modeless dialog"),
1340 wxOK
| wxICON_INFORMATION
, this);
1346 // ----------------------------------------------------------------------------
1348 // ----------------------------------------------------------------------------
1350 MyModalDialog::MyModalDialog(wxWindow
*parent
)
1351 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modal dialog")))
1353 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1355 m_btnModal
= new wxButton(this, wxID_ANY
, _T("&Modal dialog..."));
1356 m_btnModeless
= new wxButton(this, wxID_ANY
, _T("Mode&less dialog"));
1357 m_btnDelete
= new wxButton(this, wxID_ANY
, _T("&Delete button"));
1359 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _T("&Close"));
1360 sizerTop
->Add(m_btnModal
, 0, wxALIGN_CENTER
| wxALL
, 5);
1361 sizerTop
->Add(m_btnModeless
, 0, wxALIGN_CENTER
| wxALL
, 5);
1362 sizerTop
->Add(m_btnDelete
, 0, wxALIGN_CENTER
| wxALL
, 5);
1363 sizerTop
->Add(btnOk
, 0, wxALIGN_CENTER
| wxALL
, 5);
1367 sizerTop
->SetSizeHints(this);
1368 sizerTop
->Fit(this);
1370 m_btnModal
->SetFocus();
1371 m_btnModal
->SetDefault();
1374 void MyModalDialog::OnButton(wxCommandEvent
& event
)
1376 if ( event
.GetEventObject() == m_btnDelete
)
1381 m_btnDelete
->Disable();
1383 else if ( event
.GetEventObject() == m_btnModal
)
1386 wxGetTextFromUser(_T("Dummy prompt"),
1387 _T("Modal dialog called from dialog"),
1388 wxEmptyString
, this);
1390 wxMessageBox(_T("Modal dialog called from dialog"));
1391 #endif // wxUSE_TEXTDLG
1393 else if ( event
.GetEventObject() == m_btnModeless
)
1395 (new MyModelessDialog(this))->Show();
1403 #endif // USE_MODAL_PRESENTATION
1405 #if USE_SETTINGS_DIALOG
1406 // ----------------------------------------------------------------------------
1408 // ----------------------------------------------------------------------------
1410 IMPLEMENT_CLASS(SettingsDialog
, wxPropertySheetDialog
)
1412 BEGIN_EVENT_TABLE(SettingsDialog
, wxPropertySheetDialog
)
1415 SettingsDialog::SettingsDialog(wxWindow
* win
, int dialogType
)
1417 SetExtraStyle(wxDIALOG_EX_CONTEXTHELP
|wxWS_EX_VALIDATE_RECURSIVELY
);
1422 bool useToolBook
= (dialogType
== DIALOGS_PROPERTY_SHEET_TOOLBOOK
|| dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
);
1429 int sheetStyle
= wxPROPSHEET_SHRINKTOFIT
;
1430 if (dialogType
== DIALOGS_PROPERTY_SHEET_BUTTONTOOLBOOK
)
1431 sheetStyle
|= wxPROPSHEET_BUTTONTOOLBOOK
;
1433 sheetStyle
|= wxPROPSHEET_TOOLBOOK
;
1435 SetSheetStyle(sheetStyle
);
1437 // create a dummy image list with a few icons
1438 const wxSize
imageSize(32, 32);
1440 m_imageList
= new wxImageList(imageSize
.GetWidth(), imageSize
.GetHeight());
1442 Add(wxArtProvider::GetIcon(wxART_INFORMATION
, wxART_OTHER
, imageSize
));
1444 Add(wxArtProvider::GetIcon(wxART_QUESTION
, wxART_OTHER
, imageSize
));
1446 Add(wxArtProvider::GetIcon(wxART_WARNING
, wxART_OTHER
, imageSize
));
1448 Add(wxArtProvider::GetIcon(wxART_ERROR
, wxART_OTHER
, imageSize
));
1453 Create(win
, wxID_ANY
, _("Preferences"), wxDefaultPosition
, wxDefaultSize
,
1454 wxDEFAULT_DIALOG_STYLE
1460 // If using a toolbook, also follow Mac style and don't create buttons
1462 CreateButtons(wxOK
|wxCANCEL
1463 #ifndef __POCKETPC__
1468 wxBookCtrlBase
* notebook
= GetBookCtrl();
1469 notebook
->SetImageList(m_imageList
);
1471 wxPanel
* generalSettings
= CreateGeneralSettingsPage(notebook
);
1472 wxPanel
* aestheticSettings
= CreateAestheticSettingsPage(notebook
);
1474 notebook
->AddPage(generalSettings
, _("General"), true, tabImage1
);
1475 notebook
->AddPage(aestheticSettings
, _("Aesthetics"), false, tabImage2
);
1480 SettingsDialog::~SettingsDialog()
1485 wxPanel
* SettingsDialog::CreateGeneralSettingsPage(wxWindow
* parent
)
1487 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
1489 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
1490 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
1494 wxBoxSizer
* itemSizer3
= new wxBoxSizer( wxHORIZONTAL
);
1495 wxCheckBox
* checkBox3
= new wxCheckBox(panel
, ID_LOAD_LAST_PROJECT
, _("&Load last project on startup"), wxDefaultPosition
, wxDefaultSize
);
1496 itemSizer3
->Add(checkBox3
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1497 item0
->Add(itemSizer3
, 0, wxGROW
|wxALL
, 0);
1501 wxString autoSaveLabel
= _("&Auto-save every");
1502 wxString minsLabel
= _("mins");
1504 wxBoxSizer
* itemSizer12
= new wxBoxSizer( wxHORIZONTAL
);
1505 wxCheckBox
* checkBox12
= new wxCheckBox(panel
, ID_AUTO_SAVE
, autoSaveLabel
, wxDefaultPosition
, wxDefaultSize
);
1508 wxSpinCtrl
* spinCtrl12
= new wxSpinCtrl(panel
, ID_AUTO_SAVE_MINS
, wxEmptyString
,
1509 wxDefaultPosition
, wxSize(40, wxDefaultCoord
), wxSP_ARROW_KEYS
, 1, 60, 1);
1512 itemSizer12
->Add(checkBox12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1514 itemSizer12
->Add(spinCtrl12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1516 itemSizer12
->Add(new wxStaticText(panel
, wxID_STATIC
, minsLabel
), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1517 item0
->Add(itemSizer12
, 0, wxGROW
|wxALL
, 0);
1521 wxBoxSizer
* itemSizer8
= new wxBoxSizer( wxHORIZONTAL
);
1522 wxCheckBox
* checkBox6
= new wxCheckBox(panel
, ID_SHOW_TOOLTIPS
, _("Show &tooltips"), wxDefaultPosition
, wxDefaultSize
);
1523 itemSizer8
->Add(checkBox6
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1524 item0
->Add(itemSizer8
, 0, wxGROW
|wxALL
, 0);
1526 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
1528 panel
->SetSizer(topSizer
);
1529 topSizer
->Fit(panel
);
1534 wxPanel
* SettingsDialog::CreateAestheticSettingsPage(wxWindow
* parent
)
1536 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
1538 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
1539 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
1541 //// PROJECT OR GLOBAL
1542 wxString globalOrProjectChoices
[2];
1543 globalOrProjectChoices
[0] = _("&New projects");
1544 globalOrProjectChoices
[1] = _("&This project");
1546 wxRadioBox
* projectOrGlobal
= new wxRadioBox(panel
, ID_APPLY_SETTINGS_TO
, _("&Apply settings to:"),
1547 wxDefaultPosition
, wxDefaultSize
, 2, globalOrProjectChoices
);
1548 item0
->Add(projectOrGlobal
, 0, wxGROW
|wxALL
, 5);
1550 projectOrGlobal
->SetSelection(0);
1552 //// BACKGROUND STYLE
1553 wxArrayString backgroundStyleChoices
;
1554 backgroundStyleChoices
.Add(wxT("Colour"));
1555 backgroundStyleChoices
.Add(wxT("Image"));
1556 wxStaticBox
* staticBox3
= new wxStaticBox(panel
, wxID_ANY
, _("Background style:"));
1558 wxBoxSizer
* styleSizer
= new wxStaticBoxSizer( staticBox3
, wxVERTICAL
);
1559 item0
->Add(styleSizer
, 0, wxGROW
|wxALL
, 5);
1561 wxBoxSizer
* itemSizer2
= new wxBoxSizer( wxHORIZONTAL
);
1563 wxChoice
* choice2
= new wxChoice(panel
, ID_BACKGROUND_STYLE
, wxDefaultPosition
, wxDefaultSize
, backgroundStyleChoices
);
1565 itemSizer2
->Add(new wxStaticText(panel
, wxID_ANY
, _("&Window:")), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1566 itemSizer2
->Add(5, 5, 1, wxALL
, 0);
1567 itemSizer2
->Add(choice2
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1569 styleSizer
->Add(itemSizer2
, 0, wxGROW
|wxALL
, 5);
1572 //// FONT SIZE SELECTION
1574 wxStaticBox
* staticBox1
= new wxStaticBox(panel
, wxID_ANY
, _("Tile font size:"));
1575 wxBoxSizer
* itemSizer5
= new wxStaticBoxSizer( staticBox1
, wxHORIZONTAL
);
1577 wxSpinCtrl
* spinCtrl
= new wxSpinCtrl(panel
, ID_FONT_SIZE
, wxEmptyString
, wxDefaultPosition
,
1578 wxSize(80, wxDefaultCoord
));
1579 itemSizer5
->Add(spinCtrl
, 0, wxALL
|wxALIGN_CENTER_HORIZONTAL
|wxALIGN_CENTER_VERTICAL
, 5);
1581 item0
->Add(itemSizer5
, 0, wxGROW
|wxLEFT
|wxRIGHT
, 5);
1584 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
1585 topSizer
->AddSpacer(5);
1587 panel
->SetSizer(topSizer
);
1588 topSizer
->Fit(panel
);
1593 #endif // USE_SETTINGS_DIALOG