WizardPageSimple is the simplest possible
WizardPage 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 WizardPage
instead.
Constructor takes the previous and next pages. They may be modified later by
set_prev or
set_next.
Sets the previous page.
Sets the next page.
A convenience function to make the pages follow each other.
Example:
RadioboxPage *page3 = new RadioboxPage(wizard); ValidationPage *page4 = new ValidationPage(wizard); WizardPageSimple::Chain(page3, page4);[This page automatically generated from the Textile source at 2023-06-09 00:45:36 +0000]