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",
121 wxOK
|wxFORWARD
|wxBACKWARD
);
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
, wxDefaultPosition
, wxSize(400,170),
137 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
| wxED_BUTTONS_RIGHT
| wxED_STATIC_LINE
| wxED_CLIENT_MARGIN
);
139 dialog2
.SetClientWindow( new wxTextCtrl( &dialog2
, -1, "Test", wxDefaultPosition
, wxDefaultSize
, wxTE_MULTILINE
) );
141 // query minimal recommended size from the buttons
142 wxSize
min_size( dialog2
.GetButtonAreaSize() );
143 dialog2
.SetSizeHints( min_size
.x
+ 200, min_size
.y
);
145 dialog2
.Centre( wxBOTH
);
149 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
152 data
.SetChooseFull(TRUE
);
153 for (int i
= 0; i
< 16; i
++)
155 wxColour
colour(i
*16, i
*16, i
*16);
156 data
.SetCustomColour(i
, colour
);
159 wxColourDialog
*dialog
= new wxColourDialog(this, &data
);
160 if (dialog
->ShowModal() == wxID_OK
)
162 wxColourData retData
= dialog
->GetColourData();
163 wxColour col
= retData
.GetColour();
164 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
165 myCanvas
->SetBackgroundColour(col
);
172 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
175 data
.SetInitialFont(wxGetApp().m_canvasFont
);
176 data
.SetColour(wxGetApp().m_canvasTextColour
);
178 wxFontDialog
*dialog
= new wxFontDialog(this, &data
);
179 if (dialog
->ShowModal() == wxID_OK
)
181 wxFontData retData
= dialog
->GetFontData();
182 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
183 wxGetApp().m_canvasTextColour
= retData
.GetColour();
189 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
190 void MyFrame::ChooseColourGeneric(wxCommandEvent
& WXUNUSED(event
))
193 data
.SetChooseFull(TRUE
);
194 for (int i
= 0; i
< 16; i
++)
196 wxColour
colour(i
*16, i
*16, i
*16);
197 data
.SetCustomColour(i
, colour
);
200 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(this, &data
);
201 if (dialog
->ShowModal() == wxID_OK
)
203 wxColourData retData
= dialog
->GetColourData();
204 wxColour col
= retData
.GetColour();
205 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
206 myCanvas
->SetBackgroundColour(col
);
213 void MyFrame::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
216 data
.SetInitialFont(wxGetApp().m_canvasFont
);
217 data
.SetColour(wxGetApp().m_canvasTextColour
);
219 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(this, &data
);
220 if (dialog
->ShowModal() == wxID_OK
)
222 wxFontData retData
= dialog
->GetFontData();
223 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
224 wxGetApp().m_canvasTextColour
= retData
.GetColour();
231 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
233 wxMessageDialog
dialog(NULL
, "This is a message box\nA long, long string to test out the message box properly",
234 "Message box text", wxYES_NO
|wxCANCEL
|wxICON_INFORMATION
);
239 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
) )
241 wxTextEntryDialog
dialog(this, "This is a small sample\nA long, long string to test out the text entrybox",
242 "Please enter a string", "Default value", wxOK
|wxCANCEL
);
244 if (dialog
.ShowModal() == wxID_OK
)
246 wxMessageDialog
dialog2(this, dialog
.GetValue(), "Got string");
251 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
253 const wxString choices
[] = { "One", "Two", "Three", "Four", "Five" } ;
256 wxSingleChoiceDialog
dialog(this, "This is a small sample\nA single-choice convenience dialog",
257 "Please select a value", n
, (const wxString
*)choices
);
259 dialog
.SetSelection(2);
261 if (dialog
.ShowModal() == wxID_OK
)
263 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), "Got string");
268 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
270 wxFileDialog
dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
272 if (dialog
.ShowModal() == wxID_OK
)
275 info
.Printf(_T("Full file name: %s\n")
278 dialog
.GetPath().c_str(),
279 dialog
.GetDirectory().c_str(),
280 dialog
.GetFilename().c_str());
281 wxMessageDialog
dialog2(this, info
, "Selected file");
286 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
288 wxFileDialog
dialog(this, "Testing save file dialog", "", "",
289 "Text files (*.txt)|*.txt|Document files (*.doc)|*.doc",
290 wxSAVE
|wxOVERWRITE_PROMPT
);
292 if (dialog
.ShowModal() == wxID_OK
)
295 wxSprintf(buf
, _T("%s, filter %d"), (const wxChar
*)dialog
.GetPath(), dialog
.GetFilterIndex());
296 wxMessageDialog
dialog2(this, wxString(buf
), "Selected path");
301 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
303 wxDirDialog
dialog(this, "Testing directory picker", "");
305 if (dialog
.ShowModal() == wxID_OK
)
307 wxMessageDialog
dialog2(this, dialog
.GetPath(), "Selected path");
312 void MyFrame::ShowTip(wxCommandEvent
& event
)
314 static size_t s_index
= (size_t)-1;
316 if ( s_index
== (size_t)-1 )
320 // this is completely bogus, we don't know how many lines are there
321 // in the file, but who cares, it's a demo only...
322 s_index
= rand() % 5;
325 wxTipProvider
*tipProvider
= wxCreateFileTipProvider("tips.txt", s_index
);
327 bool showAtStartup
= wxShowTip(this, tipProvider
);
331 wxMessageBox("Will show tips on startup", "Tips dialog",
332 wxOK
| wxICON_INFORMATION
, this);
335 s_index
= tipProvider
->GetCurrentTip();
339 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
344 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
347 dc
.SetFont(wxGetApp().m_canvasFont
);
348 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
349 dc
.SetBackgroundMode(wxTRANSPARENT
);
350 dc
.DrawText("wxWindows common dialogs test application", 10, 10);
353 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
354 EVT_PAINT(MyCanvas::OnPaint
)
357 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
358 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
359 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
360 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
361 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
362 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
363 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
364 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
365 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
366 EVT_MENU(DIALOGS_TIP
, MyFrame::ShowTip
)
367 EVT_MENU(DIALOGS_EXT_DIALOG
, MyFrame::ExtDialog
)
368 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
369 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
370 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
372 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)