This commit was manufactured by cvs2svn to create tag
'DEBIAN_2_4_3_1_SARGE_v_2_4_2_4'. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/tags/DEBIAN_2_4_3_1_SARGE_v_2_4_2_4@34395 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
%% Created: 02.04.00
|
||||
%% RCS-ID: $Id$
|
||||
%% Copyright: (c) Vadim Zeitlin
|
||||
%% License: wxWindows license
|
||||
%% License: wxWidgets license
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\section{\class{wxWizard}}\label{wxwizard}
|
||||
@@ -55,6 +55,7 @@ changed (this event can be vetoed).}
|
||||
\twocolitem{{\bf EVT\_WIZARD\_CANCEL(id, func)}}{The user attempted to cancel
|
||||
the wizard (this event may also be vetoed).}
|
||||
\twocolitem{{\bf EVT\_WIZARD\_HELP(id, func)}}{The wizard help button was pressed.}
|
||||
\twocolitem{{\bf EVT\_WIZARD\_FINISHED(id, func)}}{The wizard finished button was pressed.}
|
||||
\end{twocollist}%
|
||||
|
||||
\wxheading{Extended styles}
|
||||
@@ -89,7 +90,7 @@ calls.
|
||||
Constructor which really creates the wizard -- if you use this constructor, you
|
||||
shouldn't call \helpref{Create}{wxwizardcreate}.
|
||||
|
||||
Notice that unlike almost all other wxWindows classes, there is no {\it size}
|
||||
Notice that unlike almost all other wxWidgets classes, there is no {\it size}
|
||||
parameter in wxWizard constructor because the wizard will have a predefined
|
||||
default size by default. If you want to change this, you should use the
|
||||
\helpref{SetPageSize}{wxwizardsetpagesize} function.
|
||||
@@ -115,7 +116,7 @@ by default.}
|
||||
Creates the wizard dialog. Must be called if the default constructor had been
|
||||
used to create the object.
|
||||
|
||||
Notice that unlike almost all other wxWindows classes, there is no {\it size}
|
||||
Notice that unlike almost all other wxWidgets classes, there is no {\it size}
|
||||
parameter in wxWizard constructor because the wizard will have a predefined
|
||||
default size by default. If you want to change this, you should use the
|
||||
\helpref{SetPageSize}{wxwizardsetpagesize} function.
|
||||
@@ -134,9 +135,9 @@ also \helpref{GetBitmap}{wxwizardpagegetbitmap}.}
|
||||
\docparam{pos}{The position of the dialog, it will be centered on the screen
|
||||
by default.}
|
||||
|
||||
\membersection{wxWizard::Fit}\label{wxwizardfit}
|
||||
\membersection{wxWizard::FitToPage}\label{wxwizardfittopage}
|
||||
|
||||
\func{void}{Fit}{\param{const wxWizardPage* }{firstPage}}
|
||||
\func{void}{FitToPage}{\param{const wxWizardPage* }{firstPage}}
|
||||
|
||||
Sets the page size to be big enough for all the pages accessible via the
|
||||
given {\it firstPage}, i.e. this page, its next page and so on.
|
||||
@@ -160,6 +161,32 @@ Get the current page while the wizard is running. {\tt NULL} is returned if
|
||||
|
||||
Returns the size available for the pages.
|
||||
|
||||
\membersection{wxWizard::HasNextPage}\label{wxwizardhasnextpage}
|
||||
|
||||
\func{virtual bool}{HasNextPage}{\param{wxWizardPage *}{page}}
|
||||
|
||||
Return {\tt TRUE} if this page is not the last one in the wizard. The base
|
||||
class version implements this by calling
|
||||
\helpref{page->GetNext}{wxwizardpagegetnext} but this could be undesirable if,
|
||||
for example, the pages are created on demand only.
|
||||
|
||||
\wxheading{See also}
|
||||
|
||||
\helpref{HasPrevPage}{wxwizardhasprevpage}
|
||||
|
||||
\membersection{wxWizard::HasPrevPage}\label{wxwizardhasprevpage}
|
||||
|
||||
\func{virtual bool}{HasPrevPage}{\param{wxWizardPage *}{page}}
|
||||
|
||||
Return {\tt TRUE} if this page is not the last one in the wizard. The base
|
||||
class version implements this by calling
|
||||
\helpref{page->GetPrev}{wxwizardpagegetprev} but this could be undesirable if,
|
||||
for example, the pages are created on demand only.
|
||||
|
||||
\wxheading{See also}
|
||||
|
||||
\helpref{HasNextPage}{wxwizardhasnextpage}
|
||||
|
||||
\membersection{wxWizard::RunWizard}\label{wxwizardrunwizard}
|
||||
|
||||
\func{bool}{RunWizard}{\param{wxWizardPage* }{firstPage}}
|
||||
|
Reference in New Issue
Block a user