]>
git.saurik.com Git - wxWidgets.git/blob - samples/wizard/wiztest.cpp
cd078af265df207f614f3863991454041120318b
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindows sample demonstrating wxWizard control
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "wiztest.cpp"
22 #pragma interface "wiztest.cpp"
25 // For compilers that support precompilation, includes "wx/wx.h".
26 #include "wx/wxprec.h"
32 // for all others, include the necessary headers (this file is usually all you
33 // need because it includes almost all "standard" wxWindows headers
38 #include "wx/wizard.h"
41 #include "wiztest.xpm"
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
61 #define BMP_WIZARD_1 wxBitmap("wiztest.bmp", wxBITMAP_TYPE_BMP)
62 #define BMP_WIZARD_2 wxBitmap("wiztest2.bmp", wxBITMAP_TYPE_BMP)
64 #define BMP_WIZARD_1 wxBitmap(wizimage)
65 #define BMP_WIZARD_2 wxBitmap(wizimage)
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 // Define a new application type, each program should derive a class from wxApp
73 class MyApp
: public wxApp
76 // override base class virtuals
77 virtual bool OnInit();
80 class MyFrame
: public wxFrame
84 MyFrame(const wxString
& title
);
86 // event handlers (these functions should _not_ be virtual)
87 void OnQuit(wxCommandEvent
& event
);
88 void OnAbout(wxCommandEvent
& event
);
89 void OnRunWizard(wxCommandEvent
& event
);
90 void OnWizardCancel(wxWizardEvent
& event
);
93 // any class wishing to process wxWindows events must use this macro
97 // ----------------------------------------------------------------------------
98 // some pages for our wizard
99 // ----------------------------------------------------------------------------
101 // this shows how to simply control the validity of the user input by just
102 // overriding TransferDataFromWindow() - of course, in a real program, the
103 // check wouldn't be so trivial and the data will be probably saved somewhere
106 // it also shows how to use a different bitmap for one of the pages
107 class wxValidationPage
: public wxWizardPageSimple
110 wxValidationPage(wxWizard
*parent
) : wxWizardPageSimple(parent
)
112 m_bitmap
= BMP_WIZARD_2
;
114 m_checkbox
= new wxCheckBox(this, -1, "&Check me");
117 virtual bool TransferDataFromWindow()
119 if ( !m_checkbox
->GetValue() )
121 wxMessageBox("Check the checkbox first!", "No way",
122 wxICON_WARNING
| wxOK
, this);
131 wxCheckBox
*m_checkbox
;
134 // This is a more complicated example of validity checking: using events we may
135 // allow to return to the previous page, but not to proceed. It also
136 // demonstrates how to intercept [Cancel] button press.
137 class wxRadioboxPage
: public wxWizardPageSimple
140 // directions in which we allow the user to proceed from this page
143 Forward
, Backward
, Both
, Neither
146 wxRadioboxPage(wxWizard
*parent
) : wxWizardPageSimple(parent
)
148 // should correspond to the enum above
149 static wxString choices
[] = { "forward", "backward", "both", "neither" };
151 m_radio
= new wxRadioBox(this, -1, "Allow to proceed:",
152 wxPoint(5, 5), wxDefaultSize
,
153 WXSIZEOF(choices
), choices
,
154 1, wxRA_SPECIFY_COLS
);
155 m_radio
->SetSelection(Both
);
158 // wizard event handlers
159 void OnWizardCancel(wxWizardEvent
& event
)
161 if ( wxMessageBox("Do you really want to cancel?", "Question",
162 wxICON_QUESTION
| wxYES_NO
, this) != wxYES
)
169 void OnWizardPageChanging(wxWizardEvent
& event
)
171 int sel
= m_radio
->GetSelection();
176 if ( event
.GetDirection() && sel
== Forward
)
179 if ( !event
.GetDirection() && sel
== Backward
)
182 wxMessageBox("You can't go there", "Not allowed",
183 wxICON_WARNING
| wxOK
, this);
191 DECLARE_EVENT_TABLE()
194 // this shows how to dynamically (i.e. during run-time) arrange the page order
195 class wxCheckboxPage
: public wxWizardPage
198 wxCheckboxPage(wxWizard
*parent
,
201 : wxWizardPage(parent
)
206 (void)new wxStaticText(this, -1, "Try checking the box below and\n"
207 "then going back and clearing it");
209 m_checkbox
= new wxCheckBox(this, -1, "&Skip the next page",
213 // implement wxWizardPage functions
214 virtual wxWizardPage
*GetPrev() const { return m_prev
; }
215 virtual wxWizardPage
*GetNext() const
217 return m_checkbox
->GetValue() ? m_next
->GetNext() : m_next
;
221 wxWizardPage
*m_prev
,
224 wxCheckBox
*m_checkbox
;
227 // ============================================================================
229 // ============================================================================
231 // ----------------------------------------------------------------------------
232 // event tables and such
233 // ----------------------------------------------------------------------------
235 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
236 EVT_MENU(Wizard_Quit
, MyFrame::OnQuit
)
237 EVT_MENU(Wizard_About
, MyFrame::OnAbout
)
238 EVT_MENU(Wizard_Run
, MyFrame::OnRunWizard
)
240 EVT_WIZARD_CANCEL(-1, MyFrame::OnWizardCancel
)
243 BEGIN_EVENT_TABLE(wxRadioboxPage
, wxWizardPageSimple
)
244 EVT_WIZARD_PAGE_CHANGING(-1, wxRadioboxPage::OnWizardPageChanging
)
245 EVT_WIZARD_CANCEL(-1, wxRadioboxPage::OnWizardCancel
)
250 // ----------------------------------------------------------------------------
251 // the application class
252 // ----------------------------------------------------------------------------
254 // `Main program' equivalent: the program execution "starts" here
257 MyFrame
*frame
= new MyFrame("wxWizard Sample");
259 // and show it (the frames, unlike simple controls, are not shown when
260 // created initially)
267 // ----------------------------------------------------------------------------
269 // ----------------------------------------------------------------------------
271 MyFrame::MyFrame(const wxString
& title
)
272 : wxFrame((wxFrame
*)NULL
, -1, title
,
273 wxDefaultPosition
, wxSize(250, 150)) // small frame
275 wxMenu
*menuFile
= new wxMenu
;
276 menuFile
->Append(Wizard_Run
, "&Run wizard...\tCtrl-R");
277 menuFile
->AppendSeparator();
278 menuFile
->Append(Wizard_Quit
, "E&xit\tAlt-X", "Quit this program");
280 wxMenu
*helpMenu
= new wxMenu
;
281 helpMenu
->Append(Wizard_About
, "&About...\tF1", "Show about dialog");
283 // now append the freshly created menu to the menu bar...
284 wxMenuBar
*menuBar
= new wxMenuBar();
285 menuBar
->Append(menuFile
, "&File");
286 menuBar
->Append(helpMenu
, "&Help");
288 // ... and attach this menu bar to the frame
291 // also create status bar which we use in OnWizardCancel
295 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
297 // TRUE is to force the frame to close
301 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
303 wxMessageBox("Demo of wxWizard class\n"
304 "© 1999, 2000 Vadim Zeitlin",
305 "About wxWizard sample", wxOK
| wxICON_INFORMATION
, this);
308 void MyFrame::OnRunWizard(wxCommandEvent
& WXUNUSED(event
))
310 wxWizard
*wizard
= wxWizard::Create(this, -1,
311 "Absolutely Useless Wizard",
314 // a wizard page may be either an object of predefined class
315 wxWizardPageSimple
*page1
= new wxWizardPageSimple(wizard
);
316 (void)new wxStaticText(page1
, -1,
317 "This wizard doesn't help you to do anything at "
320 "The next pages will present you with more useless "
323 // ... or a derived class
324 wxRadioboxPage
*page3
= new wxRadioboxPage(wizard
);
325 wxValidationPage
*page4
= new wxValidationPage(wizard
);
327 // set the page order using a convenience function - could also use
328 // SetNext/Prev directly as below
329 wxWizardPageSimple::Chain(page3
, page4
);
331 // this page is not a wxWizardPageSimple, so we use SetNext/Prev to insert
332 // it into the chain of pages
333 wxCheckboxPage
*page2
= new wxCheckboxPage(wizard
, page1
, page3
);
334 page1
->SetNext(page2
);
335 page3
->SetPrev(page2
);
337 if ( wizard
->RunWizard(page1
) )
339 wxMessageBox("The wizard successfully completed", "That's all",
340 wxICON_INFORMATION
| wxOK
);
346 void MyFrame::OnWizardCancel(wxWizardEvent
& WXUNUSED(event
))
348 wxLogStatus(this, "The wizard was cancelled.");