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"
34 #include "wx/extdlg.h"
36 #define wxTEST_GENERIC_DIALOGS_IN_MSW 0
38 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
39 #include <wx/generic/colrdlgg.h>
40 #include <wx/generic/fontdlgg.h>
47 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
49 // `Main program' equivalent, creating windows and returning main app frame
50 bool MyApp::OnInit(void)
52 #if defined(__WXGTK__) && defined(wxUSE_UNICODE)
53 wxConvCurrent
= &wxConvLibc
;
56 m_canvasTextColour
= wxColour("BLACK");
57 m_canvasFont
= *wxNORMAL_FONT
;
59 // Create the main frame window
60 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, (char *) "wxWindows dialogs example", wxPoint(50, 50), wxSize(400, 300));
63 wxMenu
*file_menu
= new wxMenu
;
65 file_menu
->Append(DIALOGS_CHOOSE_COLOUR
, "&Choose colour");
67 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
68 file_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, "Choose colour (&generic)");
71 file_menu
->AppendSeparator();
72 file_menu
->Append(DIALOGS_CHOOSE_FONT
, "Choose &font");
74 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
75 file_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, "Choose f&ont (generic)");
78 file_menu
->AppendSeparator();
79 file_menu
->Append(DIALOGS_MESSAGE_BOX
, "&Message box");
80 file_menu
->Append(DIALOGS_TEXT_ENTRY
, "Text &entry");
81 file_menu
->Append(DIALOGS_SINGLE_CHOICE
, "&Single choice");
82 file_menu
->Append(DIALOGS_EXT_DIALOG
, "&Extended dialog");
83 file_menu
->AppendSeparator();
84 file_menu
->Append(DIALOGS_TIP
, "&Tip of the day");
85 file_menu
->AppendSeparator();
86 file_menu
->Append(DIALOGS_FILE_OPEN
, "&Open file");
87 file_menu
->Append(DIALOGS_FILE_SAVE
, "Sa&ve file");
88 file_menu
->Append(DIALOGS_DIR_CHOOSE
, "&Choose a directory");
89 file_menu
->AppendSeparator();
90 file_menu
->Append(wxID_EXIT
, "E&xit");
91 wxMenuBar
*menu_bar
= new wxMenuBar
;
92 menu_bar
->Append(file_menu
, "&File");
93 frame
->SetMenuBar(menu_bar
);
95 myCanvas
= new MyCanvas(frame
);
96 myCanvas
->SetBackgroundColour(*wxWHITE
);
98 frame
->Centre(wxBOTH
);
108 // My frame constructor
109 MyFrame::MyFrame(wxWindow
*parent
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
110 wxFrame(parent
, -1, title
, pos
, size
)
113 void MyFrame::ExtDialog(wxCommandEvent
& WXUNUSED(event
) )
115 // The standard flags causes this dialog to display a
116 // wxStaticLine under wxMotif and wxGTK, but none under
117 // other platforms. Also, it will not be resizable
120 wxExtDialog
dialog( this, -1, "Test 1 for wxExtDialog", wxOK
|wxFORWARD
|wxBACKWARD
);
121 dialog
.AddButton( new wxButton( &dialog
, -1, "Custom") );
123 dialog
.SetClientWindow( new wxTextCtrl( &dialog
, -1, "Test", wxDefaultPosition
, wxDefaultSize
, wxTE_MULTILINE
) );
125 // query minimal recommended size from the buttons
126 dialog
.SetSize( dialog
.GetButtonAreaSize().x
, 170 );
128 dialog
.Centre( wxBOTH
);
131 // This dialog uses the standard dialog styles but is also
132 // resizable on all platforms and shows a wxStaticLine on
135 wxExtDialog
dialog2( this, -1, "Test 2 for wxExtDialog",
136 wxOK
|wxFORWARD
|wxBACKWARD
|wxCANCEL
,
137 wxDefaultPosition
, wxSize(400,170),
138 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
| wxED_BUTTONS_RIGHT
| wxED_STATIC_LINE
| wxED_CLIENT_MARGIN
);
140 dialog2
.SetClientWindow( new wxTextCtrl( &dialog2
, -1, "Test", wxDefaultPosition
, wxDefaultSize
, wxTE_MULTILINE
) );
142 // query minimal recommended size from the buttons
143 wxSize
min_size( dialog2
.GetButtonAreaSize() );
144 dialog2
.SetSizeHints( min_size
.x
+ 200, min_size
.y
);
146 dialog2
.Centre( wxBOTH
);
150 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
153 data
.SetChooseFull(TRUE
);
154 for (int i
= 0; i
< 16; i
++)
156 wxColour
colour(i
*16, i
*16, i
*16);
157 data
.SetCustomColour(i
, colour
);
160 wxColourDialog
*dialog
= new wxColourDialog(this, &data
);
161 if (dialog
->ShowModal() == wxID_OK
)
163 wxColourData retData
= dialog
->GetColourData();
164 wxColour col
= retData
.GetColour();
165 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
166 myCanvas
->SetBackgroundColour(col
);
173 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
176 data
.SetInitialFont(wxGetApp().m_canvasFont
);
177 data
.SetColour(wxGetApp().m_canvasTextColour
);
179 wxFontDialog
*dialog
= new wxFontDialog(this, &data
);
180 if (dialog
->ShowModal() == wxID_OK
)
182 wxFontData retData
= dialog
->GetFontData();
183 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
184 wxGetApp().m_canvasTextColour
= retData
.GetColour();
190 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
191 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
194 data
.SetChooseFull(TRUE
);
195 for (int i
= 0; i
< 16; i
++)
197 wxColour
colour(i
*16, i
*16, i
*16);
198 data
.SetCustomColour(i
, colour
);
201 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &data
);
202 if (dialog
->ShowModal() == wxID_OK
)
204 wxColourData retData
= dialog
->GetColourData();
205 wxColour col
= retData
.GetColour();
206 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
207 myCanvas
->SetBackgroundColour(col
);
214 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
217 data
.SetInitialFont(wxGetApp().m_canvasFont
);
218 data
.SetColour(wxGetApp().m_canvasTextColour
);
220 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, &data
);
221 if (dialog
->ShowModal() == wxID_OK
)
223 wxFontData retData
= dialog
->GetFontData();
224 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
225 wxGetApp().m_canvasTextColour
= retData
.GetColour();
232 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
234 wxMessageDialog
dialog(NULL
, "This is a message box\nA long, long string to test out the message box properly",
235 "Message box text", wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
240 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
) )
242 wxTextEntryDialog
dialog(this, "This is a small sample\nA long, long string to test out the text entrybox",
243 "Please enter a string", "Default value", wxOK
|wxCANCEL
);
245 if (dialog
.ShowModal() == wxID_OK
)
247 wxMessageDialog
dialog2(this, dialog
.GetValue(), "Got string");
252 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
254 const wxString choices
[] = { "One", "Two", "Three", "Four", "Five" } ;
257 wxSingleChoiceDialog
dialog(this, "This is a small sample\nA single-choice convenience dialog",
258 "Please select a value", n
, (const wxString
*)choices
);
260 dialog
.SetSelection(2);
262 if (dialog
.ShowModal() == wxID_OK
)
264 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), "Got string");
269 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
271 wxFileDialog
dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
273 if (dialog
.ShowModal() == wxID_OK
)
276 info
.Printf(_T("Full file name: %s\n")
279 dialog
.GetPath().c_str(),
280 dialog
.GetDirectory().c_str(),
281 dialog
.GetFilename().c_str());
282 wxMessageDialog
dialog2(this, info
, "Selected file");
287 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
289 wxFileDialog
dialog(this, "Testing save file dialog", "", "",
290 "Text files (*.txt)|*.txt|Document files (*.doc)|*.doc",
291 wxSAVE
|wxOVERWRITE_PROMPT
);
293 if (dialog
.ShowModal() == wxID_OK
)
296 wxSprintf(buf
, _T("%s, filter %d"), (const wxChar
*)dialog
.GetPath(), dialog
.GetFilterIndex());
297 wxMessageDialog
dialog2(this, wxString(buf
), "Selected path");
302 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
304 wxDirDialog
dialog(this, "Testing directory picker", "");
306 if (dialog
.ShowModal() == wxID_OK
)
308 wxMessageDialog
dialog2(this, dialog
.GetPath(), "Selected path");
313 void MyFrame::ShowTip(wxCommandEvent
& event
)
315 #if wxUSE_STARTUP_TIPS
316 static size_t s_index
= (size_t)-1;
318 if ( s_index
== (size_t)-1 )
322 // this is completely bogus, we don't know how many lines are there
323 // in the file, but who cares, it's a demo only...
324 s_index
= rand() % 5;
327 wxTipProvider
*tipProvider
= wxCreateFileTipProvider("tips.txt", s_index
);
329 bool showAtStartup
= wxShowTip(this, tipProvider
);
333 wxMessageBox("Will show tips on startup", "Tips dialog",
334 wxOK
| wxICON_INFORMATION
, this);
337 s_index
= tipProvider
->GetCurrentTip();
342 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
347 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
350 dc
.SetFont(wxGetApp().m_canvasFont
);
351 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
352 dc
.SetBackgroundMode(wxTRANSPARENT
);
353 dc
.DrawText("wxWindows common dialogs test application", 10, 10);
356 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
357 EVT_PAINT(MyCanvas::OnPaint
)
360 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
361 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
362 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
363 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
364 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
365 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
366 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
367 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
368 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
369 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
370 EVT_MENU(DIALOGS_EXT_DIALOG
, MyFrame::ExtDialog
)
371 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
372 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
373 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
375 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)