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_NUM_ENTRY
, "&Numeric entry\tCtrl-N");
82 file_menu
->Append(DIALOGS_SINGLE_CHOICE
, "&Single choice\tCtrl-S");
83 file_menu
->AppendSeparator();
84 file_menu
->Append(DIALOGS_TIP
, "&Tip of the day\tCtrl-T");
85 file_menu
->AppendSeparator();
86 file_menu
->Append(DIALOGS_FILE_OPEN
, "&Open file\tCtrl-O");
87 file_menu
->Append(DIALOGS_FILES_OPEN
, "&Open files\tCtrl-Q");
88 file_menu
->Append(DIALOGS_FILE_SAVE
, "Sa&ve file");
89 file_menu
->Append(DIALOGS_DIR_CHOOSE
, "&Choose a directory\tCtrl-D");
90 file_menu
->AppendSeparator();
91 file_menu
->Append(wxID_EXIT
, "E&xit\tAlt-X");
92 wxMenuBar
*menu_bar
= new wxMenuBar
;
93 menu_bar
->Append(file_menu
, "&File");
94 frame
->SetMenuBar(menu_bar
);
96 myCanvas
= new MyCanvas(frame
);
97 myCanvas
->SetBackgroundColour(*wxWHITE
);
99 frame
->Centre(wxBOTH
);
109 // My frame constructor
110 MyFrame::MyFrame(wxWindow
*parent
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
111 wxFrame(parent
, -1, title
, pos
, size
)
114 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
117 data
.SetChooseFull(TRUE
);
118 for (int i
= 0; i
< 16; i
++)
120 wxColour
colour(i
*16, i
*16, i
*16);
121 data
.SetCustomColour(i
, colour
);
124 wxColourDialog
*dialog
= new wxColourDialog(this, &data
);
125 if (dialog
->ShowModal() == wxID_OK
)
127 wxColourData retData
= dialog
->GetColourData();
128 wxColour col
= retData
.GetColour();
129 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
130 myCanvas
->SetBackgroundColour(col
);
137 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
140 data
.SetInitialFont(wxGetApp().m_canvasFont
);
141 data
.SetColour(wxGetApp().m_canvasTextColour
);
143 wxFontDialog
*dialog
= new wxFontDialog(this, &data
);
144 if (dialog
->ShowModal() == wxID_OK
)
146 wxFontData retData
= dialog
->GetFontData();
147 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
148 wxGetApp().m_canvasTextColour
= retData
.GetColour();
154 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
155 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
158 data
.SetChooseFull(TRUE
);
159 for (int i
= 0; i
< 16; i
++)
161 wxColour
colour(i
*16, i
*16, i
*16);
162 data
.SetCustomColour(i
, colour
);
165 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &data
);
166 if (dialog
->ShowModal() == wxID_OK
)
168 wxColourData retData
= dialog
->GetColourData();
169 wxColour col
= retData
.GetColour();
170 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
171 myCanvas
->SetBackgroundColour(col
);
178 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
181 data
.SetInitialFont(wxGetApp().m_canvasFont
);
182 data
.SetColour(wxGetApp().m_canvasTextColour
);
184 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, &data
);
185 if (dialog
->ShowModal() == wxID_OK
)
187 wxFontData retData
= dialog
->GetFontData();
188 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
189 wxGetApp().m_canvasTextColour
= retData
.GetColour();
194 #endif // wxTEST_GENERIC_DIALOGS_IN_MSW
196 void MyFrame::LogDialog(wxCommandEvent
& event
)
198 wxLogMessage("This is some message - everything is ok so far.");
199 wxLogMessage("Another message...");
200 wxLogWarning("And then something went wrong!");
201 wxLogError("Intermediary error handler decided to abort.");
202 wxLogError("The top level caller detected an error.");
205 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
207 wxMessageDialog
dialog( this, "This is a message box\nA long, long string to test out the message box properly",
208 "Message box text", wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
213 void MyFrame::NumericEntry(wxCommandEvent
& WXUNUSED(event
) )
215 long res
= wxGetNumberFromUser( "This is some text, actually a lot of text.\n"
216 "Even two rows of text.",
217 "Enter a number:", "Numeric input test",
224 msg
= "Invalid number entered or dialog cancelled.";
229 msg
.Printf(_T("You've entered %lu"), res
);
230 icon
= wxICON_INFORMATION
;
233 wxMessageBox(msg
, "Numeric test result", wxOK
| icon
, this);
236 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
) )
238 wxTextEntryDialog
dialog(this, "This is a small sample\nA long, long string to test out the text entrybox",
239 "Please enter a string", "Default value", wxOK
|wxCANCEL
);
241 if (dialog
.ShowModal() == wxID_OK
)
243 wxMessageDialog
dialog2(this, dialog
.GetValue(), "Got string");
248 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
250 const wxString choices
[] = { "One", "Two", "Three", "Four", "Five" } ;
253 wxSingleChoiceDialog
dialog(this, "This is a small sample\nA single-choice convenience dialog",
254 "Please select a value", n
, (const wxString
*)choices
);
256 dialog
.SetSelection(2);
258 if (dialog
.ShowModal() == wxID_OK
)
260 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), "Got string");
265 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
267 wxFileDialog
dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
269 if (dialog
.ShowModal() == wxID_OK
)
272 info
.Printf(_T("Full file name: %s\n")
275 dialog
.GetPath().c_str(),
276 dialog
.GetDirectory().c_str(),
277 dialog
.GetFilename().c_str());
278 wxMessageDialog
dialog2(this, info
, "Selected file");
283 void MyFrame::FilesOpen(wxCommandEvent
& WXUNUSED(event
) )
285 wxFileDialog
dialog(this, "Testing open multiple file dialog",
286 "", "", wxFileSelectorDefaultWildcardStr
,
289 if (dialog
.ShowModal() == wxID_OK
)
291 wxArrayString paths
, filenames
;
293 dialog
.GetPaths(paths
);
294 dialog
.GetFilenames(filenames
);
297 size_t count
= paths
.GetCount();
298 for ( size_t n
= 0; n
< count
; n
++ )
300 s
.Printf(_T("File %d: %s (%s)\n"),
301 n
, paths
[n
].c_str(), filenames
[n
].c_str());
306 wxMessageDialog
dialog2(this, msg
, "Selected files");
311 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
313 wxFileDialog
dialog(this, "Testing save file dialog", "", "myletter.txt",
314 "Text files (*.txt)|*.txt|Document files (*.doc)|*.doc",
315 wxSAVE
|wxOVERWRITE_PROMPT
);
317 if (dialog
.ShowModal() == wxID_OK
)
320 wxSprintf(buf
, _T("%s, filter %d"), (const wxChar
*)dialog
.GetPath(), dialog
.GetFilterIndex());
321 wxMessageDialog
dialog2(this, wxString(buf
), "Selected path");
326 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
328 // pass some initial dir to wxDirDialog
330 wxGetHomeDir(&dirHome
);
332 wxDirDialog
dialog(this, "Testing directory picker", dirHome
);
334 if (dialog
.ShowModal() == wxID_OK
)
336 wxMessageDialog
dialog2(this, dialog
.GetPath(), "Selected path");
341 void MyFrame::ShowTip(wxCommandEvent
& event
)
343 #if wxUSE_STARTUP_TIPS
344 static size_t s_index
= (size_t)-1;
346 if ( s_index
== (size_t)-1 )
350 // this is completely bogus, we don't know how many lines are there
351 // in the file, but who cares, it's a demo only...
352 s_index
= rand() % 5;
355 wxTipProvider
*tipProvider
= wxCreateFileTipProvider("tips.txt", s_index
);
357 bool showAtStartup
= wxShowTip(this, tipProvider
);
361 wxMessageBox("Will show tips on startup", "Tips dialog",
362 wxOK
| wxICON_INFORMATION
, this);
365 s_index
= tipProvider
->GetCurrentTip();
370 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
375 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
378 dc
.SetFont(wxGetApp().m_canvasFont
);
379 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
380 dc
.SetBackgroundMode(wxTRANSPARENT
);
381 dc
.DrawText("wxWindows common dialogs test application", 10, 10);
384 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
385 EVT_PAINT(MyCanvas::OnPaint
)
388 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
389 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
390 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
391 EVT_MENU(DIALOGS_LOG_DIALOG
, MyFrame::LogDialog
)
392 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
393 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
394 EVT_MENU(DIALOGS_NUM_ENTRY
, MyFrame::NumericEntry
)
395 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
396 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
397 EVT_MENU(DIALOGS_FILES_OPEN
, MyFrame::FilesOpen
)
398 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
399 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
400 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
401 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
402 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
403 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
405 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)