wx.wizard.WizardPageSimple

Inheritance diagram for wx.wizard.WizardPageSimple:



Description

wx.wizard.WizardPageSimple is the simplest possible wx.wizard.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 wx.wizard.WizardPage instead.

See also

wx.wizard.Wizard

Methods Summary

Class API

Methods

__init__(parent, prev=None, next=None, bitmap=wx.NullBitmap, resource=None)

Constructor takes the previous and next pages. They may be modified later by SetPrev or SetNext.

Parameters:


Returns:

wx.wizard.WizardPageSimple


Chain(first, second)

A convenience function to make the pages follow each other.

Parameters:


SetNext(next)

Sets the next page.

Parameters:


SetPrev(prev)

Sets the previous page.

Parameters: