]> git.saurik.com Git - wxWidgets.git/blob - samples/dialogs/dialogs.cpp
* Committing new wxSocket core (socket.cpp sckint.cpp). It has to be improved ...
[wxWidgets.git] / samples / dialogs / dialogs.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: dialogs.cpp
3 // Purpose: Common dialogs demo
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #pragma interface
15 #endif
16
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #ifndef WX_PRECOMP
25 #include "wx/wx.h"
26 #endif
27
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
34 #define wxTEST_GENERIC_DIALOGS_IN_MSW 0
35
36 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
37 #include <wx/generic/colrdlgg.h>
38 #include <wx/generic/fontdlgg.h>
39 #endif
40
41 #include "dialogs.h"
42
43 IMPLEMENT_APP(MyApp)
44
45 MyCanvas *myCanvas = (MyCanvas *) NULL;
46
47 // `Main program' equivalent, creating windows and returning main app frame
48 bool MyApp::OnInit(void)
49 {
50 m_canvasTextColour = wxColour("BLACK");
51 m_canvasFont = *wxNORMAL_FONT;
52
53 // Create the main frame window
54 MyFrame *frame = new MyFrame((wxFrame *) NULL, (char *) "wxWindows dialogs example", wxPoint(50, 50), wxSize(400, 300));
55
56 // Make a menubar
57 wxMenu *file_menu = new wxMenu;
58
59 file_menu->Append(DIALOGS_CHOOSE_COLOUR, "&Choose colour");
60
61 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
62 file_menu->Append(DIALOGS_CHOOSE_COLOUR_GENERIC, "Choose colour (&generic)");
63 #endif
64
65 file_menu->AppendSeparator();
66 file_menu->Append(DIALOGS_CHOOSE_FONT, "Choose &font");
67
68 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
69 file_menu->Append(DIALOGS_CHOOSE_FONT_GENERIC, "Choose f&ont (generic)");
70
71 #endif
72 file_menu->AppendSeparator();
73 file_menu->Append(DIALOGS_MESSAGE_BOX, "&Message box");
74 file_menu->Append(DIALOGS_TEXT_ENTRY, "Text &entry");
75 file_menu->Append(DIALOGS_SINGLE_CHOICE, "&Single choice");
76 file_menu->AppendSeparator();
77 file_menu->Append(DIALOGS_FILE_OPEN, "&Open file");
78 file_menu->Append(DIALOGS_FILE_SAVE, "Sa&ve file");
79 file_menu->Append(DIALOGS_DIR_CHOOSE, "&Choose a directory");
80 file_menu->AppendSeparator();
81 file_menu->Append(wxID_EXIT, "E&xit");
82 wxMenuBar *menu_bar = new wxMenuBar;
83 menu_bar->Append(file_menu, "&File");
84 frame->SetMenuBar(menu_bar);
85
86 myCanvas = new MyCanvas(frame);
87 myCanvas->SetBackgroundColour(*wxWHITE);
88
89 frame->Centre(wxBOTH);
90
91 // Show the frame
92 frame->Show(TRUE);
93
94 SetTopWindow(frame);
95
96 return TRUE;
97 }
98
99 // My frame constructor
100 MyFrame::MyFrame(wxWindow *parent, const wxString& title, const wxPoint& pos, const wxSize& size):
101 wxFrame(parent, -1, title, pos, size)
102 {}
103
104 void MyFrame::ChooseColour(wxCommandEvent& WXUNUSED(event) )
105 {
106 wxColourData data;
107 data.SetChooseFull(TRUE);
108 for (int i = 0; i < 16; i++)
109 {
110 wxColour colour(i*16, i*16, i*16);
111 data.SetCustomColour(i, colour);
112 }
113
114 wxColourDialog *dialog = new wxColourDialog(this, &data);
115 if (dialog->ShowModal() == wxID_OK)
116 {
117 wxColourData retData = dialog->GetColourData();
118 wxColour col = retData.GetColour();
119 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
120 myCanvas->SetBackgroundColour(col);
121 myCanvas->Clear();
122 myCanvas->Refresh();
123 }
124 dialog->Destroy();
125 }
126
127 void MyFrame::ChooseFont(wxCommandEvent& WXUNUSED(event) )
128 {
129 wxFontData data;
130 data.SetInitialFont(wxGetApp().m_canvasFont);
131 data.SetColour(wxGetApp().m_canvasTextColour);
132
133 wxFontDialog *dialog = new wxFontDialog(this, &data);
134 if (dialog->ShowModal() == wxID_OK)
135 {
136 wxFontData retData = dialog->GetFontData();
137 wxGetApp().m_canvasFont = retData.GetChosenFont();
138 wxGetApp().m_canvasTextColour = retData.GetColour();
139 myCanvas->Refresh();
140 }
141 dialog->Destroy();
142 }
143
144 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
145 void MyFrame::ChooseColourGeneric(wxCommandEvent& WXUNUSED(event))
146 {
147 wxColourData data;
148 data.SetChooseFull(TRUE);
149 for (int i = 0; i < 16; i++)
150 {
151 wxColour colour(i*16, i*16, i*16);
152 data.SetCustomColour(i, colour);
153 }
154
155 wxGenericColourDialog *dialog = new wxGenericColourDialog(this, &data);
156 if (dialog->ShowModal() == wxID_OK)
157 {
158 wxColourData retData = dialog->GetColourData();
159 wxColour col = retData.GetColour();
160 // wxBrush *brush = wxTheBrushList->FindOrCreateBrush(&col, wxSOLID);
161 myCanvas->SetBackgroundColour(col);
162 myCanvas->Clear();
163 myCanvas->Refresh();
164 }
165 dialog->Destroy();
166 }
167
168 void MyFrame::ChooseFontGeneric(wxCommandEvent& WXUNUSED(event) )
169 {
170 wxFontData data;
171 data.SetInitialFont(wxGetApp().m_canvasFont);
172 data.SetColour(wxGetApp().m_canvasTextColour);
173
174 wxGenericFontDialog *dialog = new wxGenericFontDialog(this, &data);
175 if (dialog->ShowModal() == wxID_OK)
176 {
177 wxFontData retData = dialog->GetFontData();
178 wxGetApp().m_canvasFont = retData.GetChosenFont();
179 wxGetApp().m_canvasTextColour = retData.GetColour();
180 myCanvas->Refresh();
181 }
182 dialog->Destroy();
183 }
184 #endif
185
186 void MyFrame::MessageBox(wxCommandEvent& WXUNUSED(event) )
187 {
188 #if 0
189 wxMessageDialog dialog(NULL, "This is a message box\nA long, long string to test out the message box properly",
190 "Message box text", wxYES_NO|wxCANCEL);
191
192 dialog.ShowModal();
193
194 ::wxMessageBox("MsgBox with a really long long string",
195 "this is the text", wxYES_NO|wxICON_EXCLAMATION);
196
197 #endif
198 ::wxMessageBox("Short",
199 "This is the text", wxYES_NO|wxICON_EXCLAMATION);
200 }
201
202 void MyFrame::TextEntry(wxCommandEvent& WXUNUSED(event) )
203 {
204 wxTextEntryDialog dialog(this, "This is a small sample\nA long, long string to test out the text entrybox",
205 "Please enter a string", "Default value", wxOK|wxCANCEL);
206
207 if (dialog.ShowModal() == wxID_OK)
208 {
209 wxMessageDialog dialog2(this, dialog.GetValue(), "Got string");
210 dialog2.ShowModal();
211 }
212 }
213
214 void MyFrame::SingleChoice(wxCommandEvent& WXUNUSED(event) )
215 {
216 const wxString choices[] = { "One", "Two", "Three", "Four", "Five" } ;
217 int n = 5;
218
219 wxSingleChoiceDialog dialog(this, "This is a small sample\nA single-choice convenience dialog",
220 "Please select a value", n, (const wxString *)choices);
221
222 dialog.SetSelection(2);
223
224 if (dialog.ShowModal() == wxID_OK)
225 {
226 wxMessageDialog dialog2(this, dialog.GetStringSelection(), "Got string");
227 dialog2.ShowModal();
228 }
229 }
230
231 void MyFrame::FileOpen(wxCommandEvent& WXUNUSED(event) )
232 {
233 wxFileDialog dialog(this, "Testing open file dialog", "", "", "*.txt", 0);
234
235 if (dialog.ShowModal() == wxID_OK)
236 {
237 wxString info;
238 info.Printf(_T("Full file name: %s\n")
239 _T("Path: %s\n")
240 _T("Name: %s"),
241 dialog.GetPath().c_str(),
242 dialog.GetDirectory().c_str(),
243 dialog.GetFilename().c_str());
244 wxMessageDialog dialog2(this, info, "Selected file");
245 dialog2.ShowModal();
246 }
247 }
248
249 void MyFrame::FileSave(wxCommandEvent& WXUNUSED(event) )
250 {
251 wxFileDialog dialog(this, "Testing save file dialog", "", "",
252 "Text files (*.txt)|*.txt|Document files (*.doc)|*.doc",
253 wxSAVE|wxOVERWRITE_PROMPT);
254
255 if (dialog.ShowModal() == wxID_OK)
256 {
257 wxChar buf[400];
258 wxSprintf(buf, _T("%s, filter %d"), (const wxChar*)dialog.GetPath(), dialog.GetFilterIndex());
259 wxMessageDialog dialog2(this, wxString(buf), "Selected path");
260 dialog2.ShowModal();
261 }
262 }
263
264 void MyFrame::DirChoose(wxCommandEvent& WXUNUSED(event) )
265 {
266 wxDirDialog dialog(this, "Testing directory picker", "");
267
268 if (dialog.ShowModal() == wxID_OK)
269 {
270 wxMessageDialog dialog2(this, dialog.GetPath(), "Selected path");
271 dialog2.ShowModal();
272 }
273 }
274
275 void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event) )
276 {
277 Close(TRUE);
278 }
279
280 void MyCanvas::OnPaint(wxPaintEvent& WXUNUSED(event) )
281 {
282 wxPaintDC dc(this);
283 dc.SetFont(wxGetApp().m_canvasFont);
284 dc.SetTextForeground(wxGetApp().m_canvasTextColour);
285 dc.SetBackgroundMode(wxTRANSPARENT);
286 dc.DrawText("wxWindows common dialogs test application", 10, 10);
287 }
288
289 BEGIN_EVENT_TABLE(MyCanvas, wxScrolledWindow)
290 EVT_PAINT(MyCanvas::OnPaint)
291 END_EVENT_TABLE()
292
293 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
294 EVT_MENU(DIALOGS_CHOOSE_COLOUR, MyFrame::ChooseColour)
295 EVT_MENU(DIALOGS_CHOOSE_FONT, MyFrame::ChooseFont)
296 EVT_MENU(DIALOGS_MESSAGE_BOX, MyFrame::MessageBox)
297 EVT_MENU(DIALOGS_TEXT_ENTRY, MyFrame::TextEntry)
298 EVT_MENU(DIALOGS_SINGLE_CHOICE, MyFrame::SingleChoice)
299 EVT_MENU(DIALOGS_FILE_OPEN, MyFrame::FileOpen)
300 EVT_MENU(DIALOGS_FILE_SAVE, MyFrame::FileSave)
301 EVT_MENU(DIALOGS_DIR_CHOOSE, MyFrame::DirChoose)
302 #if defined(__WXMSW__) && wxTEST_GENERIC_DIALOGS_IN_MSW
303 EVT_MENU(DIALOGS_CHOOSE_COLOUR_GENERIC, MyFrame::ChooseColourGeneric)
304 EVT_MENU(DIALOGS_CHOOSE_FONT_GENERIC, MyFrame::ChooseFontGeneric)
305 #endif
306 EVT_MENU(wxID_EXIT, MyFrame::OnExit)
307 END_EVENT_TABLE()
308