pyface.wizard.i_wizard_page module

The interface for a page in a wizard.

class pyface.wizard.i_wizard_page.IWizardPage(adaptee, default=<class 'traits.adaptation.adaptation_error.AdaptationError'>)[source]

Bases: Interface

The interface for a page in a wizard.

create_page(parent)[source]

Creates the wizard page.

dispose_page()[source]

Disposes the wizard page.

Subclasses are expected to override this method if they need to dispose of the contents of a page.

class pyface.wizard.i_wizard_page.MWizardPage[source]

Bases: HasTraits

The mixin class that contains common code for toolkit specific implementations of the IWizardPage interface.

Implements: dispose_page()

dispose_page()[source]

Disposes the wizard page.

Subclasses are expected to override this method if they need to dispose of the contents of a page.