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 "../sample.xpm"
30 #include "wx/datetime.h"
34 #include "wx/colordlg.h"
35 #endif // wxUSE_COLOURDLG
38 #include "wx/choicdlg.h"
39 #endif // wxUSE_CHOICEDLG
41 #if wxUSE_STARTUP_TIPS
42 #include "wx/tipdlg.h"
43 #endif // wxUSE_STARTUP_TIPS
46 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
47 #include <wx/datetime.h> // wxDateTime
50 #include "wx/progdlg.h"
51 #endif // wxUSE_PROGRESSDLG
54 #include "wx/busyinfo.h"
55 #endif // wxUSE_BUSYINFO
58 #include "wx/numdlg.h"
59 #endif // wxUSE_NUMBERDLG
62 #include "wx/filedlg.h"
63 #endif // wxUSE_FILEDLG
66 #include "wx/dirdlg.h"
67 #endif // wxUSE_DIRDLG
70 #include "wx/fontdlg.h"
71 #endif // wxUSE_FONTDLG
74 #include "wx/fdrepdlg.h"
75 #endif // wxUSE_FINDREPLDLG
77 #include "wx/spinctrl.h"
78 #include "wx/propdlg.h"
82 #if USE_COLOURDLG_GENERIC
83 #include "wx/generic/colrdlgg.h"
84 #endif // USE_COLOURDLG_GENERIC
86 #if USE_DIRDLG_GENERIC
87 #include "wx/generic/dirdlgg.h"
88 #endif // USE_DIRDLG_GENERIC
90 #if USE_FILEDLG_GENERIC
91 #include "wx/generic/filedlgg.h"
92 #endif // USE_FILEDLG_GENERIC
94 #if USE_FONTDLG_GENERIC
95 #include "wx/generic/fontdlgg.h"
96 #endif // USE_FONTDLG_GENERIC
100 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
101 EVT_PAINT(MyCanvas::OnPaint
)
106 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
107 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
110 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
111 #endif // wxUSE_COLOURDLG
114 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
115 #endif // wxUSE_FONTDLG
118 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
119 #endif // wxUSE_LOG_DIALOG
122 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
123 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
124 #endif // wxUSE_TEXTDLG
127 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
128 #endif // wxUSE_NUMBERDLG
131 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
132 EVT_MENU(DIALOGS_MULTI_CHOICE
, MyFrame::MultiChoice
)
133 #endif // wxUSE_CHOICEDLG
136 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
137 EVT_MENU(DIALOGS_FILE_OPEN2
, MyFrame::FileOpen2
)
138 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
139 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
140 #endif // wxUSE_FILEDLG
142 #if USE_FILEDLG_GENERIC
143 EVT_MENU(DIALOGS_FILE_OPEN_GENERIC
, MyFrame::FileOpenGeneric
)
144 EVT_MENU(DIALOGS_FILES_OPEN_GENERIC
, MyFrame::FilesOpenGeneric
)
145 EVT_MENU(DIALOGS_FILE_SAVE_GENERIC
, MyFrame::FileSaveGeneric
)
146 #endif // USE_FILEDLG_GENERIC
149 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
150 EVT_MENU(DIALOGS_DIRNEW_CHOOSE
, MyFrame::DirChooseNew
)
151 #endif // wxUSE_DIRDLG
153 #if USE_MODAL_PRESENTATION
154 EVT_MENU(DIALOGS_MODAL
, MyFrame::ModalDlg
)
155 EVT_MENU(DIALOGS_MODELESS
, MyFrame::ModelessDlg
)
158 #if wxUSE_STARTUP_TIPS
159 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
160 #endif // wxUSE_STARTUP_TIPS
162 #if USE_FONTDLG_GENERIC
163 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
164 #endif // USE_FONTDLG_GENERIC
166 #if USE_DIRDLG_GENERIC
167 EVT_MENU(DIALOGS_GENERIC_DIR_CHOOSE
, MyFrame::GenericDirChoose
)
168 #endif // wxMSW || wxMAC
170 #if USE_COLOURDLG_GENERIC
171 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
172 #endif // USE_COLOURDLG_GENERIC
174 #if wxUSE_PROGRESSDLG
175 EVT_MENU(DIALOGS_PROGRESS
, MyFrame::ShowProgress
)
176 #endif // wxUSE_PROGRESSDLG
179 EVT_MENU(DIALOGS_BUSYINFO
, MyFrame::ShowBusyInfo
)
180 #endif // wxUSE_BUSYINFO
182 #if wxUSE_FINDREPLDLG
183 EVT_MENU(DIALOGS_FIND
, MyFrame::ShowFindDialog
)
184 EVT_MENU(DIALOGS_REPLACE
, MyFrame::ShowReplaceDialog
)
186 EVT_FIND(wxID_ANY
, MyFrame::OnFindDialog
)
187 EVT_FIND_NEXT(wxID_ANY
, MyFrame::OnFindDialog
)
188 EVT_FIND_REPLACE(wxID_ANY
, MyFrame::OnFindDialog
)
189 EVT_FIND_REPLACE_ALL(wxID_ANY
, MyFrame::OnFindDialog
)
190 EVT_FIND_CLOSE(wxID_ANY
, MyFrame::OnFindDialog
)
191 #endif // wxUSE_FINDREPLDLG
193 EVT_MENU(DIALOGS_PROPERTY_SHEET
, MyFrame::OnPropertySheet
)
194 EVT_MENU(DIALOGS_REQUEST
, MyFrame::OnRequestUserAttention
)
196 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)
199 #if USE_MODAL_PRESENTATION
201 BEGIN_EVENT_TABLE(MyModalDialog
, wxDialog
)
202 EVT_BUTTON(wxID_ANY
, MyModalDialog::OnButton
)
205 BEGIN_EVENT_TABLE(MyModelessDialog
, wxDialog
)
206 EVT_BUTTON(DIALOGS_MODELESS_BTN
, MyModelessDialog::OnButton
)
207 EVT_CLOSE(MyModelessDialog::OnClose
)
210 #endif // USE_MODAL_PRESENTATION
212 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
214 // `Main program' equivalent, creating windows and returning main app frame
218 wxInitAllImageHandlers();
221 m_canvasTextColour
= wxColour(_T("BLACK"));
222 m_canvasFont
= *wxNORMAL_FONT
;
224 // Create the main frame window
225 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, _T("wxWidgets dialogs example"));
228 wxMenu
*file_menu
= new wxMenu
;
230 file_menu
->Append(DIALOGS_MESSAGE_BOX
, _T("&Message box\tCtrl-M"));
233 #if wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
235 wxMenu
*choices_menu
= new wxMenu
;
238 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR
, _T("&Choose colour"));
239 #endif // wxUSE_COLOURDLG
242 choices_menu
->Append(DIALOGS_CHOOSE_FONT
, _T("Choose &font"));
243 #endif // wxUSE_FONTDLG
246 choices_menu
->Append(DIALOGS_SINGLE_CHOICE
, _T("&Single choice\tCtrl-C"));
247 choices_menu
->Append(DIALOGS_MULTI_CHOICE
, _T("M&ultiple choice\tCtrl-U"));
248 #endif // wxUSE_CHOICEDLG
250 #if USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
251 choices_menu
->AppendSeparator();
252 #endif // USE_COLOURDLG_GENERIC || USE_FONTDLG_GENERIC
254 #if USE_COLOURDLG_GENERIC
255 choices_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, _T("&Choose colour (generic)"));
256 #endif // USE_COLOURDLG_GENERIC
258 #if USE_FONTDLG_GENERIC
259 choices_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, _T("Choose &font (generic)"));
260 #endif // USE_FONTDLG_GENERIC
262 file_menu
->Append(wxID_ANY
,_T("&Choices and selectors"),choices_menu
);
263 #endif // wxUSE_COLOURDLG || wxUSE_FONTDLG || wxUSE_CHOICEDLG
266 #if wxUSE_TEXTDLG || wxUSE_NUMBERDLG
268 wxMenu
*entry_menu
= new wxMenu
;
271 entry_menu
->Append(DIALOGS_TEXT_ENTRY
, _T("Text &entry\tCtrl-E"));
272 entry_menu
->Append(DIALOGS_PASSWORD_ENTRY
, _T("&Password entry\tCtrl-P"));
273 #endif // wxUSE_TEXTDLG
276 entry_menu
->Append(DIALOGS_NUM_ENTRY
, _T("&Numeric entry\tCtrl-N"));
277 #endif // wxUSE_NUMBERDLG
279 file_menu
->Append(wxID_ANY
,_T("&Entry dialogs"),entry_menu
);
281 #endif // wxUSE_TEXTDLG || wxUSE_NUMBERDLG
286 wxMenu
*filedlg_menu
= new wxMenu
;
287 filedlg_menu
->Append(DIALOGS_FILE_OPEN
, _T("&Open file\tCtrl-O"));
288 filedlg_menu
->Append(DIALOGS_FILE_OPEN2
, _T("&Second open file\tCtrl-2"));
289 filedlg_menu
->Append(DIALOGS_FILES_OPEN
, _T("Open &files\tCtrl-Q"));
290 filedlg_menu
->Append(DIALOGS_FILE_SAVE
, _T("Sa&ve file\tCtrl-S"));
292 #if USE_FILEDLG_GENERIC
293 filedlg_menu
->AppendSeparator();
294 filedlg_menu
->Append(DIALOGS_FILE_OPEN_GENERIC
, _T("&Open file (generic)"));
295 filedlg_menu
->Append(DIALOGS_FILES_OPEN_GENERIC
, _T("Open &files (generic)"));
296 filedlg_menu
->Append(DIALOGS_FILE_SAVE_GENERIC
, _T("Sa&ve file (generic)"));
297 #endif // USE_FILEDLG_GENERIC
299 file_menu
->Append(wxID_ANY
,_T("&File operations"),filedlg_menu
);
301 #endif // wxUSE_FILEDLG
304 wxMenu
*dir_menu
= new wxMenu
;
306 dir_menu
->Append(DIALOGS_DIR_CHOOSE
, _T("&Choose a directory\tCtrl-D"));
307 dir_menu
->Append(DIALOGS_DIRNEW_CHOOSE
, _T("Choose a directory (with \"Ne&w\" button)\tShift-Ctrl-D"));
308 file_menu
->Append(wxID_ANY
,_T("&Directory operations"),dir_menu
);
310 #if USE_DIRDLG_GENERIC
311 dir_menu
->AppendSeparator();
312 dir_menu
->Append(DIALOGS_GENERIC_DIR_CHOOSE
, _T("&Choose a directory (generic)"));
313 #endif // USE_DIRDLG_GENERIC
315 #endif // wxUSE_DIRDLG
318 #if wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
320 wxMenu
*info_menu
= new wxMenu
;
322 #if wxUSE_STARTUP_TIPS
323 info_menu
->Append(DIALOGS_TIP
, _T("&Tip of the day\tCtrl-T"));
324 #endif // wxUSE_STARTUP_TIPS
326 #if wxUSE_PROGRESSDLG
327 info_menu
->Append(DIALOGS_PROGRESS
, _T("Pro&gress dialog\tCtrl-G"));
328 #endif // wxUSE_PROGRESSDLG
331 info_menu
->Append(DIALOGS_BUSYINFO
, _T("&Busy info dialog\tCtrl-B"));
332 #endif // wxUSE_BUSYINFO
335 info_menu
->Append(DIALOGS_LOG_DIALOG
, _T("&Log dialog\tCtrl-L"));
336 #endif // wxUSE_LOG_DIALOG
338 file_menu
->Append(wxID_ANY
,_T("&Informative dialogs"),info_menu
);
340 #endif // wxUSE_STARTUP_TIPS || wxUSE_PROGRESSDLG || wxUSE_BUSYINFO || wxUSE_LOG_DIALOG
343 #if wxUSE_FINDREPLDLG
344 wxMenu
*find_menu
= new wxMenu
;
345 find_menu
->AppendCheckItem(DIALOGS_FIND
, _T("&Find dialog\tCtrl-F"));
346 find_menu
->AppendCheckItem(DIALOGS_REPLACE
, _T("Find and &replace dialog\tShift-Ctrl-F"));
347 file_menu
->Append(wxID_ANY
,_T("&Searching"),find_menu
);
348 #endif // wxUSE_FINDREPLDLG
350 #if USE_MODAL_PRESENTATION
351 wxMenu
*modal_menu
= new wxMenu
;
352 modal_menu
->Append(DIALOGS_MODAL
, _T("Mo&dal dialog\tCtrl-W"));
353 modal_menu
->AppendCheckItem(DIALOGS_MODELESS
, _T("Modeless &dialog\tCtrl-Z"));
354 file_menu
->Append(wxID_ANY
,_T("&Modal/Modeless"),modal_menu
);
355 #endif // USE_MODAL_PRESENTATION
357 file_menu
->Append(DIALOGS_PROPERTY_SHEET
, _T("&Property Sheet Dialog\tCtrl-P"));
358 file_menu
->Append(DIALOGS_REQUEST
, _T("&Request user attention\tCtrl-R"));
360 file_menu
->AppendSeparator();
361 file_menu
->Append(wxID_EXIT
, _T("E&xit\tAlt-X"));
363 wxMenuBar
*menu_bar
= new wxMenuBar
;
364 menu_bar
->Append(file_menu
, _T("&File"));
365 frame
->SetMenuBar(menu_bar
);
367 myCanvas
= new MyCanvas(frame
);
368 myCanvas
->SetBackgroundColour(*wxWHITE
);
370 frame
->Centre(wxBOTH
);
380 // My frame constructor
381 MyFrame::MyFrame(wxWindow
*parent
,
382 const wxString
& title
)
383 : wxFrame(parent
, wxID_ANY
, title
)
387 #if USE_MODAL_PRESENTATION
388 m_dialog
= (MyModelessDialog
*)NULL
;
389 #endif // USE_MODAL_PRESENTATION
391 #if wxUSE_FINDREPLDLG
397 m_clrData
.SetChooseFull(true);
398 for (int i
= 0; i
< 16; i
++)
400 m_clrData
.SetCustomColour(
403 (unsigned char)(i
*16),
404 (unsigned char)(i
*16),
405 (unsigned char)(i
*16)
409 #endif // wxUSE_COLOURDLG
413 #endif // wxUSE_STATUSBAR
417 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
419 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
421 wxColourDialog
dialog(this, &m_clrData
);
422 dialog
.SetTitle(_T("Choose the background colour"));
423 if (dialog
.ShowModal() == wxID_OK
)
425 m_clrData
= dialog
.GetColourData();
426 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
427 myCanvas
->ClearBackground();
431 #endif // wxUSE_COLOURDLG
433 #if USE_COLOURDLG_GENERIC
434 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
436 m_clrData
.SetColour(myCanvas
->GetBackgroundColour());
438 //FIXME:TODO:This has no effect...
439 m_clrData
.SetChooseFull(true);
441 for (int i
= 0; i
< 16; i
++)
444 (unsigned char)(i
*16),
445 (unsigned char)(i
*16),
446 (unsigned char)(i
*16)
448 m_clrData
.SetCustomColour(i
, colour
);
451 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &m_clrData
);
452 if (dialog
->ShowModal() == wxID_OK
)
454 m_clrData
= dialog
->GetColourData();
455 myCanvas
->SetBackgroundColour(m_clrData
.GetColour());
456 myCanvas
->ClearBackground();
461 #endif // USE_COLOURDLG_GENERIC
464 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
467 data
.SetInitialFont(wxGetApp().m_canvasFont
);
468 data
.SetColour(wxGetApp().m_canvasTextColour
);
470 // you might also do this:
472 // wxFontDialog dialog;
473 // if ( !dialog.Create(this, data) { ... error ... }
475 wxFontDialog
dialog(this, data
);
477 if (dialog
.ShowModal() == wxID_OK
)
479 wxFontData retData
= dialog
.GetFontData();
480 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
481 wxGetApp().m_canvasTextColour
= retData
.GetColour();
484 //else: cancelled by the user, don't change the font
486 #endif // wxUSE_FONTDLG
488 #if USE_FONTDLG_GENERIC
489 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
492 data
.SetInitialFont(wxGetApp().m_canvasFont
);
493 data
.SetColour(wxGetApp().m_canvasTextColour
);
495 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, &data
);
496 if (dialog
->ShowModal() == wxID_OK
)
498 wxFontData retData
= dialog
->GetFontData();
499 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
500 wxGetApp().m_canvasTextColour
= retData
.GetColour();
505 #endif // USE_FONTDLG_GENERIC
508 void MyFrame::LogDialog(wxCommandEvent
& WXUNUSED(event
))
510 // calling wxYield() (as ~wxBusyCursor does) shouldn't result in messages
511 // being flushed -- test it
514 wxLogMessage(wxT("This is some message - everything is ok so far."));
515 wxLogMessage(wxT("Another message...\n... this one is on multiple lines"));
516 wxLogWarning(wxT("And then something went wrong!"));
518 // and if ~wxBusyCursor doesn't do it, then call it manually
522 wxLogError(wxT("Intermediary error handler decided to abort."));
523 wxLogError(wxT("The top level caller detected an unrecoverable error."));
525 wxLog::FlushActive();
527 wxLogMessage(wxT("And this is the same dialog but with only one message."));
529 #endif // wxUSE_LOG_DIALOG
531 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
533 wxMessageDialog
dialog( NULL
, _T("This is a message box\nA long, long string to test out the message box properly"),
534 _T("Message box text"), wxNO_DEFAULT
|wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
536 switch ( dialog
.ShowModal() )
539 wxLogStatus(wxT("You pressed \"Yes\""));
543 wxLogStatus(wxT("You pressed \"No\""));
547 wxLogStatus(wxT("You pressed \"Cancel\""));
551 wxLogError(wxT("Unexpected wxMessageDialog return code!"));
556 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
) )
558 long res
= wxGetNumberFromUser( _T("This is some text, actually a lot of text.\n")
559 _T("Even two rows of text."),
560 _T("Enter a number:"), _T("Numeric input test"),
567 msg
= _T("Invalid number entered or dialog cancelled.");
572 msg
.Printf(_T("You've entered %lu"), res
);
573 icon
= wxICON_INFORMATION
;
576 wxMessageBox(msg
, _T("Numeric test result"), wxOK
| icon
, this);
578 #endif // wxUSE_NUMBERDLG
581 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
583 wxString pwd
= wxGetPasswordFromUser(_T("Enter password:"),
584 _T("Password entry dialog"),
589 wxMessageBox(wxString::Format(wxT("Your password is '%s'"), pwd
.c_str()),
590 _T("Got password"), wxOK
| wxICON_INFORMATION
, this);
594 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
596 wxTextEntryDialog
dialog(this,
597 _T("This is a small sample\n")
598 _T("A long, long string to test out the text entrybox"),
599 _T("Please enter a string"),
603 if (dialog
.ShowModal() == wxID_OK
)
605 wxMessageBox(dialog
.GetValue(), _T("Got string"), wxOK
| wxICON_INFORMATION
, this);
608 #endif // wxUSE_TEXTDLG
611 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
613 const wxString choices
[] = { _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five") } ;
615 wxSingleChoiceDialog
dialog(this,
616 _T("This is a small sample\n")
617 _T("A single-choice convenience dialog"),
618 _T("Please select a value"),
619 WXSIZEOF(choices
), choices
);
621 dialog
.SetSelection(2);
623 if (dialog
.ShowModal() == wxID_OK
)
625 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), _T("Got string"));
630 void MyFrame::MultiChoice(wxCommandEvent
& WXUNUSED(event
) )
632 const wxString choices
[] =
634 _T("One"), _T("Two"), _T("Three"), _T("Four"), _T("Five"),
635 _T("Six"), _T("Seven"), _T("Eight"), _T("Nine"), _T("Ten"),
636 _T("Eleven"), _T("Twelve"), _T("Seventeen"),
639 wxArrayInt selections
;
640 size_t count
= wxGetMultipleChoices(selections
,
641 _T("This is a small sample\n")
642 _T("A multi-choice convenience dialog"),
643 _T("Please select a value"),
644 WXSIZEOF(choices
), choices
,
649 msg
.Printf(wxT("You selected %u items:\n"), (unsigned)count
);
650 for ( size_t n
= 0; n
< count
; n
++ )
652 msg
+= wxString::Format(wxT("\t%u: %u (%s)\n"),
653 (unsigned)n
, (unsigned)selections
[n
],
654 choices
[selections
[n
]].c_str());
658 //else: cancelled or nothing selected
660 #endif // wxUSE_CHOICEDLG
663 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
668 _T("Testing open file dialog"),
672 _T("C++ files (*.cpp)|*.cpp")
674 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
678 dialog
.SetDirectory(wxGetHomeDir());
680 if (dialog
.ShowModal() == wxID_OK
)
683 info
.Printf(_T("Full file name: %s\n")
686 dialog
.GetPath().c_str(),
687 dialog
.GetDirectory().c_str(),
688 dialog
.GetFilename().c_str());
689 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
694 // this shows how to take advantage of specifying a default extension in the
695 // call to wxFileSelector: it is remembered after each new call and the next
696 // one will use it by default
697 void MyFrame::FileOpen2(wxCommandEvent
& WXUNUSED(event
) )
699 static wxString s_extDef
;
700 wxString path
= wxFileSelector(
701 _T("Select the file to load"),
702 wxEmptyString
, wxEmptyString
,
706 _T("Waveform (*.wav)|*.wav|Plain text (*.txt)|*.txt|All files (%s)|%s"),
707 wxFileSelectorDefaultWildcardStr
,
708 wxFileSelectorDefaultWildcardStr
717 // it is just a sample, would use wxSplitPath in real program
718 s_extDef
= path
.AfterLast(_T('.'));
720 wxLogMessage(_T("You selected the file '%s', remembered extension '%s'"),
721 (const wxChar
*) path
, (const wxChar
*) s_extDef
);
724 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
728 _T("C++ files (*.cpp)|*.cpp");
732 _T("All files (%s)|%s|C++ files (*.cpp;*.h)|*.cpp;*.h"),
733 wxFileSelectorDefaultWildcardStr
,
734 wxFileSelectorDefaultWildcardStr
737 wxFileDialog
dialog(this, _T("Testing open multiple file dialog"),
738 wxEmptyString
, wxEmptyString
, wildcards
,
741 if (dialog
.ShowModal() == wxID_OK
)
743 wxArrayString paths
, filenames
;
745 dialog
.GetPaths(paths
);
746 dialog
.GetFilenames(filenames
);
749 size_t count
= paths
.GetCount();
750 for ( size_t n
= 0; n
< count
; n
++ )
752 s
.Printf(_T("File %d: %s (%s)\n"),
753 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
757 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
760 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
765 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
767 wxFileDialog
dialog(this,
768 _T("Testing save file dialog"),
771 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
772 wxSAVE
|wxOVERWRITE_PROMPT
);
774 dialog
.SetFilterIndex(1);
776 if (dialog
.ShowModal() == wxID_OK
)
778 wxLogMessage(_T("%s, filter %d"),
779 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
782 #endif // wxUSE_FILEDLG
784 #if USE_FILEDLG_GENERIC
785 void MyFrame::FileOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
787 wxGenericFileDialog dialog
790 _T("Testing open file dialog"),
793 _T("C++ files (*.cpp;*.h)|*.cpp;*.h")
796 dialog
.SetDirectory(wxGetHomeDir());
798 if (dialog
.ShowModal() == wxID_OK
)
801 info
.Printf(_T("Full file name: %s\n")
804 dialog
.GetPath().c_str(),
805 dialog
.GetDirectory().c_str(),
806 dialog
.GetFilename().c_str());
807 wxMessageDialog
dialog2(this, info
, _T("Selected file"));
812 void MyFrame::FilesOpenGeneric(wxCommandEvent
& WXUNUSED(event
) )
814 wxString wildcards
= _T("All files (*.*)|*.*|C++ files (*.cpp;*.h)|*.cpp;*.h");
815 wxGenericFileDialog
dialog(this, _T("Testing open multiple file dialog"),
816 wxEmptyString
, wxEmptyString
, wildcards
,
819 if (dialog
.ShowModal() == wxID_OK
)
821 wxArrayString paths
, filenames
;
823 dialog
.GetPaths(paths
);
824 dialog
.GetFilenames(filenames
);
827 size_t count
= paths
.GetCount();
828 for ( size_t n
= 0; n
< count
; n
++ )
830 s
.Printf(_T("File %d: %s (%s)\n"),
831 (int)n
, paths
[n
].c_str(), filenames
[n
].c_str());
835 s
.Printf(_T("Filter index: %d"), dialog
.GetFilterIndex());
838 wxMessageDialog
dialog2(this, msg
, _T("Selected files"));
843 void MyFrame::FileSaveGeneric(wxCommandEvent
& WXUNUSED(event
) )
845 wxGenericFileDialog
dialog(this,
846 _T("Testing save file dialog"),
849 _T("Text files (*.txt)|*.txt|Document files (*.doc)|*.doc"),
850 wxSAVE
|wxOVERWRITE_PROMPT
);
852 dialog
.SetFilterIndex(1);
854 if (dialog
.ShowModal() == wxID_OK
)
856 wxLogMessage(_T("%s, filter %d"),
857 dialog
.GetPath().c_str(), dialog
.GetFilterIndex());
860 #endif // USE_FILEDLG_GENERIC
863 void MyFrame::DoDirChoose(int style
)
865 // pass some initial dir to wxDirDialog
867 wxGetHomeDir(&dirHome
);
869 wxDirDialog
dialog(this, _T("Testing directory picker"), dirHome
, style
);
871 if (dialog
.ShowModal() == wxID_OK
)
873 wxLogMessage(_T("Selected path: %s"), dialog
.GetPath().c_str());
877 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
879 DoDirChoose(wxDD_DEFAULT_STYLE
& ~wxDD_NEW_DIR_BUTTON
);
882 void MyFrame::DirChooseNew(wxCommandEvent
& WXUNUSED(event
) )
884 DoDirChoose(wxDD_DEFAULT_STYLE
| wxDD_NEW_DIR_BUTTON
);
886 #endif // wxUSE_DIRDLG
888 #if USE_DIRDLG_GENERIC
889 void MyFrame::GenericDirChoose(wxCommandEvent
& WXUNUSED(event
) )
891 // pass some initial dir to wxDirDialog
893 wxGetHomeDir(&dirHome
);
895 wxGenericDirDialog
dialog(this, _T("Testing generic directory picker"), dirHome
);
897 if (dialog
.ShowModal() == wxID_OK
)
899 wxMessageDialog
dialog2(this, dialog
.GetPath(), _T("Selected path"));
903 #endif // USE_DIRDLG_GENERIC
905 #if USE_MODAL_PRESENTATION
906 void MyFrame::ModalDlg(wxCommandEvent
& WXUNUSED(event
))
908 MyModalDialog
dlg(this);
912 void MyFrame::ModelessDlg(wxCommandEvent
& event
)
914 bool show
= GetMenuBar()->IsChecked(event
.GetId());
920 m_dialog
= new MyModelessDialog(this);
923 m_dialog
->Show(true);
927 // If m_dialog is NULL, then possibly the system
928 // didn't report the checked menu item status correctly.
929 // It should be true just after the menu item was selected,
930 // if there was no modeless dialog yet.
932 wxASSERT( m_dialog
!= NULL
);
937 #endif // USE_MODAL_PRESENTATION
939 #if wxUSE_STARTUP_TIPS
940 void MyFrame::ShowTip(wxCommandEvent
& WXUNUSED(event
))
942 static size_t s_index
= (size_t)-1;
944 if ( s_index
== (size_t)-1 )
948 // this is completely bogus, we don't know how many lines are there
949 // in the file, but who cares, it's a demo only...
950 s_index
= rand() % 5;
953 wxTipProvider
*tipProvider
= wxCreateFileTipProvider(_T("tips.txt"), s_index
);
955 bool showAtStartup
= wxShowTip(this, tipProvider
);
959 wxMessageBox(_T("Will show tips on startup"), _T("Tips dialog"),
960 wxOK
| wxICON_INFORMATION
, this);
963 s_index
= tipProvider
->GetCurrentTip();
966 #endif // wxUSE_STARTUP_TIPS
968 void MyFrame::OnPropertySheet(wxCommandEvent
& WXUNUSED(event
))
970 SettingsDialog
dialog(this);
974 void MyFrame::OnRequestUserAttention(wxCommandEvent
& WXUNUSED(event
))
976 wxLogStatus(_T("Sleeping for 3 seconds to allow you to switch to another window"));
980 RequestUserAttention(wxUSER_ATTENTION_ERROR
);
983 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
988 #if wxUSE_PROGRESSDLG
990 void MyFrame::ShowProgress( wxCommandEvent
& WXUNUSED(event
) )
992 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
993 // check the performance
994 int countrandomnumbers
= 0, count
= 0;
995 wxTimeSpan
tsTest(0,0,0,250);
996 wxDateTime DT2
, DT1
= wxDateTime::UNow();
1001 ++countrandomnumbers
;
1002 if ( countrandomnumbers
== 1000 )
1005 countrandomnumbers
= 0;
1007 DT2
= wxDateTime::UNow();
1008 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1009 if ( ts
.IsLongerThan( tsTest
) )
1015 const int max
= 40 * count
;
1017 static const int max
= 10;
1018 #endif // wxUSE_STOPWATCH && wxUSE_LONGLONG
1020 wxProgressDialog
dialog(_T("Progress dialog example"),
1021 _T("An informative message"),
1027 // wxPD_AUTO_HIDE | -- try this as well
1029 wxPD_ESTIMATED_TIME
|
1030 wxPD_REMAINING_TIME
|
1035 // each skip will move progress about quarter forward
1036 for ( int i
= 0; i
<= max
; i
= wxMin(i
+(skip
?int(max
/4):1), max
+1), skip
= false )
1038 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1039 // do (almost) the same operations as we did for the performance test
1041 for ( int j
= 0; j
< 1000; j
++ )
1046 DT2
= wxDateTime::UNow();
1047 wxTimeSpan ts
= DT2
.Subtract( DT1
);
1048 if ( ts
.IsLongerThan( tsTest
) )
1062 msg
= _T("That's all, folks!");
1064 else if ( i
> max
/ 2 )
1066 msg
= _T("Only a half left (very long message)!");
1069 #if wxUSE_STOPWATCH && wxUSE_LONGLONG
1070 if ( (i
% (max
/100)) == 0 ) // // only 100 updates, this makes it much faster
1072 cont
= dialog
.Update(i
, msg
, &skip
);
1075 cont
= dialog
.Update(i
, msg
, &skip
);
1080 if ( wxMessageBox(_T("Do you really want to cancel?"),
1081 _T("Progress dialog question"), // caption
1082 wxYES_NO
| wxICON_QUESTION
) == wxYES
)
1092 wxLogStatus(wxT("Progress dialog aborted!"));
1096 wxLogStatus(wxT("Countdown from %d finished"), max
);
1100 #endif // wxUSE_PROGRESSDLG
1104 void MyFrame::ShowBusyInfo(wxCommandEvent
& WXUNUSED(event
))
1106 wxWindowDisabler disableAll
;
1108 wxBusyInfo
info(_T("Working, please wait..."), this);
1110 for ( int i
= 0; i
< 18; i
++ )
1120 #endif // wxUSE_BUSYINFO
1122 #if wxUSE_FINDREPLDLG
1124 void MyFrame::ShowReplaceDialog( wxCommandEvent
& WXUNUSED(event
) )
1128 delete m_dlgReplace
;
1129 m_dlgReplace
= NULL
;
1133 m_dlgReplace
= new wxFindReplaceDialog
1137 _T("Find and replace dialog"),
1141 m_dlgReplace
->Show(true);
1145 void MyFrame::ShowFindDialog( wxCommandEvent
& WXUNUSED(event
) )
1154 m_dlgFind
= new wxFindReplaceDialog
1163 m_dlgFind
->Show(true);
1167 static wxString
DecodeFindDialogEventFlags(int flags
)
1170 str
<< (flags
& wxFR_DOWN
? _T("down") : _T("up")) << _T(", ")
1171 << (flags
& wxFR_WHOLEWORD
? _T("whole words only, ") : _T(""))
1172 << (flags
& wxFR_MATCHCASE
? _T("") : _T("not "))
1173 << _T("case sensitive");
1178 void MyFrame::OnFindDialog(wxFindDialogEvent
& event
)
1180 wxEventType type
= event
.GetEventType();
1182 if ( type
== wxEVT_COMMAND_FIND
|| type
== wxEVT_COMMAND_FIND_NEXT
)
1184 wxLogMessage(wxT("Find %s'%s' (flags: %s)"),
1185 type
== wxEVT_COMMAND_FIND_NEXT
? wxT("next ") : wxT(""),
1186 event
.GetFindString().c_str(),
1187 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1189 else if ( type
== wxEVT_COMMAND_FIND_REPLACE
||
1190 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
)
1192 wxLogMessage(wxT("Replace %s'%s' with '%s' (flags: %s)"),
1193 type
== wxEVT_COMMAND_FIND_REPLACE_ALL
? _T("all ") : wxT(""),
1194 event
.GetFindString().c_str(),
1195 event
.GetReplaceString().c_str(),
1196 DecodeFindDialogEventFlags(event
.GetFlags()).c_str());
1198 else if ( type
== wxEVT_COMMAND_FIND_CLOSE
)
1200 wxFindReplaceDialog
*dlg
= event
.GetDialog();
1204 if ( dlg
== m_dlgFind
)
1207 idMenu
= DIALOGS_FIND
;
1210 else if ( dlg
== m_dlgReplace
)
1212 txt
= _T("Replace");
1213 idMenu
= DIALOGS_REPLACE
;
1214 m_dlgReplace
= NULL
;
1218 txt
= _T("Unknown");
1221 wxFAIL_MSG( _T("unexpected event") );
1224 wxLogMessage(wxT("%s dialog is being closed."), txt
);
1226 if ( idMenu
!= wxID_ANY
)
1228 GetMenuBar()->Check(idMenu
, false);
1235 wxLogError(wxT("Unknown find dialog event!"));
1239 #endif // wxUSE_FINDREPLDLG
1241 // ----------------------------------------------------------------------------
1243 // ----------------------------------------------------------------------------
1245 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
1248 dc
.SetFont(wxGetApp().m_canvasFont
);
1249 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
1250 dc
.SetBackgroundMode(wxTRANSPARENT
);
1252 _T("wxWidgets common dialogs")
1253 #if !defined(__SMARTPHONE__)
1254 _T(" test application")
1259 #if USE_MODAL_PRESENTATION
1261 // ----------------------------------------------------------------------------
1263 // ----------------------------------------------------------------------------
1265 MyModelessDialog::MyModelessDialog(wxWindow
*parent
)
1266 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modeless dialog")))
1268 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
1270 wxButton
*btn
= new wxButton(this, DIALOGS_MODELESS_BTN
, _T("Press me"));
1271 wxCheckBox
*check
= new wxCheckBox(this, wxID_ANY
, _T("Should be disabled"));
1274 sizerTop
->Add(btn
, 1, wxEXPAND
| wxALL
, 5);
1275 sizerTop
->Add(check
, 1, wxEXPAND
| wxALL
, 5);
1279 sizerTop
->SetSizeHints(this);
1280 sizerTop
->Fit(this);
1283 void MyModelessDialog::OnButton(wxCommandEvent
& WXUNUSED(event
))
1285 wxMessageBox(_T("Button pressed in modeless dialog"), _T("Info"),
1286 wxOK
| wxICON_INFORMATION
, this);
1289 void MyModelessDialog::OnClose(wxCloseEvent
& event
)
1291 if ( event
.CanVeto() )
1293 wxMessageBox(_T("Use the menu item to close this dialog"),
1294 _T("Modeless dialog"),
1295 wxOK
| wxICON_INFORMATION
, this);
1301 // ----------------------------------------------------------------------------
1303 // ----------------------------------------------------------------------------
1305 MyModalDialog::MyModalDialog(wxWindow
*parent
)
1306 : wxDialog(parent
, wxID_ANY
, wxString(_T("Modal dialog")))
1308 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
1310 m_btnModal
= new wxButton(this, wxID_ANY
, _T("&Modal dialog..."));
1311 m_btnModeless
= new wxButton(this, wxID_ANY
, _T("Mode&less dialog"));
1312 m_btnDelete
= new wxButton(this, wxID_ANY
, _T("&Delete button"));
1314 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _T("&Close"));
1315 sizerTop
->Add(m_btnModal
, 0, wxALIGN_CENTER
| wxALL
, 5);
1316 sizerTop
->Add(m_btnModeless
, 0, wxALIGN_CENTER
| wxALL
, 5);
1317 sizerTop
->Add(m_btnDelete
, 0, wxALIGN_CENTER
| wxALL
, 5);
1318 sizerTop
->Add(btnOk
, 0, wxALIGN_CENTER
| wxALL
, 5);
1322 sizerTop
->SetSizeHints(this);
1323 sizerTop
->Fit(this);
1325 m_btnModal
->SetFocus();
1326 m_btnModal
->SetDefault();
1329 void MyModalDialog::OnButton(wxCommandEvent
& event
)
1331 if ( event
.GetEventObject() == m_btnDelete
)
1336 m_btnDelete
->Disable();
1338 else if ( event
.GetEventObject() == m_btnModal
)
1341 wxGetTextFromUser(_T("Dummy prompt"),
1342 _T("Modal dialog called from dialog"),
1343 wxEmptyString
, this);
1345 wxMessageBox(_T("Modal dialog called from dialog"));
1346 #endif // wxUSE_TEXTDLG
1348 else if ( event
.GetEventObject() == m_btnModeless
)
1350 (new MyModelessDialog(this))->Show();
1358 #endif // USE_MODAL_PRESENTATION
1360 // ----------------------------------------------------------------------------
1362 // ----------------------------------------------------------------------------
1364 IMPLEMENT_CLASS(SettingsDialog
, wxPropertySheetDialog
)
1366 BEGIN_EVENT_TABLE(SettingsDialog
, wxPropertySheetDialog
)
1369 SettingsDialog::SettingsDialog(wxWindow
* win
)
1371 SetExtraStyle(wxDIALOG_EX_CONTEXTHELP
);
1373 Create(win
, -1, _("Preferences"), wxDefaultPosition
, wxDefaultSize
, wxDEFAULT_DIALOG_STYLE
|wxRESIZE_BORDER
);
1374 CreateButtons(wxOK
|wxCANCEL
|wxHELP
);
1376 wxBookCtrlBase
* notebook
= GetBookCtrl();
1378 wxPanel
* generalSettings
= CreateGeneralSettingsPage(notebook
);
1379 wxPanel
* aestheticSettings
= CreateAestheticSettingsPage(notebook
);
1381 notebook
->AddPage(generalSettings
, _("General"));
1382 notebook
->AddPage(aestheticSettings
, _("Aesthetics"));
1387 wxPanel
* SettingsDialog::CreateGeneralSettingsPage(wxWindow
* parent
)
1389 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
1391 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
1392 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
1396 wxBoxSizer
* itemSizer3
= new wxBoxSizer( wxHORIZONTAL
);
1397 wxCheckBox
* checkBox3
= new wxCheckBox(panel
, ID_LOAD_LAST_PROJECT
, _("&Load last project on startup"), wxDefaultPosition
, wxDefaultSize
);
1398 itemSizer3
->Add(checkBox3
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1399 item0
->Add(itemSizer3
, 0, wxGROW
|wxALL
, 0);
1403 wxString autoSaveLabel
= _("&Auto-save every");
1404 wxString minsLabel
= _("mins");
1406 wxBoxSizer
* itemSizer12
= new wxBoxSizer( wxHORIZONTAL
);
1407 wxCheckBox
* checkBox12
= new wxCheckBox(panel
, ID_AUTO_SAVE
, autoSaveLabel
, wxDefaultPosition
, wxDefaultSize
);
1408 wxSpinCtrl
* spinCtrl12
= new wxSpinCtrl(panel
, ID_AUTO_SAVE_MINS
, wxEmptyString
,
1409 wxDefaultPosition
, wxSize(40, -1), wxSP_ARROW_KEYS
, 1, 60, 1);
1411 itemSizer12
->Add(checkBox12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1412 itemSizer12
->Add(spinCtrl12
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1413 itemSizer12
->Add(new wxStaticText(panel
, wxID_STATIC
, minsLabel
), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1414 item0
->Add(itemSizer12
, 0, wxGROW
|wxALL
, 0);
1418 wxBoxSizer
* itemSizer8
= new wxBoxSizer( wxHORIZONTAL
);
1419 wxCheckBox
* checkBox6
= new wxCheckBox(panel
, ID_SHOW_TOOLTIPS
, _("Show &tooltips"), wxDefaultPosition
, wxDefaultSize
);
1420 itemSizer8
->Add(checkBox6
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1421 item0
->Add(itemSizer8
, 0, wxGROW
|wxALL
, 0);
1423 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
1425 panel
->SetSizer(topSizer
);
1426 topSizer
->Fit(panel
);
1431 wxPanel
* SettingsDialog::CreateAestheticSettingsPage(wxWindow
* parent
)
1433 wxPanel
* panel
= new wxPanel(parent
, wxID_ANY
);
1435 wxBoxSizer
*topSizer
= new wxBoxSizer( wxVERTICAL
);
1436 wxBoxSizer
*item0
= new wxBoxSizer( wxVERTICAL
);
1438 //// PROJECT OR GLOBAL
1439 wxString globalOrProjectChoices
[2];
1440 globalOrProjectChoices
[0] = _("&New projects");
1441 globalOrProjectChoices
[1] = _("&This project");
1443 wxRadioBox
* projectOrGlobal
= new wxRadioBox(panel
, ID_APPLY_SETTINGS_TO
, _("&Apply settings to:"),
1444 wxDefaultPosition
, wxDefaultSize
, 2, globalOrProjectChoices
);
1445 item0
->Add(projectOrGlobal
, 0, wxGROW
|wxALL
, 5);
1447 projectOrGlobal
->SetSelection(0);
1449 //// BACKGROUND STYLE
1450 wxArrayString backgroundStyleChoices
;
1451 backgroundStyleChoices
.Add(wxT("Colour"));
1452 backgroundStyleChoices
.Add(wxT("Image"));
1453 wxStaticBox
* staticBox3
= new wxStaticBox(panel
, -1, _("Background style:"));
1455 wxBoxSizer
* styleSizer
= new wxStaticBoxSizer( staticBox3
, wxVERTICAL
);
1456 item0
->Add(styleSizer
, 0, wxGROW
|wxALL
, 5);
1458 wxBoxSizer
* itemSizer2
= new wxBoxSizer( wxHORIZONTAL
);
1460 wxChoice
* choice2
= new wxChoice(panel
, ID_BACKGROUND_STYLE
, wxDefaultPosition
, wxDefaultSize
, backgroundStyleChoices
);
1462 itemSizer2
->Add(new wxStaticText(panel
, wxID_ANY
, _("&Window:")), 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1463 itemSizer2
->Add(5, 5, 1, wxALL
, 0);
1464 itemSizer2
->Add(choice2
, 0, wxALL
|wxALIGN_CENTER_VERTICAL
, 5);
1466 styleSizer
->Add(itemSizer2
, 0, wxGROW
|wxALL
, 5);
1468 //// FONT SIZE SELECTION
1470 wxStaticBox
* staticBox1
= new wxStaticBox(panel
, -1, _("Tile font size:"));
1471 wxBoxSizer
* itemSizer5
= new wxStaticBoxSizer( staticBox1
, wxHORIZONTAL
);
1473 wxSpinCtrl
* spinCtrl
= new wxSpinCtrl(panel
, ID_FONT_SIZE
, wxEmptyString
, wxDefaultPosition
,
1475 itemSizer5
->Add(spinCtrl
, 0, wxALL
|wxALIGN_CENTER_HORIZONTAL
|wxALIGN_CENTER_VERTICAL
, 5);
1477 item0
->Add(itemSizer5
, 0, wxGROW
|wxLEFT
|wxRIGHT
, 5);
1479 topSizer
->Add( item0
, 1, wxGROW
|wxALIGN_CENTRE
|wxALL
, 5 );
1481 panel
->SetSizer(topSizer
);
1482 topSizer
->Fit(panel
);