.\" This is a wxWidgets manpage page generated from the XML docs .TH wxWizardPageSimple 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxWizardPageSimple \- A page in wizard dialog. .SH DESCRIPTION wxWizardPageSimple is the simplest possible wxWizardPage implementation: it just returns the pointers given to its constructor from GetNext() and GetPrev() functions. This makes it very easy to use the objects of this class in the wizards where the pages order is known statically - on the other hand, if this is not the case you must derive your own class from wxWizardPage instead. .SH "PARENTS" wxWizardPage wxPanel wxWindow wxEvtHandler wxObject .SH "INCLUDE FILES" wx/wizard.h .SH MEMBERS .SS wxWizardPageSimple (wxWizard* parent = NULLwxWizardPage* prev = NULLwxWizardPage* next = NULLconst wxBitmap& bitmap = wxNullBitmap) Constructor takes the previous and next pages. They may be modified later by SetPrev() or SetNext() . .SS void SetPrev (wxWizardPage* prev) Sets the previous page. .SS void SetNext (wxWizardPage* next) Sets the next page. .SS static void Chain (wxWizardPageSimple* firstwxWizardPageSimple* second) A convenience function to make the pages follow each other. Example: wxRadioboxPage *page3 = new wxRadioboxPage(wizard); wxValidationPage *page4 = new wxValidationPage(wizard); wxWizardPageSimple::Chain(page3, page4); .SH "SEE ALSO" wxWizardPage wxPanel wxWindow wxEvtHandler wxObject wxWizard wxWizard sample .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.