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>
34 #define wxTEST_GENERIC_DIALOGS_IN_MSW 0
36 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
37 #include <wx/generic/colrdlgg.h>
38 #include <wx/generic/fontdlgg.h>
45 MyCanvas
*myCanvas
= (MyCanvas
*) NULL
;
47 // `Main program' equivalent, creating windows and returning main app frame
48 bool MyApp::OnInit(void)
50 #if defined(__WXGTK__) && defined(wxUSE_UNICODE)
51 wxConvCurrent
= &wxConvLibc
;
54 m_canvasTextColour
= wxColour("BLACK");
55 m_canvasFont
= *wxNORMAL_FONT
;
57 // Create the main frame window
58 MyFrame
*frame
= new MyFrame((wxFrame
*) NULL
, (char *) "wxWindows dialogs example", wxPoint(50, 50), wxSize(400, 300));
61 wxMenu
*file_menu
= new wxMenu
;
63 file_menu
->Append(DIALOGS_CHOOSE_COLOUR
, "&Choose colour");
65 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
66 file_menu
->Append(DIALOGS_CHOOSE_COLOUR_GENERIC
, "Choose colour (&generic)");
69 file_menu
->AppendSeparator();
70 file_menu
->Append(DIALOGS_CHOOSE_FONT
, "Choose &font");
72 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
73 file_menu
->Append(DIALOGS_CHOOSE_FONT_GENERIC
, "Choose f&ont (generic)");
76 file_menu
->AppendSeparator();
77 file_menu
->Append(DIALOGS_MESSAGE_BOX
, "&Message box");
78 file_menu
->Append(DIALOGS_TEXT_ENTRY
, "Text &entry");
79 file_menu
->Append(DIALOGS_SINGLE_CHOICE
, "&Single choice");
80 file_menu
->AppendSeparator();
81 file_menu
->Append(DIALOGS_FILE_OPEN
, "&Open file");
82 file_menu
->Append(DIALOGS_FILE_SAVE
, "Sa&ve file");
83 file_menu
->Append(DIALOGS_DIR_CHOOSE
, "&Choose a directory");
84 file_menu
->AppendSeparator();
85 file_menu
->Append(wxID_EXIT
, "E&xit");
86 wxMenuBar
*menu_bar
= new wxMenuBar
;
87 menu_bar
->Append(file_menu
, "&File");
88 frame
->SetMenuBar(menu_bar
);
90 myCanvas
= new MyCanvas(frame
);
91 myCanvas
->SetBackgroundColour(*wxWHITE
);
93 frame
->Centre(wxBOTH
);
103 // My frame constructor
104 MyFrame::MyFrame(wxWindow
*parent
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
105 wxFrame(parent
, -1, title
, pos
, size
)
108 void MyFrame::ChooseColour(wxCommandEvent
& WXUNUSED(event
) )
111 data
.SetChooseFull(TRUE
);
112 for (int i
= 0; i
< 16; i
++)
114 wxColour
colour(i
*16, i
*16, i
*16);
115 data
.SetCustomColour(i
, colour
);
118 wxColourDialog
*dialog
= new wxColourDialog(this, &data
);
119 if (dialog
->ShowModal() == wxID_OK
)
121 wxColourData retData
= dialog
->GetColourData();
122 wxColour col
= retData
.GetColour();
123 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
124 myCanvas
->SetBackgroundColour(col
);
131 void MyFrame::ChooseFont(wxCommandEvent
& WXUNUSED(event
) )
134 data
.SetInitialFont(wxGetApp().m_canvasFont
);
135 data
.SetColour(wxGetApp().m_canvasTextColour
);
137 wxFontDialog
*dialog
= new wxFontDialog(this, &data
);
138 if (dialog
->ShowModal() == wxID_OK
)
140 wxFontData retData
= dialog
->GetFontData();
141 wxGetApp().m_canvasFont
= retData
.GetChosenFont();
142 wxGetApp().m_canvasTextColour
= retData
.GetColour();
148 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
149 void MyFrame::ChooseColourGeneric(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 wxGenericColourDialog
*dialog
= new wxGenericColourDialog(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::ChooseFontGeneric(wxCommandEvent
& WXUNUSED(event
) )
175 data
.SetInitialFont(wxGetApp().m_canvasFont
);
176 data
.SetColour(wxGetApp().m_canvasTextColour
);
178 wxGenericFontDialog
*dialog
= new wxGenericFontDialog(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();
190 void MyFrame::MessageBox(wxCommandEvent
& WXUNUSED(event
) )
192 wxMessageDialog
dialog(NULL
, "This is a message box\nA long, long string to test out the message box properly",
193 "Message box text", wxYES_NO
|wxCANCEL
);
197 ::wxMessageBox("MsgBox with a really long long string",
198 "this is the text", wxYES_NO
|wxICON_EXCLAMATION
);
201 void MyFrame::TextEntry(wxCommandEvent
& WXUNUSED(event
) )
203 wxTextEntryDialog
dialog(this, "This is a small sample\nA long, long string to test out the text entrybox",
204 "Please enter a string", "Default value", wxOK
|wxCANCEL
);
206 if (dialog
.ShowModal() == wxID_OK
)
208 wxMessageDialog
dialog2(this, dialog
.GetValue(), "Got string");
213 void MyFrame::SingleChoice(wxCommandEvent
& WXUNUSED(event
) )
215 const wxString choices
[] = { "One", "Two", "Three", "Four", "Five" } ;
218 wxSingleChoiceDialog
dialog(this, "This is a small sample\nA single-choice convenience dialog",
219 "Please select a value", n
, (const wxString
*)choices
);
221 dialog
.SetSelection(2);
223 if (dialog
.ShowModal() == wxID_OK
)
225 wxMessageDialog
dialog2(this, dialog
.GetStringSelection(), "Got string");
230 void MyFrame::FileOpen(wxCommandEvent
& WXUNUSED(event
) )
232 wxFileDialog
dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
234 if (dialog
.ShowModal() == wxID_OK
)
237 info
.Printf(_T("Full file name: %s\n")
240 dialog
.GetPath().c_str(),
241 dialog
.GetDirectory().c_str(),
242 dialog
.GetFilename().c_str());
243 wxMessageDialog
dialog2(this, info
, "Selected file");
248 void MyFrame::FileSave(wxCommandEvent
& WXUNUSED(event
) )
250 wxFileDialog
dialog(this, "Testing save file dialog", "", "",
251 "Text files (*.txt)|*.txt|Document files (*.doc)|*.doc",
252 wxSAVE
|wxOVERWRITE_PROMPT
);
254 if (dialog
.ShowModal() == wxID_OK
)
257 wxSprintf(buf
, _T("%s, filter %d"), (const wxChar
*)dialog
.GetPath(), dialog
.GetFilterIndex());
258 wxMessageDialog
dialog2(this, wxString(buf
), "Selected path");
263 void MyFrame::DirChoose(wxCommandEvent
& WXUNUSED(event
) )
265 wxDirDialog
dialog(this, "Testing directory picker", "");
267 if (dialog
.ShowModal() == wxID_OK
)
269 wxMessageDialog
dialog2(this, dialog
.GetPath(), "Selected path");
274 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
) )
279 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
) )
282 dc
.SetFont(wxGetApp().m_canvasFont
);
283 dc
.SetTextForeground(wxGetApp().m_canvasTextColour
);
284 dc
.SetBackgroundMode(wxTRANSPARENT
);
285 dc
.DrawText("wxWindows common dialogs test application", 10, 10);
288 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
289 EVT_PAINT(MyCanvas::OnPaint
)
292 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
293 EVT_MENU(DIALOGS_CHOOSE_COLOUR
, MyFrame::ChooseColour
)
294 EVT_MENU(DIALOGS_CHOOSE_FONT
, MyFrame::ChooseFont
)
295 EVT_MENU(DIALOGS_MESSAGE_BOX
, MyFrame::MessageBox
)
296 EVT_MENU(DIALOGS_TEXT_ENTRY
, MyFrame::TextEntry
)
297 EVT_MENU(DIALOGS_SINGLE_CHOICE
, MyFrame::SingleChoice
)
298 EVT_MENU(DIALOGS_FILE_OPEN
, MyFrame::FileOpen
)
299 EVT_MENU(DIALOGS_FILE_SAVE
, MyFrame::FileSave
)
300 EVT_MENU(DIALOGS_DIR_CHOOSE
, MyFrame::DirChoose
)
301 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
302 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC
, MyFrame::ChooseColourGeneric
)
303 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC
, MyFrame::ChooseFontGeneric
)
305 EVT_MENU(wxID_EXIT
, MyFrame::OnExit
)