]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/wizard.tex
use 'neither ... nor ...' instead of 'neither ... or ...' in wxFinite documentation
[wxWidgets.git] / docs / latex / wx / wizard.tex
CommitLineData
f6bcfd97
BP
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: wizard.tex
3%% Purpose: wxWizard class documentation
4%% Author: Vadim Zeitlin
07f20d9a 5%% Modified by: Robert Vazan (sizers)
f6bcfd97
BP
6%% Created: 02.04.00
7%% RCS-ID: $Id$
8%% Copyright: (c) Vadim Zeitlin
8795498c 9%% License: wxWindows license
f6bcfd97
BP
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxWizard}}\label{wxwizard}
13
14wxWizard is the central class for implementing `wizard-like' dialogs. These
027aa6fa
JS
15dialogs are mostly familiar to Windows users and are nothing other than a
16sequence of `pages', each displayed inside a dialog which has the
17buttons to navigate to the next (and previous) pages.
f6bcfd97
BP
18
19The wizards are typically used to decompose a complex dialog into several
20simple steps and are mainly useful to the novice users, hence it is important
21to keep them as simple as possible.
22
027aa6fa
JS
23To show a wizard dialog, you must first create an instance of the wxWizard class
24using either the non-default constructor or a default one followed by call to the
750cefbc
VZ
25\helpref{Create}{wxwizardcreate} function. Then you should add all pages you
26want the wizard to show and call \helpref{RunWizard}{wxwizardrunwizard}.
b18f44e2 27Finally, don't forget to call {\tt wizard->Destroy()}, otherwise your application will hang on exit due to an undestroyed window.
f6bcfd97
BP
28
29\wxheading{Derived from}
30
31\helpref{wxDialog}{wxdialog}\\
32\helpref{wxPanel}{wxpanel}\\
33\helpref{wxWindow}{wxwindow}\\
34\helpref{wxEvtHandler}{wxevthandler}\\
35\helpref{wxObject}{wxobject}
36
37\wxheading{Include files}
38
39<wx/wizard.h>
40
41\wxheading{Event table macros}
42
43To process input from a wizard dialog, use these event handler macros to
44direct input to member functions that take a
45\helpref{wxWizardEvent}{wxwizardevent} argument. For some events,
46\helpref{Veto()}{wxnotifyeventveto} can be called to prevent the event from
47happening.
48
49\twocolwidtha{7cm}
50\begin{twocollist}\itemsep=2pt
027aa6fa
JS
51\twocolitem{{\bf EVT\_WIZARD\_PAGE\_CHANGED(id, func)}}{The page has just been
52changed (this event cannot be vetoed).}
f6bcfd97
BP
53\twocolitem{{\bf EVT\_WIZARD\_PAGE\_CHANGING(id, func)}}{The page is being
54changed (this event can be vetoed).}
55\twocolitem{{\bf EVT\_WIZARD\_CANCEL(id, func)}}{The user attempted to cancel
56the wizard (this event may also be vetoed).}
f80bf901 57\twocolitem{{\bf EVT\_WIZARD\_HELP(id, func)}}{The wizard help button was pressed.}
1d30a0a1 58\twocolitem{{\bf EVT\_WIZARD\_FINISHED(id, func)}}{The wizard finished button was pressed.}
d2c2afc9 59\end{twocollist}
f6bcfd97 60
213ba43b
JS
61\wxheading{Extended styles}
62
63Use the \helpref{wxWindow::SetExtraStyle}{wxwindowsetextrastyle} function to set the following
64style. You will need to use two-step construction (use the default constructor, call {\bf SetExtraStyle}, then call {\bf Create}).
65
66\twocolwidtha{5cm}%
67\begin{twocollist}\itemsep=0pt
68\twocolitem{\windowstyle{wxWIZARD\_EX\_HELPBUTTON}}{Shows a Help button using wxID\_HELP.}
69\end{twocollist}
70
71See also \helpref{wxDialog}{wxdialog} for other extended styles.
72
f6bcfd97
BP
73\wxheading{See also}
74
75\helpref{wxWizardEvent}{wxwizardevent}, \helpref{wxWizardPage}{wxwizardpage}, \helpref{wxWizard sample}{samplewizard}
76
77\latexignore{\rtfignore{\wxheading{Members}}}
78
213ba43b
JS
79\membersection{wxWizard::wxWizard}\label{wxwizardctor}
80
81\func{}{wxWizard}{\void}
82
750cefbc
VZ
83Default constructor. Use this if you wish to derive from wxWizard and then call
84\helpref{Create}{wxwizardcreate}, for example if you wish to set an extra style
85with \helpref{wxWindow::SetExtraStyle}{wxwindowsetextrastyle} between the two
86calls.
213ba43b 87
c0d26c0f 88\func{}{wxWizard}{\param{wxWindow* }{parent}, \param{int }{id = -1}, \param{const wxString\& }{title = wxEmptyString}, \param{const wxBitmap\& }{bitmap = wxNullBitmap}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{long }{style = wxDEFAULT\_DIALOG\_STYLE}}
213ba43b 89
750cefbc
VZ
90Constructor which really creates the wizard -- if you use this constructor, you
91shouldn't call \helpref{Create}{wxwizardcreate}.
213ba43b 92
fc2171bd 93Notice that unlike almost all other wxWidgets classes, there is no {\it size}
027aa6fa 94parameter in the wxWizard constructor because the wizard will have a predefined
213ba43b 95default size by default. If you want to change this, you should use the
07f20d9a 96\helpref{GetPageAreaSizer}{wxwizardgetpageareasizer} function.
213ba43b
JS
97
98\wxheading{Parameters}
99
100\docparam{parent}{The parent window, may be NULL.}
101
102\docparam{id}{The id of the dialog, will usually be just $-1$.}
103
104\docparam{title}{The title of the dialog.}
105
106\docparam{bitmap}{The default bitmap used in the left side of the wizard. See
107also \helpref{GetBitmap}{wxwizardpagegetbitmap}.}
108
109\docparam{pos}{The position of the dialog, it will be centered on the screen
110by default.}
111
07f20d9a
VZ
112\docparam{style}{Window style is passed to wxDialog.}
113
114
f6bcfd97
BP
115\membersection{wxWizard::Create}\label{wxwizardcreate}
116
c0d26c0f 117\func{bool}{Create}{\param{wxWindow* }{parent}, \param{int }{id = -1}, \param{const wxString\& }{title = wxEmptyString}, \param{const wxBitmap\& }{bitmap = wxNullBitmap}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{long }{style = wxDEFAULT\_DIALOG\_STYLE}}
f6bcfd97 118
750cefbc
VZ
119Creates the wizard dialog. Must be called if the default constructor had been
120used to create the object.
f6bcfd97 121
fc2171bd 122Notice that unlike almost all other wxWidgets classes, there is no {\it size}
027aa6fa 123parameter in the wxWizard constructor because the wizard will have a predefined
f6bcfd97 124default size by default. If you want to change this, you should use the
07f20d9a 125\helpref{GetPageAreaSizer}{wxwizardgetpageareasizer} function.
f6bcfd97
BP
126
127\wxheading{Parameters}
128
129\docparam{parent}{The parent window, may be NULL.}
130
131\docparam{id}{The id of the dialog, will usually be just $-1$.}
132
133\docparam{title}{The title of the dialog.}
134
135\docparam{bitmap}{The default bitmap used in the left side of the wizard. See
136also \helpref{GetBitmap}{wxwizardpagegetbitmap}.}
137
138\docparam{pos}{The position of the dialog, it will be centered on the screen
139by default.}
140
07f20d9a
VZ
141\docparam{style}{Window style is passed to wxDialog.}
142
143
2b5f62a0 144\membersection{wxWizard::FitToPage}\label{wxwizardfittopage}
f6bcfd97 145
384c9653 146\func{void}{FitToPage}{\param{const wxWizardPage* }{firstPage}}
f6bcfd97 147
07f20d9a
VZ
148This method is obsolete, use
149\helpref{GetPageAreaSizer}{wxwizardgetpageareasizer} instead.
150
c73b439f
VZ
151Sets the page size to be big enough for all the pages accessible via the
152given {\it firstPage}, i.e. this page, its next page and so on.
153
154This method may be called more than once and it will only change the page size
155if the size required by the new page is bigger than the previously set one.
027aa6fa
JS
156This is useful if the decision about which pages to show is taken during
157run-time, as in this case, the wizard won't be able to get to all pages starting
c73b439f 158from a single one and you should call {\it Fit} separately for the others.
f6bcfd97 159
f49fd6d0
JS
160\membersection{wxWizard::GetBitmap}\label{wxwizardgetbitmap}
161
162\constfunc{const wxBitmap\&}{GetBitmap}{\void}
163
164Returns the bitmap used for the wizard.
07f20d9a 165
f6bcfd97
BP
166\membersection{wxWizard::GetCurrentPage}\label{wxwizardgetcurrentpage}
167
168\constfunc{wxWizardPage*}{GetCurrentPage}{\void}
169
170Get the current page while the wizard is running. {\tt NULL} is returned if
171\helpref{RunWizard()}{wxwizardrunwizard} is not being executed now.
172
07f20d9a
VZ
173
174\membersection{wxWizard::GetPageAreaSizer}\label{wxwizardgetpageareasizer}
175
176\constfunc{virtual wxSizer*}{GetPageAreaSizer}{\void}
177
027aa6fa
JS
178Returns pointer to page area sizer. The wizard is laid out using sizers and
179the page area sizer is the place-holder for the pages. All pages are resized before
07f20d9a
VZ
180being shown to match the wizard page area.
181
027aa6fa 182Page area sizer has a minimal size that is the maximum of several values. First,
07f20d9a
VZ
183all pages (or other objects) added to the sizer. Second, all pages reachable
184by repeatedly applying
185\helpref{wxWizardPage::GetNext}{wxwizardpagegetnext} to
186any page inserted into the sizer. Third,
027aa6fa 187the minimal size specified using \helpref{SetPageSize}{wxwizardsetpagesize} and
07f20d9a 188\helpref{FitToPage}{wxwizardfittopage}. Fourth, the total wizard height may
dbd94b75 189be increased to accommodate the bitmap height. Fifth and finally, wizards are
027aa6fa 190never smaller than some built-in minimal size to avoid wizards that are too small.
07f20d9a 191
027aa6fa
JS
192The caller can use \helpref{wxSizer::SetMinSize}{wxsizersetminsize} to enlarge it
193beyond the minimal size. If {\tt wxRESIZE\_BORDER} was passed to constructor, user
194can resize wizard and consequently the page area (but not make it smaller than the
07f20d9a
VZ
195minimal size).
196
027aa6fa
JS
197It is recommended to add the first page to the page area sizer. For simple wizards,
198this will enlarge the wizard to fit the biggest page. For non-linear wizards,
199the first page of every separate chain should be added. Caller-specified size
07f20d9a
VZ
200can be accomplished using \helpref{wxSizer::SetMinSize}{wxsizersetminsize}.
201
027aa6fa 202Adding pages to the page area sizer affects the default border width around page
07f20d9a
VZ
203area that can be altered with \helpref{SetBorder}{wxwizardsetborder}.
204
205
f6bcfd97
BP
206\membersection{wxWizard::GetPageSize}\label{wxwizardgetpagesize}
207
208\constfunc{wxSize}{GetPageSize}{\void}
209
210Returns the size available for the pages.
211
07f20d9a 212
2b5f62a0
VZ
213\membersection{wxWizard::HasNextPage}\label{wxwizardhasnextpage}
214
215\func{virtual bool}{HasNextPage}{\param{wxWizardPage *}{page}}
216
cc81d32f 217Return {\tt true} if this page is not the last one in the wizard. The base
2b5f62a0
VZ
218class version implements this by calling
219\helpref{page->GetNext}{wxwizardpagegetnext} but this could be undesirable if,
220for example, the pages are created on demand only.
221
222\wxheading{See also}
223
224\helpref{HasPrevPage}{wxwizardhasprevpage}
225
07f20d9a 226
2b5f62a0
VZ
227\membersection{wxWizard::HasPrevPage}\label{wxwizardhasprevpage}
228
229\func{virtual bool}{HasPrevPage}{\param{wxWizardPage *}{page}}
230
027aa6fa 231Returns {\tt true} if this page is not the last one in the wizard. The base
2b5f62a0
VZ
232class version implements this by calling
233\helpref{page->GetPrev}{wxwizardpagegetprev} but this could be undesirable if,
234for example, the pages are created on demand only.
235
236\wxheading{See also}
237
238\helpref{HasNextPage}{wxwizardhasnextpage}
239
07f20d9a 240
c73b439f
VZ
241\membersection{wxWizard::RunWizard}\label{wxwizardrunwizard}
242
243\func{bool}{RunWizard}{\param{wxWizardPage* }{firstPage}}
244
027aa6fa 245Executes the wizard starting from the given page, returning {\tt true} if it was
cc81d32f 246successfully finished or {\tt false} if user cancelled it. The {\it firstPage}
c73b439f
VZ
247can not be {\tt NULL}.
248
f49fd6d0
JS
249\membersection{wxWizard::SetBitmap}\label{wxwizardsetbitmap}
250
251\func{void}{SetBitmap}{\param{const wxBitmap\& }{bitmap}}
252
253Sets the bitmap used for the wizard.
07f20d9a 254
f6bcfd97
BP
255\membersection{wxWizard::SetPageSize}\label{wxwizardsetpagesize}
256
257\func{void}{SetPageSize}{\param{const wxSize\& }{sizePage}}
258
07f20d9a
VZ
259This method is obsolete, use
260\helpref{GetPageAreaSizer}{wxwizardgetpageareasizer} instead.
261
f6bcfd97
BP
262Sets the minimal size to be made available for the wizard pages. The wizard
263will take into account the size of the bitmap (if any) itself. Also, the
264wizard will never be smaller than the default size.
265
027aa6fa 266The recommended way to use this function is to lay out all wizard pages using
f6bcfd97
BP
267the sizers (even though the wizard is not resizeable) and then use
268\helpref{wxSizer::CalcMin}{wxsizercalcmin} in a loop to calculate the maximum
269of minimal sizes of the pages and pass it to SetPageSize().
270
07f20d9a
VZ
271
272\membersection{wxWizard::SetBorder}\label{wxwizardsetborder}
273
274\func{void}{SetBorder}{\param{int }{border}}
275
276Sets width of border around page area. Default is zero. For backward
277compatibility, if there are no pages in
027aa6fa 278\helpref{GetPageAreaSizer}{wxwizardgetpageareasizer}, the default is $5$ pixels.
07f20d9a 279
027aa6fa
JS
280If there is a five point border around all controls in a page and the border around
281page area is left as zero, a five point white space along all dialog borders
282will be added to the control border in order to space page controls ten points from the dialog
07f20d9a
VZ
283border and non-page controls.
284