1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWizard class: a GUI control presenting the user with a
4 // sequence of dialogs which allows to simply perform some task
5 // Author: Vadim Zeitlin (partly based on work by Ron Kuris and Kevin B.
7 // Modified by: Robert Cavanaugh
8 // Added capability to use .WXR resource files in Wizard pages
9 // Added wxWIZARD_HELP event
10 // Robert Vazan (sizers)
13 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
14 // Licence: wxWindows licence
15 ///////////////////////////////////////////////////////////////////////////////
22 // ----------------------------------------------------------------------------
23 // headers and other simple declarations
24 // ----------------------------------------------------------------------------
27 #include "wx/dialog.h" // the base class
28 #include "wx/panel.h" // ditto
30 #include "wx/event.h" // wxEVT_XXX constants
33 #include "wx/bitmap.h"
35 // Extended style to specify a help button
36 #define wxWIZARD_EX_HELPBUTTON 0x00000010
38 // forward declarations
39 class WXDLLIMPEXP_ADV wxWizard
;
41 // ----------------------------------------------------------------------------
42 // wxWizardPage is one of the wizards screen: it must know what are the
43 // following and preceding pages (which may be NULL for the first/last page).
45 // Other than GetNext/Prev() functions, wxWizardPage is just a panel and may be
46 // used as such (i.e. controls may be placed directly on it &c).
47 // ----------------------------------------------------------------------------
49 class WXDLLIMPEXP_ADV wxWizardPage
: public wxPanel
52 wxWizardPage() { Init(); }
54 // ctor accepts an optional bitmap which will be used for this page instead
55 // of the default one for this wizard (should be of the same size). Notice
56 // that no other parameters are needed because the wizard will resize and
57 // reposition the page anyhow
58 wxWizardPage(wxWizard
*parent
,
59 const wxBitmap
& bitmap
= wxNullBitmap
,
60 const wxChar
* resource
= NULL
);
62 bool Create(wxWizard
*parent
,
63 const wxBitmap
& bitmap
= wxNullBitmap
,
64 const wxChar
* resource
= NULL
);
66 // these functions are used by the wizard to show another page when the
67 // user chooses "Back" or "Next" button
68 virtual wxWizardPage
*GetPrev() const = 0;
69 virtual wxWizardPage
*GetNext() const = 0;
71 // default GetBitmap() will just return m_bitmap which is ok in 99% of
72 // cases - override this method if you want to create the bitmap to be used
73 // dynamically or to do something even more fancy. It's ok to return
74 // wxNullBitmap from here - the default one will be used then.
75 virtual wxBitmap
GetBitmap() const { return m_bitmap
; }
77 /// Override the base functions to allow a validator to be assigned to this page.
78 bool TransferDataToWindow()
80 return GetValidator() ? GetValidator()->TransferToWindow() : wxPanel::TransferDataToWindow();
82 bool TransferDataFromWindow()
84 return GetValidator() ? GetValidator()->TransferFromWindow() : wxPanel::TransferDataFromWindow();
88 return GetValidator() ? GetValidator()->Validate(this) : wxPanel::Validate();
92 // common part of ctors:
98 DECLARE_DYNAMIC_CLASS_NO_COPY(wxWizardPage
)
101 // ----------------------------------------------------------------------------
102 // wxWizardPageSimple just returns the pointers given to the ctor and is useful
103 // to create a simple wizard where the order of pages never changes.
105 // OTOH, it is also possible to dynamicly decide which page to return (i.e.
106 // depending on the user's choices) as the wizard sample shows - in order to do
107 // this, you must derive from wxWizardPage directly.
108 // ----------------------------------------------------------------------------
110 class WXDLLIMPEXP_ADV wxWizardPageSimple
: public wxWizardPage
113 wxWizardPageSimple() { Init(); }
115 // ctor takes the previous and next pages
116 wxWizardPageSimple(wxWizard
*parent
,
117 wxWizardPage
*prev
= (wxWizardPage
*)NULL
,
118 wxWizardPage
*next
= (wxWizardPage
*)NULL
,
119 const wxBitmap
& bitmap
= wxNullBitmap
,
120 const wxChar
* resource
= NULL
)
122 Create(parent
, prev
, next
, bitmap
, resource
);
125 bool Create(wxWizard
*parent
= NULL
, // let it be default ctor too
126 wxWizardPage
*prev
= (wxWizardPage
*)NULL
,
127 wxWizardPage
*next
= (wxWizardPage
*)NULL
,
128 const wxBitmap
& bitmap
= wxNullBitmap
,
129 const wxChar
* resource
= NULL
)
133 return wxWizardPage::Create(parent
, bitmap
, resource
);
136 // the pointers may be also set later - but before starting the wizard
137 void SetPrev(wxWizardPage
*prev
) { m_prev
= prev
; }
138 void SetNext(wxWizardPage
*next
) { m_next
= next
; }
140 // a convenience function to make the pages follow each other
141 static void Chain(wxWizardPageSimple
*first
, wxWizardPageSimple
*second
)
143 wxCHECK_RET( first
&& second
,
144 wxT("NULL passed to wxWizardPageSimple::Chain") );
146 first
->SetNext(second
);
147 second
->SetPrev(first
);
150 // base class pure virtuals
151 virtual wxWizardPage
*GetPrev() const;
152 virtual wxWizardPage
*GetNext() const;
155 // common part of ctors:
158 m_prev
= m_next
= NULL
;
161 // pointers are private, the derived classes shouldn't mess with them -
162 // just derive from wxWizardPage directly to implement different behaviour
163 wxWizardPage
*m_prev
,
166 DECLARE_DYNAMIC_CLASS_NO_COPY(wxWizardPageSimple
)
169 // ----------------------------------------------------------------------------
171 // ----------------------------------------------------------------------------
173 class WXDLLIMPEXP_ADV wxWizardBase
: public wxDialog
177 The derived class (i.e. the real wxWizard) has a ctor and Create()
178 function taking the following arguments:
180 wxWizard(wxWindow *parent,
182 const wxString& title = wxEmptyString,
183 const wxBitmap& bitmap = wxNullBitmap,
184 const wxPoint& pos = wxDefaultPosition,
185 long style = wxDEFAULT_DIALOG_STYLE);
189 // executes the wizard starting from the given page, returns TRUE if it was
190 // successfully finished, FALSE if user cancelled it
191 virtual bool RunWizard(wxWizardPage
*firstPage
) = 0;
193 // get the current page (NULL if RunWizard() isn't running)
194 virtual wxWizardPage
*GetCurrentPage() const = 0;
196 // set the min size which should be available for the pages: a
197 // wizard will take into account the size of the bitmap (if any)
198 // itself and will never be less than some predefined fixed size
199 virtual void SetPageSize(const wxSize
& size
) = 0;
201 // get the size available for the page
202 virtual wxSize
GetPageSize() const = 0;
204 // set the best size for the wizard, i.e. make it big enough to contain all
205 // of the pages starting from the given one
207 // this function may be called several times and possible with different
208 // pages in which case it will only increase the page size if needed (this
209 // may be useful if not all pages are accessible from the first one by
211 virtual void FitToPage(const wxWizardPage
*firstPage
) = 0;
213 // Adding pages to page area sizer enlarges wizard
214 virtual wxSizer
*GetPageAreaSizer() const = 0;
216 // Set border around page area. Default is 0 if you add at least one
217 // page to GetPageAreaSizer and 5 if you don't.
218 virtual void SetBorder(int border
) = 0;
220 // wxWizard should be created using "new wxWizard" now, not with Create()
221 #if WXWIN_COMPATIBILITY_2_2
222 static wxWizard
*Create(wxWindow
*parent
,
224 const wxString
& title
= wxEmptyString
,
225 const wxBitmap
& bitmap
= wxNullBitmap
,
226 const wxPoint
& pos
= wxDefaultPosition
,
227 const wxSize
& size
= wxDefaultSize
);
228 #endif // WXWIN_COMPATIBILITY_2_2
230 // the methods below may be overridden by the derived classes to provide
231 // custom logic for determining the pages order
233 virtual bool HasNextPage(wxWizardPage
*page
)
234 { return page
->GetNext() != NULL
; }
236 virtual bool HasPrevPage(wxWizardPage
*page
)
237 { return page
->GetPrev() != NULL
; }
239 /// Override these functions to stop InitDialog from calling TransferDataToWindow
240 /// for _all_ pages when the wizard starts. Instead 'ShowPage' will call
241 /// TransferDataToWindow for the first page only.
242 bool TransferDataToWindow() { return true; }
243 bool TransferDataFromWindow() { return true; }
244 bool Validate() { return true; }
247 DECLARE_NO_COPY_CLASS(wxWizardBase
)
250 // include the real class declaration
251 #include "wx/generic/wizard.h"
253 // ----------------------------------------------------------------------------
254 // wxWizardEvent class represents an event generated by the wizard: this event
255 // is first sent to the page itself and, if not processed there, goes up the
256 // window hierarchy as usual
257 // ----------------------------------------------------------------------------
259 class WXDLLIMPEXP_ADV wxWizardEvent
: public wxNotifyEvent
262 wxWizardEvent(wxEventType type
= wxEVT_NULL
,
264 bool direction
= TRUE
,
265 wxWizardPage
* page
= NULL
);
267 // for EVT_WIZARD_PAGE_CHANGING, return TRUE if we're going forward or
268 // FALSE otherwise and for EVT_WIZARD_PAGE_CHANGED return TRUE if we came
269 // from the previous page and FALSE if we returned from the next one
270 // (this function doesn't make sense for CANCEL events)
271 bool GetDirection() const { return m_direction
; }
273 wxWizardPage
* GetPage() const { return m_page
; }
277 wxWizardPage
* m_page
;
279 DECLARE_DYNAMIC_CLASS(wxWizardEvent
)
280 DECLARE_NO_COPY_CLASS(wxWizardEvent
)
283 // ----------------------------------------------------------------------------
284 // macros for handling wxWizardEvents
285 // ----------------------------------------------------------------------------
287 BEGIN_DECLARE_EVENT_TYPES()
288 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV
, wxEVT_WIZARD_PAGE_CHANGED
, 900)
289 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV
, wxEVT_WIZARD_PAGE_CHANGING
, 901)
290 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV
, wxEVT_WIZARD_CANCEL
, 902)
291 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV
, wxEVT_WIZARD_HELP
, 903)
292 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV
, wxEVT_WIZARD_FINISHED
, 903)
293 END_DECLARE_EVENT_TYPES()
295 typedef void (wxEvtHandler::*wxWizardEventFunction
)(wxWizardEvent
&);
297 // notifies that the page has just been changed (can't be vetoed)
298 #define EVT_WIZARD_PAGE_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_PAGE_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
300 // the user pressed "<Back" or "Next>" button and the page is going to be
301 // changed - unless the event handler vetoes the event
302 #define EVT_WIZARD_PAGE_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_PAGE_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
304 // the user pressed "Cancel" button and the wizard is going to be dismissed -
305 // unless the event handler vetoes the event
306 #define EVT_WIZARD_CANCEL(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_CANCEL, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
308 // the user pressed "Finish" button and the wizard is going to be dismissed -
309 #define EVT_WIZARD_FINISHED(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_FINISHED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
311 // the user pressed "Help" button
312 #define EVT_WIZARD_HELP(id, fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_WIZARD_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxWizardEventFunction) & fn, (wxObject *)NULL),
314 #endif // wxUSE_WIZARDDLG
316 #endif // _WX_WIZARD_H_