]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/wizard.tex
added wxSize::IncTo/DecTo
[wxWidgets.git] / docs / latex / wx / wizard.tex
index 5bb32f817038922853c6a740c5bc0bfdf0238d21..6ebb199d02e069e9f9db5984efb9a64e97bad625 100644 (file)
@@ -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}
@@ -136,7 +137,7 @@ by default.}
 
 \membersection{wxWizard::FitToPage}\label{wxwizardfittopage}
 
-\func{void}{FittoPage}{\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.
@@ -164,7 +165,7 @@ Returns the size available for the pages.
 
 \func{virtual bool}{HasNextPage}{\param{wxWizardPage *}{page}}
 
-Return {\tt TRUE} if this page is not the last one in the wizard. The base
+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.
@@ -177,7 +178,7 @@ for example, the pages are created on demand only.
 
 \func{virtual bool}{HasPrevPage}{\param{wxWizardPage *}{page}}
 
-Return {\tt TRUE} if this page is not the last one in the wizard. The base
+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.
@@ -190,8 +191,8 @@ for example, the pages are created on demand only.
 
 \func{bool}{RunWizard}{\param{wxWizardPage* }{firstPage}}
 
-Executes the wizard starting from the given page, returns {\tt TRUE} if it was
-successfully finished or {\tt FALSE} if user cancelled it. The {\it firstPage} 
+Executes the wizard starting from the given page, returns {\tt true} if it was
+successfully finished or {\tt false} if user cancelled it. The {\it firstPage} 
 can not be {\tt NULL}.
 
 \membersection{wxWizard::SetPageSize}\label{wxwizardsetpagesize}