1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWidgets sample demonstrating wxWizard control
4 // Author: Vadim Zeitlin
5 // Modified by: Robert Vazan (sizers)
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers
30 #include "wx/stattext.h"
33 #include "wx/checkbox.h"
34 #include "wx/checklst.h"
35 #include "wx/msgdlg.h"
36 #include "wx/radiobox.h"
41 #include "wx/textctrl.h"
42 #include "wx/wizard.h"
44 #include "wiztest.xpm"
45 #include "wiztest2.xpm"
47 #include "../sample.xpm"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
56 Wizard_About
= wxID_ABOUT
,
57 Wizard_Quit
= wxID_EXIT
,
58 Wizard_RunModal
= wxID_HIGHEST
,
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
71 // Define a new application type, each program should derive a class from wxApp
72 class MyApp
: public wxApp
75 // override base class virtuals
76 virtual bool OnInit();
79 class MyFrame
: public wxFrame
83 MyFrame(const wxString
& title
);
85 // event handlers (these functions should _not_ be virtual)
86 void OnQuit(wxCommandEvent
& event
);
87 void OnAbout(wxCommandEvent
& event
);
88 void OnRunWizard(wxCommandEvent
& event
);
89 void OnRunWizardNoSizer(wxCommandEvent
& event
);
90 void OnRunWizardModeless(wxCommandEvent
& event
);
91 void OnWizardCancel(wxWizardEvent
& event
);
92 void OnWizardFinished(wxWizardEvent
& event
);
95 // any class wishing to process wxWidgets events must use this macro
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 class MyWizard
: public wxWizard
106 MyWizard(wxFrame
*frame
, bool useSizer
= true);
108 wxWizardPage
*GetFirstPage() const { return m_page1
; }
111 wxWizardPageSimple
*m_page1
;
114 // ----------------------------------------------------------------------------
115 // some pages for our wizard
116 // ----------------------------------------------------------------------------
118 // This shows how to simply control the validity of the user input by just
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
123 // It also shows how to use a different bitmap for one of the pages.
124 class wxValidationPage
: public wxWizardPageSimple
127 wxValidationPage(wxWizard
*parent
) : wxWizardPageSimple(parent
)
129 m_bitmap
= wxBitmap(wiztest2_xpm
);
131 m_checkbox
= new wxCheckBox(this, wxID_ANY
, _T("&Check me"));
133 wxBoxSizer
*mainSizer
= new wxBoxSizer(wxVERTICAL
);
135 new wxStaticText(this, wxID_ANY
,
136 _T("You need to check the checkbox\n")
137 _T("below before going to the next page\n")),
149 SetSizerAndFit(mainSizer
);
152 virtual bool TransferDataFromWindow()
154 if ( !m_checkbox
->GetValue() )
156 wxMessageBox(_T("Check the checkbox first!"), _T("No way"),
157 wxICON_WARNING
| wxOK
, this);
166 wxCheckBox
*m_checkbox
;
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
175 // directions in which we allow the user to proceed from this page
178 Forward
, Backward
, Both
, Neither
181 wxRadioboxPage(wxWizard
*parent
) : wxWizardPageSimple(parent
)
183 // should correspond to the enum above
184 // static wxString choices[] = { "forward", "backward", "both", "neither" };
185 // The above syntax can cause an internal compiler error with gcc.
187 choices
[0] = _T("forward");
188 choices
[1] = _T("backward");
189 choices
[2] = _T("both");
190 choices
[3] = _T("neither");
192 m_radio
= new wxRadioBox(this, wxID_ANY
, _T("Allow to proceed:"),
193 wxDefaultPosition
, wxDefaultSize
,
194 WXSIZEOF(choices
), choices
,
195 1, wxRA_SPECIFY_COLS
);
196 m_radio
->SetSelection(Both
);
198 wxBoxSizer
*mainSizer
= new wxBoxSizer(wxVERTICAL
);
206 SetSizerAndFit(mainSizer
);
209 // wizard event handlers
210 void OnWizardCancel(wxWizardEvent
& event
)
212 if ( wxMessageBox(_T("Do you really want to cancel?"), _T("Question"),
213 wxICON_QUESTION
| wxYES_NO
, this) != wxYES
)
220 void OnWizardPageChanging(wxWizardEvent
& event
)
222 int sel
= m_radio
->GetSelection();
227 if ( event
.GetDirection() && sel
== Forward
)
230 if ( !event
.GetDirection() && sel
== Backward
)
233 wxMessageBox(_T("You can't go there"), _T("Not allowed"),
234 wxICON_WARNING
| wxOK
, this);
242 DECLARE_EVENT_TABLE()
245 // This shows how to dynamically (i.e. during run-time) arrange the page order.
246 class wxCheckboxPage
: public wxWizardPage
249 wxCheckboxPage(wxWizard
*parent
,
252 : wxWizardPage(parent
)
257 wxBoxSizer
*mainSizer
= new wxBoxSizer(wxVERTICAL
);
260 new wxStaticText(this, wxID_ANY
, _T("Try checking the box below and\n")
261 _T("then going back and clearing it")),
262 0, // No vertical stretching
267 m_checkbox
= new wxCheckBox(this, wxID_ANY
, _T("&Skip the next page"));
270 0, // No vertical stretching
275 #if wxUSE_CHECKLISTBOX
276 static const wxChar
*aszChoices
[] =
290 m_checklistbox
= new wxCheckListBox
296 wxArrayString(WXSIZEOF(aszChoices
), aszChoices
)
301 0, // No vertical stretching
305 #endif // wxUSE_CHECKLISTBOX
307 wxSize textSize
= wxSize(150, 200);
308 if (((wxFrame
*) wxTheApp
->GetTopWindow())->GetMenuBar()->IsChecked(Wizard_LargeWizard
))
309 textSize
= wxSize(150, wxGetClientDisplayRect().GetHeight() - 200);
312 wxTextCtrl
* textCtrl
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
, textSize
, wxTE_MULTILINE
);
313 mainSizer
->Add(textCtrl
, 0, wxALL
|wxEXPAND
, 5);
315 SetSizerAndFit(mainSizer
);
318 // implement wxWizardPage functions
319 virtual wxWizardPage
*GetPrev() const { return m_prev
; }
320 virtual wxWizardPage
*GetNext() const
322 return m_checkbox
->GetValue() ? m_next
->GetNext() : m_next
;
326 wxWizardPage
*m_prev
,
329 wxCheckBox
*m_checkbox
;
330 #if wxUSE_CHECKLISTBOX
331 wxCheckListBox
*m_checklistbox
;
335 // ============================================================================
337 // ============================================================================
339 // ----------------------------------------------------------------------------
340 // event tables and such
341 // ----------------------------------------------------------------------------
343 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
344 EVT_MENU(Wizard_Quit
, MyFrame::OnQuit
)
345 EVT_MENU(Wizard_About
, MyFrame::OnAbout
)
346 EVT_MENU(Wizard_RunModal
, MyFrame::OnRunWizard
)
347 EVT_MENU(Wizard_RunNoSizer
, MyFrame::OnRunWizardNoSizer
)
348 EVT_MENU(Wizard_RunModeless
, MyFrame::OnRunWizardModeless
)
350 EVT_WIZARD_CANCEL(wxID_ANY
, MyFrame::OnWizardCancel
)
351 EVT_WIZARD_FINISHED(wxID_ANY
, MyFrame::OnWizardFinished
)
354 BEGIN_EVENT_TABLE(wxRadioboxPage
, wxWizardPageSimple
)
355 EVT_WIZARD_PAGE_CHANGING(wxID_ANY
, wxRadioboxPage::OnWizardPageChanging
)
356 EVT_WIZARD_CANCEL(wxID_ANY
, wxRadioboxPage::OnWizardCancel
)
361 // ----------------------------------------------------------------------------
362 // the application class
363 // ----------------------------------------------------------------------------
365 // `Main program' equivalent: the program execution "starts" here
368 if ( !wxApp::OnInit() )
371 MyFrame
*frame
= new MyFrame(_T("wxWizard Sample"));
373 // and show it (the frames, unlike simple controls, are not shown when
374 // created initially)
381 // ----------------------------------------------------------------------------
383 // ----------------------------------------------------------------------------
385 MyWizard::MyWizard(wxFrame
*frame
, bool useSizer
)
386 : wxWizard(frame
,wxID_ANY
,_T("Absolutely Useless Wizard"),
387 wxBitmap(wiztest_xpm
),wxDefaultPosition
,
388 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
390 SetIcon(wxIcon(sample_xpm
));
392 // Allow the bitmap to be expanded to fit the page height
393 if (frame
->GetMenuBar()->IsChecked(Wizard_ExpandBitmap
))
394 SetBitmapPlacement(wxWIZARD_VALIGN_CENTRE
);
396 // Enable scrolling adaptation
397 if (frame
->GetMenuBar()->IsChecked(Wizard_LargeWizard
))
398 SetLayoutAdaptationMode(wxDIALOG_ADAPTATION_MODE_ENABLED
);
400 // a wizard page may be either an object of predefined class
401 m_page1
= new wxWizardPageSimple(this);
403 /* wxStaticText *text = */ new wxStaticText(m_page1
, wxID_ANY
,
404 _T("This wizard doesn't help you\nto do anything at all.\n")
406 _T("The next pages will present you\nwith more useless controls."),
410 // ... or a derived class
411 wxRadioboxPage
*page3
= new wxRadioboxPage(this);
412 wxValidationPage
*page4
= new wxValidationPage(this);
414 // set the page order using a convenience function - could also use
415 // SetNext/Prev directly as below
416 wxWizardPageSimple::Chain(page3
, page4
);
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
);
426 // allow the wizard to size itself around the pages
427 GetPageAreaSizer()->Add(m_page1
);
431 // ----------------------------------------------------------------------------
433 // ----------------------------------------------------------------------------
435 MyFrame::MyFrame(const wxString
& title
)
436 :wxFrame((wxFrame
*)NULL
, wxID_ANY
, title
,
437 wxDefaultPosition
, wxSize(250, 150)) // small frame
439 wxMenu
*menuFile
= new wxMenu
;
440 menuFile
->Append(Wizard_RunModal
, _T("&Run wizard modal...\tCtrl-R"));
441 menuFile
->Append(Wizard_RunNoSizer
, _T("Run wizard &without sizer..."));
442 menuFile
->Append(Wizard_RunModeless
, _T("Run wizard &modeless..."));
443 menuFile
->AppendSeparator();
444 menuFile
->Append(Wizard_Quit
, _T("E&xit\tAlt-X"), _T("Quit this program"));
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"));
450 wxMenu
*helpMenu
= new wxMenu
;
451 helpMenu
->Append(Wizard_About
, _T("&About...\tF1"), _T("Show about dialog"));
453 // now append the freshly created menu to the menu bar...
454 wxMenuBar
*menuBar
= new wxMenuBar();
455 menuBar
->Append(menuFile
, _T("&File"));
456 menuBar
->Append(menuOptions
, _T("&Options"));
457 menuBar
->Append(helpMenu
, _T("&Help"));
459 // ... and attach this menu bar to the frame
462 // also create status bar which we use in OnWizardCancel
465 #endif // wxUSE_STATUSBAR
468 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
470 // true is to force the frame to close
474 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
476 wxMessageBox(_T("Demo of wxWizard class\n")
477 _T("(c) 1999, 2000 Vadim Zeitlin"),
478 _T("About wxWizard sample"), wxOK
| wxICON_INFORMATION
, this);
481 void MyFrame::OnRunWizard(wxCommandEvent
& WXUNUSED(event
))
483 MyWizard
wizard(this);
485 wizard
.RunWizard(wizard
.GetFirstPage());
488 void MyFrame::OnRunWizardNoSizer(wxCommandEvent
& WXUNUSED(event
))
490 MyWizard
wizard(this, false);
492 wizard
.RunWizard(wizard
.GetFirstPage());
495 void MyFrame::OnRunWizardModeless(wxCommandEvent
& WXUNUSED(event
))
497 MyWizard
*wizard
= new MyWizard(this);
498 wizard
->ShowPage(wizard
->GetFirstPage());
502 void MyFrame::OnWizardFinished(wxWizardEvent
& WXUNUSED(event
))
504 wxMessageBox(wxT("The wizard finished successfully."), wxT("Wizard notification"));
507 void MyFrame::OnWizardCancel(wxWizardEvent
& WXUNUSED(event
))
509 wxMessageBox(wxT("The wizard was cancelled."), wxT("Wizard notification"));