]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/wizard/wizard.cpp
Added PalmOS to release scripts
[wxWidgets.git] / samples / wizard / wizard.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wizard.cpp
3// Purpose: wxWidgets sample demonstrating wxWizard control
4// Author: Vadim Zeitlin
5// Modified by: Robert Vazan (sizers)
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
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
27// for all others, include the necessary headers
28#ifndef WX_PRECOMP
29 #include "wx/stattext.h"
30 #include "wx/log.h"
31 #include "wx/app.h"
32 #include "wx/checkbox.h"
33 #include "wx/checklst.h"
34 #include "wx/msgdlg.h"
35 #include "wx/radiobox.h"
36 #include "wx/menu.h"
37 #include "wx/sizer.h"
38#endif
39
40#include "wx/wizard.h"
41
42#ifndef __WXMSW__
43 #include "wiztest.xpm"
44 #include "wiztest2.xpm"
45#endif
46
47// ----------------------------------------------------------------------------
48// constants
49// ----------------------------------------------------------------------------
50
51// ids for menu items
52enum
53{
54 Wizard_Quit = 100,
55 Wizard_Run,
56 Wizard_About = 1000
57};
58
59// ----------------------------------------------------------------------------
60// private classes
61// ----------------------------------------------------------------------------
62
63// Define a new application type, each program should derive a class from wxApp
64class MyApp : public wxApp
65{
66public:
67 // override base class virtuals
68 virtual bool OnInit();
69};
70
71class MyFrame : public wxFrame
72{
73public:
74 // ctor(s)
75 MyFrame(const wxString& title);
76
77 // event handlers (these functions should _not_ be virtual)
78 void OnQuit(wxCommandEvent& event);
79 void OnAbout(wxCommandEvent& event);
80 void OnRunWizard(wxCommandEvent& event);
81 void OnWizardCancel(wxWizardEvent& event);
82 void OnWizardFinished(wxWizardEvent& event);
83
84private:
85 // any class wishing to process wxWidgets events must use this macro
86 DECLARE_EVENT_TABLE()
87};
88
89// ----------------------------------------------------------------------------
90// some pages for our wizard
91// ----------------------------------------------------------------------------
92
93// this shows how to simply control the validity of the user input by just
94// overriding TransferDataFromWindow() - of course, in a real program, the
95// check wouldn't be so trivial and the data will be probably saved somewhere
96// too
97//
98// it also shows how to use a different bitmap for one of the pages
99class wxValidationPage : public wxWizardPageSimple
100{
101public:
102 wxValidationPage(wxWizard *parent) : wxWizardPageSimple(parent)
103 {
104 m_bitmap = wxBITMAP(wiztest2);
105
106 m_checkbox = new wxCheckBox(this, wxID_ANY, _T("&Check me"));
107
108 wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
109 mainSizer->Add(
110 new wxStaticText(this, wxID_ANY,
111 _T("You need to check the checkbox\n")
112 _T("below before going to the next page\n")),
113 0,
114 wxALL,
115 5
116 );
117
118 mainSizer->Add(
119 m_checkbox,
120 0, // No stretching
121 wxALL,
122 5 // Border
123 );
124 SetSizer(mainSizer);
125 mainSizer->Fit(this);
126 }
127
128 virtual bool TransferDataFromWindow()
129 {
130 if ( !m_checkbox->GetValue() )
131 {
132 wxMessageBox(_T("Check the checkbox first!"), _T("No way"),
133 wxICON_WARNING | wxOK, this);
134
135 return false;
136 }
137
138 return true;
139 }
140
141private:
142 wxCheckBox *m_checkbox;
143};
144
145// This is a more complicated example of validity checking: using events we may
146// allow to return to the previous page, but not to proceed. It also
147// demonstrates how to intercept [Cancel] button press.
148class wxRadioboxPage : public wxWizardPageSimple
149{
150public:
151 // directions in which we allow the user to proceed from this page
152 enum
153 {
154 Forward, Backward, Both, Neither
155 };
156
157 wxRadioboxPage(wxWizard *parent) : wxWizardPageSimple(parent)
158 {
159 // should correspond to the enum above
160 // static wxString choices[] = { "forward", "backward", "both", "neither" };
161 // The above syntax can cause an internal compiler error with gcc.
162 wxString choices[4];
163 choices[0] = _T("forward");
164 choices[1] = _T("backward");
165 choices[2] = _T("both");
166 choices[3] = _T("neither");
167
168 m_radio = new wxRadioBox(this, wxID_ANY, _T("Allow to proceed:"),
169 wxDefaultPosition, wxDefaultSize,
170 WXSIZEOF(choices), choices,
171 1, wxRA_SPECIFY_COLS);
172 m_radio->SetSelection(Both);
173
174 wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
175 mainSizer->Add(
176 m_radio,
177 0, // No stretching
178 wxALL,
179 5 // Border
180 );
181
182 SetSizer(mainSizer);
183 mainSizer->Fit(this);
184 }
185
186 // wizard event handlers
187 void OnWizardCancel(wxWizardEvent& event)
188 {
189 if ( wxMessageBox(_T("Do you really want to cancel?"), _T("Question"),
190 wxICON_QUESTION | wxYES_NO, this) != wxYES )
191 {
192 // not confirmed
193 event.Veto();
194 }
195 }
196
197 void OnWizardPageChanging(wxWizardEvent& event)
198 {
199 int sel = m_radio->GetSelection();
200
201 if ( sel == Both )
202 return;
203
204 if ( event.GetDirection() && sel == Forward )
205 return;
206
207 if ( !event.GetDirection() && sel == Backward )
208 return;
209
210 wxMessageBox(_T("You can't go there"), _T("Not allowed"),
211 wxICON_WARNING | wxOK, this);
212
213 event.Veto();
214 }
215
216private:
217 wxRadioBox *m_radio;
218
219 DECLARE_EVENT_TABLE()
220};
221
222// this shows how to dynamically (i.e. during run-time) arrange the page order
223class wxCheckboxPage : public wxWizardPage
224{
225public:
226 wxCheckboxPage(wxWizard *parent,
227 wxWizardPage *prev,
228 wxWizardPage *next)
229 : wxWizardPage(parent)
230 {
231 m_prev = prev;
232 m_next = next;
233
234 wxBoxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
235
236 mainSizer->Add(
237 new wxStaticText(this, wxID_ANY, _T("Try checking the box below and\n")
238 _T("then going back and clearing it")),
239 0, // No vertical stretching
240 wxALL,
241 5 // Border width
242 );
243
244 m_checkbox = new wxCheckBox(this, wxID_ANY, _T("&Skip the next page"));
245 mainSizer->Add(
246 m_checkbox,
247 0, // No vertical stretching
248 wxALL,
249 5 // Border width
250 );
251
252 static const wxChar *aszChoices[] =
253 { _T("Zeroth"), _T("First"), _T("Second"), _T("Third"), _T("Fourth"), _T("Fifth"), _T("Sixth"), _T("Seventh"), _T("Eighth"), _T("Nineth") };
254 wxString *astrChoices = new wxString[WXSIZEOF(aszChoices)];
255 unsigned int ui;
256 for ( ui = 0; ui < WXSIZEOF(aszChoices); ui++ )
257 astrChoices[ui] = aszChoices[ui];
258 m_checklistbox = new wxCheckListBox(this, wxID_ANY, wxDefaultPosition, wxSize(100,100),
259 WXSIZEOF(aszChoices), astrChoices);
260
261 mainSizer->Add(
262 m_checklistbox,
263 0, // No vertical stretching
264 wxALL,
265 5 // Border width
266 );
267
268
269 SetSizer(mainSizer);
270 mainSizer->Fit(this);
271 }
272
273 // implement wxWizardPage functions
274 virtual wxWizardPage *GetPrev() const { return m_prev; }
275 virtual wxWizardPage *GetNext() const
276 {
277 return m_checkbox->GetValue() ? m_next->GetNext() : m_next;
278 }
279
280private:
281 wxWizardPage *m_prev,
282 *m_next;
283
284 wxCheckBox *m_checkbox;
285 wxCheckListBox *m_checklistbox;
286};
287
288// ============================================================================
289// implementation
290// ============================================================================
291
292// ----------------------------------------------------------------------------
293// event tables and such
294// ----------------------------------------------------------------------------
295
296BEGIN_EVENT_TABLE(MyFrame, wxFrame)
297 EVT_MENU(Wizard_Quit, MyFrame::OnQuit)
298 EVT_MENU(Wizard_About, MyFrame::OnAbout)
299 EVT_MENU(Wizard_Run, MyFrame::OnRunWizard)
300
301 EVT_WIZARD_CANCEL(wxID_ANY, MyFrame::OnWizardCancel)
302 EVT_WIZARD_FINISHED(wxID_ANY, MyFrame::OnWizardFinished)
303END_EVENT_TABLE()
304
305BEGIN_EVENT_TABLE(wxRadioboxPage, wxWizardPageSimple)
306 EVT_WIZARD_PAGE_CHANGING(wxID_ANY, wxRadioboxPage::OnWizardPageChanging)
307 EVT_WIZARD_CANCEL(wxID_ANY, wxRadioboxPage::OnWizardCancel)
308END_EVENT_TABLE()
309
310IMPLEMENT_APP(MyApp)
311
312// ----------------------------------------------------------------------------
313// the application class
314// ----------------------------------------------------------------------------
315
316// `Main program' equivalent: the program execution "starts" here
317bool MyApp::OnInit()
318{
319 MyFrame *frame = new MyFrame(_T("wxWizard Sample"));
320
321 // and show it (the frames, unlike simple controls, are not shown when
322 // created initially)
323 frame->Show(true);
324
325 // we're done
326 return true;
327}
328
329// ----------------------------------------------------------------------------
330// MyFrame
331// ----------------------------------------------------------------------------
332
333MyFrame::MyFrame(const wxString& title)
334 : wxFrame((wxFrame *)NULL, wxID_ANY, title,
335 wxDefaultPosition, wxSize(250, 150)) // small frame
336{
337 wxMenu *menuFile = new wxMenu;
338 menuFile->Append(Wizard_Run, _T("&Run wizard...\tCtrl-R"));
339 menuFile->AppendSeparator();
340 menuFile->Append(Wizard_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
341
342 wxMenu *helpMenu = new wxMenu;
343 helpMenu->Append(Wizard_About, _T("&About...\tF1"), _T("Show about dialog"));
344
345 // now append the freshly created menu to the menu bar...
346 wxMenuBar *menuBar = new wxMenuBar();
347 menuBar->Append(menuFile, _T("&File"));
348 menuBar->Append(helpMenu, _T("&Help"));
349
350 // ... and attach this menu bar to the frame
351 SetMenuBar(menuBar);
352
353 // also create status bar which we use in OnWizardCancel
354#if wxUSE_STATUSBAR
355 CreateStatusBar();
356#endif // wxUSE_STATUSBAR
357}
358
359void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
360{
361 // true is to force the frame to close
362 Close(true);
363}
364
365void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
366{
367 wxMessageBox(_T("Demo of wxWizard class\n")
368 _T("(c) 1999, 2000 Vadim Zeitlin"),
369 _T("About wxWizard sample"), wxOK | wxICON_INFORMATION, this);
370}
371
372void MyFrame::OnRunWizard(wxCommandEvent& WXUNUSED(event))
373{
374 wxWizard *wizard = new wxWizard(this, wxID_ANY,
375 _T("Absolutely Useless Wizard"),
376 wxBITMAP(wiztest),
377 wxDefaultPosition,
378 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER);
379
380 // a wizard page may be either an object of predefined class
381 wxWizardPageSimple *page1 = new wxWizardPageSimple(wizard);
382 wxStaticText *text = new wxStaticText(page1, wxID_ANY,
383 _T("This wizard doesn't help you\nto do anything at all.\n")
384 _T("\n")
385 _T("The next pages will present you\nwith more useless controls."),
386 wxPoint(5,5)
387 );
388 wxSize size = text->GetBestSize();
389
390 // ... or a derived class
391 wxRadioboxPage *page3 = new wxRadioboxPage(wizard);
392 wxValidationPage *page4 = new wxValidationPage(wizard);
393
394 // set the page order using a convenience function - could also use
395 // SetNext/Prev directly as below
396 wxWizardPageSimple::Chain(page3, page4);
397
398 // this page is not a wxWizardPageSimple, so we use SetNext/Prev to insert
399 // it into the chain of pages
400 wxCheckboxPage *page2 = new wxCheckboxPage(wizard, page1, page3);
401 page1->SetNext(page2);
402 page3->SetPrev(page2);
403
404 wizard->SetPageSize(size);
405 wizard->GetPageAreaSizer()->Add(page1);
406
407 if ( wizard->RunWizard(page1) )
408 {
409 wxMessageBox(_T("The wizard successfully completed"), _T("That's all"),
410 wxICON_INFORMATION | wxOK);
411 }
412
413 wizard->Destroy();
414}
415
416void MyFrame::OnWizardFinished(wxWizardEvent& WXUNUSED(event))
417{
418 wxLogStatus(this, wxT("The wizard finished successfully."));
419}
420
421void MyFrame::OnWizardCancel(wxWizardEvent& WXUNUSED(event))
422{
423 wxLogStatus(this, wxT("The wizard was cancelled."));
424}