Class k.u.w.WizardStep:

Part of kiwi.ui.wizard
This class must be inherited by the steps
Function__init__Undocumented
Functionnext_stepUndocumented
Functionpost_init
A virtual method that must be defined on child when it's
Functionhas_next_stepUndocumented
Functionhas_previous_stepUndocumented
Functionprevious_stepUndocumented
Functionvalidate_step
A hook called always when changing steps. If it returns False
def __init__(self, previous=None, header=None):
Undocumented
def next_step(self):
Undocumented
def post_init(self):
A virtual method that must be defined on child when it's necessary. This method will be called right after the change_step method on PluggableWizard is concluded for the current step.
def has_next_step(self):
Undocumented
def has_previous_step(self):
Undocumented
def previous_step(self):
Undocumented
def validate_step(self):
A hook called always when changing steps. If it returns False we can not go forward.