]>
Commit | Line | Data |
---|---|---|
66cd017c | 1 | ///////////////////////////////////////////////////////////////////////////// |
13f5935c | 2 | // Name: wizard.cpp |
be5a51fb | 3 | // Purpose: wxWidgets sample demonstrating wxWizard control |
66cd017c | 4 | // Author: Vadim Zeitlin |
07f20d9a | 5 | // Modified by: Robert Vazan (sizers) |
66cd017c VZ |
6 | // Created: 15.08.99 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
66cd017c VZ |
20 | // For compilers that support precompilation, includes "wx/wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
07f20d9a | 27 | // for all others, include the necessary headers |
66cd017c | 28 | #ifndef WX_PRECOMP |
574d4d1c | 29 | #include "wx/frame.h" |
07f20d9a VZ |
30 | #include "wx/stattext.h" |
31 | #include "wx/log.h" | |
32 | #include "wx/app.h" | |
33 | #include "wx/checkbox.h" | |
f2e93537 | 34 | #include "wx/checklst.h" |
07f20d9a VZ |
35 | #include "wx/msgdlg.h" |
36 | #include "wx/radiobox.h" | |
37 | #include "wx/menu.h" | |
38 | #include "wx/sizer.h" | |
66cd017c VZ |
39 | #endif |
40 | ||
3aa8e4ea | 41 | #include "wx/textctrl.h" |
66cd017c VZ |
42 | #include "wx/wizard.h" |
43 | ||
77ba7af1 JS |
44 | #include "wiztest.xpm" |
45 | #include "wiztest2.xpm" | |
b87654f3 | 46 | |
3aa8e4ea JS |
47 | #include "../sample.xpm" |
48 | ||
d93c719a VZ |
49 | // ---------------------------------------------------------------------------- |
50 | // constants | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | // ids for menu items | |
54 | enum | |
55 | { | |
3aa8e4ea | 56 | Wizard_About = wxID_ABOUT, |
b3eb133b WS |
57 | Wizard_Quit = wxID_EXIT, |
58 | Wizard_RunModal = wxID_HIGHEST, | |
3aa8e4ea | 59 | |
0a089246 | 60 | Wizard_RunNoSizer, |
b3eb133b | 61 | Wizard_RunModeless, |
3aa8e4ea JS |
62 | |
63 | Wizard_LargeWizard, | |
64 | Wizard_ExpandBitmap | |
d93c719a VZ |
65 | }; |
66 | ||
66cd017c VZ |
67 | // ---------------------------------------------------------------------------- |
68 | // private classes | |
69 | // ---------------------------------------------------------------------------- | |
70 | ||
71 | // Define a new application type, each program should derive a class from wxApp | |
72 | class MyApp : public wxApp | |
73 | { | |
74 | public: | |
75 | // override base class virtuals | |
76 | virtual bool OnInit(); | |
77 | }; | |
78 | ||
d93c719a VZ |
79 | class MyFrame : public wxFrame |
80 | { | |
81 | public: | |
82 | // ctor(s) | |
83 | MyFrame(const wxString& title); | |
84 | ||
85 | // event handlers (these functions should _not_ be virtual) | |
86 | void OnQuit(wxCommandEvent& event); | |
87 | void OnAbout(wxCommandEvent& event); | |
88 | void OnRunWizard(wxCommandEvent& event); | |
0a089246 VZ |
89 | void OnRunWizardNoSizer(wxCommandEvent& event); |
90 | void OnRunWizardModeless(wxCommandEvent& event); | |
d93c719a | 91 | void OnWizardCancel(wxWizardEvent& event); |
8a7dfb14 | 92 | void OnWizardFinished(wxWizardEvent& event); |
d93c719a VZ |
93 | |
94 | private: | |
be5a51fb | 95 | // any class wishing to process wxWidgets events must use this macro |
d93c719a VZ |
96 | DECLARE_EVENT_TABLE() |
97 | }; | |
66cd017c | 98 | |
b3eb133b WS |
99 | // ---------------------------------------------------------------------------- |
100 | // our wizard | |
101 | // ---------------------------------------------------------------------------- | |
102 | ||
103 | class MyWizard : public wxWizard | |
104 | { | |
105 | public: | |
0a089246 VZ |
106 | MyWizard(wxFrame *frame, bool useSizer = true); |
107 | ||
108 | wxWizardPage *GetFirstPage() const { return m_page1; } | |
b3eb133b WS |
109 | |
110 | private: | |
111 | wxWizardPageSimple *m_page1; | |
112 | }; | |
113 | ||
66cd017c VZ |
114 | // ---------------------------------------------------------------------------- |
115 | // some pages for our wizard | |
116 | // ---------------------------------------------------------------------------- | |
117 | ||
436aae91 | 118 | // This shows how to simply control the validity of the user input by just |
66cd017c VZ |
119 | // overriding TransferDataFromWindow() - of course, in a real program, the |
120 | // check wouldn't be so trivial and the data will be probably saved somewhere | |
436aae91 | 121 | // too. |
d93c719a | 122 | // |
436aae91 | 123 | // It also shows how to use a different bitmap for one of the pages. |
74b31181 | 124 | class wxValidationPage : public wxWizardPageSimple |
66cd017c VZ |
125 | { |
126 | public: | |
74b31181 | 127 | wxValidationPage(wxWizard *parent) : wxWizardPageSimple(parent) |
66cd017c | 128 | { |
77ba7af1 | 129 | m_bitmap = wxBitmap(wiztest2_xpm); |
d93c719a | 130 | |
71572a74 | 131 | m_checkbox = new wxCheckBox(this, wxID_ANY, _T("&Check me")); |
226e5774 | 132 | |
07f20d9a VZ |
133 | wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL); |
134 | mainSizer->Add( | |
71572a74 | 135 | new wxStaticText(this, wxID_ANY, |
07f20d9a VZ |
136 | _T("You need to check the checkbox\n") |
137 | _T("below before going to the next page\n")), | |
138 | 0, | |
139 | wxALL, | |
140 | 5 | |
141 | ); | |
142 | ||
143 | mainSizer->Add( | |
144 | m_checkbox, | |
145 | 0, // No stretching | |
146 | wxALL, | |
147 | 5 // Border | |
148 | ); | |
92c01615 | 149 | SetSizerAndFit(mainSizer); |
66cd017c VZ |
150 | } |
151 | ||
152 | virtual bool TransferDataFromWindow() | |
153 | { | |
74b31181 | 154 | if ( !m_checkbox->GetValue() ) |
66cd017c | 155 | { |
9f84eccd | 156 | wxMessageBox(_T("Check the checkbox first!"), _T("No way"), |
b87654f3 | 157 | wxICON_WARNING | wxOK, this); |
66cd017c | 158 | |
71572a74 | 159 | return false; |
66cd017c VZ |
160 | } |
161 | ||
71572a74 | 162 | return true; |
66cd017c VZ |
163 | } |
164 | ||
165 | private: | |
166 | wxCheckBox *m_checkbox; | |
167 | }; | |
168 | ||
74b31181 VZ |
169 | // This is a more complicated example of validity checking: using events we may |
170 | // allow to return to the previous page, but not to proceed. It also | |
171 | // demonstrates how to intercept [Cancel] button press. | |
172 | class wxRadioboxPage : public wxWizardPageSimple | |
173 | { | |
174 | public: | |
175 | // directions in which we allow the user to proceed from this page | |
176 | enum | |
177 | { | |
178 | Forward, Backward, Both, Neither | |
179 | }; | |
180 | ||
181 | wxRadioboxPage(wxWizard *parent) : wxWizardPageSimple(parent) | |
182 | { | |
183 | // should correspond to the enum above | |
dc1efb1d JS |
184 | // static wxString choices[] = { "forward", "backward", "both", "neither" }; |
185 | // The above syntax can cause an internal compiler error with gcc. | |
186 | wxString choices[4]; | |
9f84eccd MB |
187 | choices[0] = _T("forward"); |
188 | choices[1] = _T("backward"); | |
189 | choices[2] = _T("both"); | |
190 | choices[3] = _T("neither"); | |
74b31181 | 191 | |
71572a74 | 192 | m_radio = new wxRadioBox(this, wxID_ANY, _T("Allow to proceed:"), |
07f20d9a | 193 | wxDefaultPosition, wxDefaultSize, |
74b31181 VZ |
194 | WXSIZEOF(choices), choices, |
195 | 1, wxRA_SPECIFY_COLS); | |
196 | m_radio->SetSelection(Both); | |
226e5774 | 197 | |
07f20d9a VZ |
198 | wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL); |
199 | mainSizer->Add( | |
200 | m_radio, | |
201 | 0, // No stretching | |
202 | wxALL, | |
203 | 5 // Border | |
204 | ); | |
226e5774 | 205 | |
92c01615 | 206 | SetSizerAndFit(mainSizer); |
74b31181 VZ |
207 | } |
208 | ||
209 | // wizard event handlers | |
210 | void OnWizardCancel(wxWizardEvent& event) | |
211 | { | |
9f84eccd | 212 | if ( wxMessageBox(_T("Do you really want to cancel?"), _T("Question"), |
74b31181 VZ |
213 | wxICON_QUESTION | wxYES_NO, this) != wxYES ) |
214 | { | |
215 | // not confirmed | |
216 | event.Veto(); | |
217 | } | |
218 | } | |
219 | ||
220 | void OnWizardPageChanging(wxWizardEvent& event) | |
221 | { | |
222 | int sel = m_radio->GetSelection(); | |
223 | ||
224 | if ( sel == Both ) | |
225 | return; | |
226 | ||
227 | if ( event.GetDirection() && sel == Forward ) | |
228 | return; | |
229 | ||
230 | if ( !event.GetDirection() && sel == Backward ) | |
231 | return; | |
232 | ||
9f84eccd | 233 | wxMessageBox(_T("You can't go there"), _T("Not allowed"), |
74b31181 VZ |
234 | wxICON_WARNING | wxOK, this); |
235 | ||
236 | event.Veto(); | |
237 | } | |
238 | ||
239 | private: | |
240 | wxRadioBox *m_radio; | |
241 | ||
242 | DECLARE_EVENT_TABLE() | |
243 | }; | |
244 | ||
436aae91 | 245 | // This shows how to dynamically (i.e. during run-time) arrange the page order. |
74b31181 VZ |
246 | class wxCheckboxPage : public wxWizardPage |
247 | { | |
248 | public: | |
249 | wxCheckboxPage(wxWizard *parent, | |
250 | wxWizardPage *prev, | |
251 | wxWizardPage *next) | |
252 | : wxWizardPage(parent) | |
253 | { | |
254 | m_prev = prev; | |
255 | m_next = next; | |
226e5774 | 256 | |
07f20d9a VZ |
257 | wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL); |
258 | ||
259 | mainSizer->Add( | |
71572a74 | 260 | new wxStaticText(this, wxID_ANY, _T("Try checking the box below and\n") |
07f20d9a VZ |
261 | _T("then going back and clearing it")), |
262 | 0, // No vertical stretching | |
263 | wxALL, | |
264 | 5 // Border width | |
265 | ); | |
74b31181 | 266 | |
71572a74 | 267 | m_checkbox = new wxCheckBox(this, wxID_ANY, _T("&Skip the next page")); |
07f20d9a VZ |
268 | mainSizer->Add( |
269 | m_checkbox, | |
270 | 0, // No vertical stretching | |
271 | wxALL, | |
272 | 5 // Border width | |
273 | ); | |
f2e93537 | 274 | |
653d7a50 | 275 | #if wxUSE_CHECKLISTBOX |
f2e93537 | 276 | static const wxChar *aszChoices[] = |
9002a61c VZ |
277 | { |
278 | _T("Zeroth"), | |
279 | _T("First"), | |
280 | _T("Second"), | |
281 | _T("Third"), | |
282 | _T("Fourth"), | |
283 | _T("Fifth"), | |
284 | _T("Sixth"), | |
285 | _T("Seventh"), | |
286 | _T("Eighth"), | |
287 | _T("Nineth") | |
288 | }; | |
289 | ||
290 | m_checklistbox = new wxCheckListBox | |
291 | ( | |
292 | this, | |
293 | wxID_ANY, | |
294 | wxDefaultPosition, | |
295 | wxSize(100,100), | |
296 | wxArrayString(WXSIZEOF(aszChoices), aszChoices) | |
297 | ); | |
226e5774 | 298 | |
f2e93537 RR |
299 | mainSizer->Add( |
300 | m_checklistbox, | |
301 | 0, // No vertical stretching | |
302 | wxALL, | |
303 | 5 // Border width | |
304 | ); | |
653d7a50 | 305 | #endif // wxUSE_CHECKLISTBOX |
226e5774 | 306 | |
3aa8e4ea JS |
307 | wxSize textSize = wxSize(150, 200); |
308 | if (((wxFrame*) wxTheApp->GetTopWindow())->GetMenuBar()->IsChecked(Wizard_LargeWizard)) | |
309 | textSize = wxSize(150, wxGetClientDisplayRect().GetHeight() - 200); | |
310 | ||
311 | ||
312 | wxTextCtrl* textCtrl = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, textSize, wxTE_MULTILINE); | |
313 | mainSizer->Add(textCtrl, 0, wxALL|wxEXPAND, 5); | |
314 | ||
92c01615 | 315 | SetSizerAndFit(mainSizer); |
74b31181 VZ |
316 | } |
317 | ||
318 | // implement wxWizardPage functions | |
319 | virtual wxWizardPage *GetPrev() const { return m_prev; } | |
320 | virtual wxWizardPage *GetNext() const | |
321 | { | |
322 | return m_checkbox->GetValue() ? m_next->GetNext() : m_next; | |
323 | } | |
324 | ||
325 | private: | |
326 | wxWizardPage *m_prev, | |
327 | *m_next; | |
328 | ||
329 | wxCheckBox *m_checkbox; | |
653d7a50 | 330 | #if wxUSE_CHECKLISTBOX |
f2e93537 | 331 | wxCheckListBox *m_checklistbox; |
653d7a50 | 332 | #endif |
74b31181 VZ |
333 | }; |
334 | ||
66cd017c VZ |
335 | // ============================================================================ |
336 | // implementation | |
337 | // ============================================================================ | |
338 | ||
d93c719a VZ |
339 | // ---------------------------------------------------------------------------- |
340 | // event tables and such | |
341 | // ---------------------------------------------------------------------------- | |
342 | ||
343 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
b3eb133b WS |
344 | EVT_MENU(Wizard_Quit, MyFrame::OnQuit) |
345 | EVT_MENU(Wizard_About, MyFrame::OnAbout) | |
346 | EVT_MENU(Wizard_RunModal, MyFrame::OnRunWizard) | |
0a089246 VZ |
347 | EVT_MENU(Wizard_RunNoSizer, MyFrame::OnRunWizardNoSizer) |
348 | EVT_MENU(Wizard_RunModeless, MyFrame::OnRunWizardModeless) | |
d93c719a | 349 | |
b3eb133b | 350 | EVT_WIZARD_CANCEL(wxID_ANY, MyFrame::OnWizardCancel) |
71572a74 | 351 | EVT_WIZARD_FINISHED(wxID_ANY, MyFrame::OnWizardFinished) |
d93c719a VZ |
352 | END_EVENT_TABLE() |
353 | ||
74b31181 | 354 | BEGIN_EVENT_TABLE(wxRadioboxPage, wxWizardPageSimple) |
71572a74 WS |
355 | EVT_WIZARD_PAGE_CHANGING(wxID_ANY, wxRadioboxPage::OnWizardPageChanging) |
356 | EVT_WIZARD_CANCEL(wxID_ANY, wxRadioboxPage::OnWizardCancel) | |
74b31181 VZ |
357 | END_EVENT_TABLE() |
358 | ||
d93c719a VZ |
359 | IMPLEMENT_APP(MyApp) |
360 | ||
66cd017c VZ |
361 | // ---------------------------------------------------------------------------- |
362 | // the application class | |
363 | // ---------------------------------------------------------------------------- | |
364 | ||
365 | // `Main program' equivalent: the program execution "starts" here | |
366 | bool MyApp::OnInit() | |
367 | { | |
45e6e6f8 VZ |
368 | if ( !wxApp::OnInit() ) |
369 | return false; | |
370 | ||
9f84eccd | 371 | MyFrame *frame = new MyFrame(_T("wxWizard Sample")); |
d93c719a VZ |
372 | |
373 | // and show it (the frames, unlike simple controls, are not shown when | |
374 | // created initially) | |
71572a74 | 375 | frame->Show(true); |
d93c719a VZ |
376 | |
377 | // we're done | |
71572a74 | 378 | return true; |
d93c719a VZ |
379 | } |
380 | ||
b3eb133b WS |
381 | // ---------------------------------------------------------------------------- |
382 | // MyWizard | |
383 | // ---------------------------------------------------------------------------- | |
37f6a080 | 384 | |
0a089246 VZ |
385 | MyWizard::MyWizard(wxFrame *frame, bool useSizer) |
386 | : wxWizard(frame,wxID_ANY,_T("Absolutely Useless Wizard"), | |
b3eb133b WS |
387 | wxBitmap(wiztest_xpm),wxDefaultPosition, |
388 | wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) | |
389 | { | |
3aa8e4ea JS |
390 | SetIcon(wxIcon(sample_xpm)); |
391 | ||
392 | // Allow the bitmap to be expanded to fit the page height | |
393 | if (frame->GetMenuBar()->IsChecked(Wizard_ExpandBitmap)) | |
394 | SetBitmapPlacement(wxWIZARD_VALIGN_CENTRE); | |
395 | ||
396 | // Enable scrolling adaptation | |
397 | if (frame->GetMenuBar()->IsChecked(Wizard_LargeWizard)) | |
398 | SetLayoutAdaptationMode(wxDIALOG_ADAPTATION_MODE_ENABLED); | |
399 | ||
b3eb133b WS |
400 | // a wizard page may be either an object of predefined class |
401 | m_page1 = new wxWizardPageSimple(this); | |
402 | ||
403 | /* wxStaticText *text = */ new wxStaticText(m_page1, wxID_ANY, | |
404 | _T("This wizard doesn't help you\nto do anything at all.\n") | |
405 | _T("\n") | |
406 | _T("The next pages will present you\nwith more useless controls."), | |
407 | wxPoint(5,5) | |
408 | ); | |
409 | ||
410 | // ... or a derived class | |
411 | wxRadioboxPage *page3 = new wxRadioboxPage(this); | |
412 | wxValidationPage *page4 = new wxValidationPage(this); | |
413 | ||
414 | // set the page order using a convenience function - could also use | |
415 | // SetNext/Prev directly as below | |
416 | wxWizardPageSimple::Chain(page3, page4); | |
417 | ||
418 | // this page is not a wxWizardPageSimple, so we use SetNext/Prev to insert | |
419 | // it into the chain of pages | |
420 | wxCheckboxPage *page2 = new wxCheckboxPage(this, m_page1, page3); | |
421 | m_page1->SetNext(page2); | |
422 | page3->SetPrev(page2); | |
423 | ||
0a089246 | 424 | if ( useSizer ) |
b3eb133b | 425 | { |
0a089246 VZ |
426 | // allow the wizard to size itself around the pages |
427 | GetPageAreaSizer()->Add(m_page1); | |
b3eb133b WS |
428 | } |
429 | } | |
430 | ||
d93c719a VZ |
431 | // ---------------------------------------------------------------------------- |
432 | // MyFrame | |
433 | // ---------------------------------------------------------------------------- | |
434 | ||
435 | MyFrame::MyFrame(const wxString& title) | |
b3eb133b | 436 | :wxFrame((wxFrame *)NULL, wxID_ANY, title, |
d93c719a VZ |
437 | wxDefaultPosition, wxSize(250, 150)) // small frame |
438 | { | |
439 | wxMenu *menuFile = new wxMenu; | |
b3eb133b | 440 | menuFile->Append(Wizard_RunModal, _T("&Run wizard modal...\tCtrl-R")); |
0a089246 VZ |
441 | menuFile->Append(Wizard_RunNoSizer, _T("Run wizard &without sizer...")); |
442 | menuFile->Append(Wizard_RunModeless, _T("Run wizard &modeless...")); | |
d93c719a | 443 | menuFile->AppendSeparator(); |
9f84eccd | 444 | menuFile->Append(Wizard_Quit, _T("E&xit\tAlt-X"), _T("Quit this program")); |
d93c719a | 445 | |
3aa8e4ea JS |
446 | wxMenu *menuOptions = new wxMenu; |
447 | menuOptions->AppendCheckItem(Wizard_LargeWizard, _T("&Scroll Wizard Pages")); | |
448 | menuOptions->AppendCheckItem(Wizard_ExpandBitmap, _T("Si&ze Bitmap To Page")); | |
449 | ||
d93c719a | 450 | wxMenu *helpMenu = new wxMenu; |
9f84eccd | 451 | helpMenu->Append(Wizard_About, _T("&About...\tF1"), _T("Show about dialog")); |
d93c719a VZ |
452 | |
453 | // now append the freshly created menu to the menu bar... | |
454 | wxMenuBar *menuBar = new wxMenuBar(); | |
9f84eccd | 455 | menuBar->Append(menuFile, _T("&File")); |
3aa8e4ea | 456 | menuBar->Append(menuOptions, _T("&Options")); |
9f84eccd | 457 | menuBar->Append(helpMenu, _T("&Help")); |
66cd017c | 458 | |
d93c719a VZ |
459 | // ... and attach this menu bar to the frame |
460 | SetMenuBar(menuBar); | |
461 | ||
462 | // also create status bar which we use in OnWizardCancel | |
960a83cc | 463 | #if wxUSE_STATUSBAR |
d93c719a | 464 | CreateStatusBar(); |
960a83cc | 465 | #endif // wxUSE_STATUSBAR |
d93c719a VZ |
466 | } |
467 | ||
468 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
469 | { | |
71572a74 WS |
470 | // true is to force the frame to close |
471 | Close(true); | |
d93c719a VZ |
472 | } |
473 | ||
474 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
475 | { | |
9f84eccd | 476 | wxMessageBox(_T("Demo of wxWizard class\n") |
749bfe9a | 477 | _T("(c) 1999, 2000 Vadim Zeitlin"), |
9f84eccd | 478 | _T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this); |
d93c719a VZ |
479 | } |
480 | ||
0a089246 | 481 | void MyFrame::OnRunWizard(wxCommandEvent& WXUNUSED(event)) |
d93c719a | 482 | { |
0a089246 VZ |
483 | MyWizard wizard(this); |
484 | ||
485 | wizard.RunWizard(wizard.GetFirstPage()); | |
486 | } | |
487 | ||
488 | void MyFrame::OnRunWizardNoSizer(wxCommandEvent& WXUNUSED(event)) | |
489 | { | |
490 | MyWizard wizard(this, false); | |
66cd017c | 491 | |
0a089246 VZ |
492 | wizard.RunWizard(wizard.GetFirstPage()); |
493 | } | |
494 | ||
495 | void MyFrame::OnRunWizardModeless(wxCommandEvent& WXUNUSED(event)) | |
496 | { | |
497 | MyWizard *wizard = new MyWizard(this); | |
498 | wizard->ShowPage(wizard->GetFirstPage()); | |
499 | wizard->Show(true); | |
66cd017c | 500 | } |
01dba85a | 501 | |
8a7dfb14 VZ |
502 | void MyFrame::OnWizardFinished(wxWizardEvent& WXUNUSED(event)) |
503 | { | |
b3eb133b | 504 | wxMessageBox(wxT("The wizard finished successfully."), wxT("Wizard notification")); |
8a7dfb14 VZ |
505 | } |
506 | ||
d93c719a VZ |
507 | void MyFrame::OnWizardCancel(wxWizardEvent& WXUNUSED(event)) |
508 | { | |
b3eb133b | 509 | wxMessageBox(wxT("The wizard was cancelled."), wxT("Wizard notification")); |
d93c719a | 510 | } |