create_wizard(self,
size_x=600,
size_y=400,
name=None,
uf_page=None,
apply_button=True,
return_page=False)
| source code
|
Create and return the wizard window.
- Parameters:
size_x (int) - The width of the wizard.
size_y (int) - The height of the wizard.
name (str) - The name of the user function, such as 'deselect.all'.
uf_page (class) - The user function page class.
apply_button (bool) - A flag which if true will show the apply button for that page.
This will be passed to the wizard's add_page() method.
return_page (bool) - A flag which if True will cause the user function page to be
returned.
- Returns: gui.wizard.Wiz_window instance, wizard page instance
- The wizard dialog (and wizard page if the return flag is given).
|