1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Common dialogs demo
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
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"
35 #define wxTEST_GENERIC_DIALOGS_IN_MSW 0
37 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
38 #include <wx/generic/colrdlgg.h>
39 #include <wx/generic/fontdlgg.h>
46 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
48 // `Main program' equivalent, creating windows and returning main app frame
49 bool MyApp::OnInit(void)
51 #if defined(__WXGTK__) && defined(wxUSE_UNICODE)
52 wxConvCurrent
= &wxConvLibc
;
55 m_canvasTextColour
= wxColour("BLACK");
56 m_canvasFont
= *wxNORMAL_FONT
;
58 // Create the main frame window
59 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, (char *) "wxWindows dialogs example", wxPoint(20, 20), wxSize(400, 300));
62 wxMenu
*file_menu
= new wxMenu
;
64 file_menu
->Append(DIALOGS_CHOOSE_COLOUR
, "&Choose colour");
66 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
67 file_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, "Choose colour (&generic)");
70 file_menu
->AppendSeparator();
71 file_menu
->Append(DIALOGS_CHOOSE_FONT
, "Choose &font");
73 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
74 file_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, "Choose f&ont (generic)");
77 file_menu
->AppendSeparator();
78 file_menu
->Append(DIALOGS_LOG_DIALOG
, "&Log dialog\tCtrl-L");
79 file_menu
->Append(DIALOGS_MESSAGE_BOX
, "&Message box\tCtrl-M");
80 file_menu
->Append(DIALOGS_TEXT_ENTRY
, "Text &entry\tCtrl-E");
81 file_menu
->Append(DIALOGS_PASSWORD_ENTRY
, "&Password entry\tCtrl-P");
82 file_menu
->Append(DIALOGS_NUM_ENTRY
, "&Numeric entry\tCtrl-N");
83 file_menu
->Append(DIALOGS_SINGLE_CHOICE
, "&Single choice\tCtrl-S");
84 file_menu
->AppendSeparator();
85 file_menu
->Append(DIALOGS_TIP
, "&Tip of the day\tCtrl-T");
86 file_menu
->AppendSeparator();
87 file_menu
->Append(DIALOGS_FILE_OPEN
, "&Open file\tCtrl-O");
88 file_menu
->Append(DIALOGS_FILES_OPEN
, "Open &files\tCtrl-Q");
89 file_menu
->Append(DIALOGS_FILE_SAVE
, "Sa&ve file");
90 file_menu
->Append(DIALOGS_DIR_CHOOSE
, "&Choose a directory\tCtrl-D");
91 file_menu
->AppendSeparator();
92 file_menu
->Append(wxID_EXIT
, "E&xit\tAlt-X");
93 wxMenuBar
*menu_bar
= new wxMenuBar
;
94 menu_bar
->Append(file_menu
, "&File");
95 frame
->SetMenuBar(menu_bar
);
97 myCanvas
= new MyCanvas(frame
);
98 myCanvas
->SetBackgroundColour(*wxWHITE
);
100 frame
->Centre(wxBOTH
);
110 // My frame constructor
111 MyFrame::MyFrame(wxWindow
*parent
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
112 wxFrame(parent
, -1, title
, pos
, size
)
115 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
118 data
.SetChooseFull(TRUE
);
119 for (int i
= 0; i
< 16; i
++)
121 wxColour
colour(i
*16, i
*16, i
*16);
122 data
.SetCustomColour(i
, colour
);
125 wxColourDialog
*dialog
= new wxColourDialog(this, &data
);
126 if (dialog
->ShowModal() == wxID_OK
)
128 wxColourData retData
= dialog
->GetColourData();
129 wxColour col
= retData
.GetColour();
130 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
131 myCanvas
->SetBackgroundColour(col
);
138 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
141 data
.SetInitialFont(wxGetApp().m_canvasFont
);
142 data
.SetColour(wxGetApp().m_canvasTextColour
);
144 wxFontDialog
*dialog
= new wxFontDialog(this, &data
);
145 if (dialog
->ShowModal() == wxID_OK
)
147 wxFontData retData
= dialog
->GetFontData();
148 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
149 wxGetApp().m_canvasTextColour
= retData
.GetColour();
155 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
156 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
159 data
.SetChooseFull(TRUE
);
160 for (int i
= 0; i
< 16; i
++)
162 wxColour
colour(i
*16, i
*16, i
*16);
163 data
.SetCustomColour(i
, colour
);
166 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &data
);
167 if (dialog
->ShowModal() == wxID_OK
)
169 wxColourData retData
= dialog
->GetColourData();
170 wxColour col
= retData
.GetColour();
171 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
172 myCanvas
->SetBackgroundColour(col
);
179 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
182 data
.SetInitialFont(wxGetApp().m_canvasFont
);
183 data
.SetColour(wxGetApp().m_canvasTextColour
);
185 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, &data
);
186 if (dialog
->ShowModal() == wxID_OK
)
188 wxFontData retData
= dialog
->GetFontData();
189 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
190 wxGetApp().m_canvasTextColour
= retData
.GetColour();
195 #endif // wxTEST_GENERIC_DIALOGS_IN_MSW
197 void MyFrame::LogDialog(wxCommandEvent
& event
)
199 wxLogMessage("This is some message - everything is ok so far.");
200 wxLogMessage("Another message...");
201 wxLogWarning("And then something went wrong!");
202 wxLogError("Intermediary error handler decided to abort.");
203 wxLogError("The top level caller detected an error.");
206 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
208 wxMessageDialog
dialog( this, "This is a message box\nA long, long string to test out the message box properly",
209 "Message box text", wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
214 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
) )
216 long res
= wxGetNumberFromUser( "This is some text, actually a lot of text.\n"
217 "Even two rows of text.",
218 "Enter a number:", "Numeric input test",
225 msg
= "Invalid number entered or dialog cancelled.";
230 msg
.Printf(_T("You've entered %lu"), res
);
231 icon
= wxICON_INFORMATION
;
234 wxMessageBox(msg
, "Numeric test result", wxOK
| icon
, this);
237 void MyFrame::PasswordEntry(wxCommandEvent
& WXUNUSED(event
))
239 wxString pwd
= wxGetPasswordFromUser("Enter password:",
240 "Passowrd entry dialog",
245 wxMessageBox(wxString::Format("Your password is '%s'", pwd
.c_str()),
246 "Got password", wxOK
| wxICON_INFORMATION
, this);
250 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
))
252 wxTextEntryDialog
dialog(this,
253 "This is a small sample\n"
254 "A long, long string to test out the text entrybox",
255 "Please enter a string",
259 if (dialog
.ShowModal() == wxID_OK
)
261 wxMessageDialog
dialog2(this, dialog
.GetValue(), "Got string");
266 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
268 const wxString choices
[] = { "One", "Two", "Three", "Four", "Five" } ;
271 wxSingleChoiceDialog
dialog(this, "This is a small sample\nA single-choice convenience dialog",
272 "Please select a value", n
, (const wxString
*)choices
);
274 dialog
.SetSelection(2);
276 if (dialog
.ShowModal() == wxID_OK
)
278 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), "Got string");
283 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
285 wxFileDialog
dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
287 if (dialog
.ShowModal() == wxID_OK
)
290 info
.Printf(_T("Full file name: %s\n")
293 dialog
.GetPath().c_str(),
294 dialog
.GetDirectory().c_str(),
295 dialog
.GetFilename().c_str());
296 wxMessageDialog
dialog2(this, info
, "Selected file");
301 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
303 wxFileDialog
dialog(this, "Testing open multiple file dialog",
304 "", "", wxFileSelectorDefaultWildcardStr
,
307 if (dialog
.ShowModal() == wxID_OK
)
309 wxArrayString paths
, filenames
;
311 dialog
.GetPaths(paths
);
312 dialog
.GetFilenames(filenames
);
315 size_t count
= paths
.GetCount();
316 for ( size_t n
= 0; n
< count
; n
++ )
318 s
.Printf(_T("File %d: %s (%s)\n"),
319 n
, paths
[n
].c_str(), filenames
[n
].c_str());
324 wxMessageDialog
dialog2(this, msg
, "Selected files");
329 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
331 wxFileDialog
dialog(this, "Testing save file dialog", "", "myletter.txt",
332 "Text files (*.txt)|*.txt|Document files (*.doc)|*.doc",
333 wxSAVE
|wxOVERWRITE_PROMPT
);
335 if (dialog
.ShowModal() == wxID_OK
)
338 wxSprintf(buf
, _T("%s, filter %d"), (const wxChar
*)dialog
.GetPath(), dialog
.GetFilterIndex());
339 wxMessageDialog
dialog2(this, wxString(buf
), "Selected path");
344 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
346 // pass some initial dir to wxDirDialog
348 wxGetHomeDir(&dirHome
);
350 wxDirDialog
dialog(this, "Testing directory picker", dirHome
);
352 if (dialog
.ShowModal() == wxID_OK
)
354 wxMessageDialog
dialog2(this, dialog
.GetPath(), "Selected path");
359 void MyFrame::ShowTip(wxCommandEvent
& event
)
361 #if wxUSE_STARTUP_TIPS
362 static size_t s_index
= (size_t)-1;
364 if ( s_index
== (size_t)-1 )
368 // this is completely bogus, we don't know how many lines are there
369 // in the file, but who cares, it's a demo only...
370 s_index
= rand() % 5;
373 wxTipProvider
*tipProvider
= wxCreateFileTipProvider("tips.txt", s_index
);
375 bool showAtStartup
= wxShowTip(this, tipProvider
);
379 wxMessageBox("Will show tips on startup", "Tips dialog",
380 wxOK
| wxICON_INFORMATION
, this);
383 s_index
= tipProvider
->GetCurrentTip();
388 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
393 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
396 dc
.SetFont(wxGetApp().m_canvasFont
);
397 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
398 dc
.SetBackgroundMode(wxTRANSPARENT
);
399 dc
.DrawText("wxWindows common dialogs test application", 10, 10);
402 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
403 EVT_PAINT(MyCanvas::OnPaint
)
406 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
407 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
408 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
409 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
410 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
411 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
412 EVT_MENU(DIALOGS_PASSWORD_ENTRY
, MyFrame::PasswordEntry
)
413 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
414 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
415 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
416 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
417 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
418 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
419 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
420 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
421 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
422 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
424 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)