The wizard.
|
__init__(self,
parent=None,
size_x=400,
size_y=400,
title='',
border=10,
style=wx.DEFAULT_DIALOG_STYLE)
Set up the window. |
source code
|
|
|
|
|
_build_buttons(self)
Construct the buttons for all pages of the wizard. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
_next_fn(self)
Standard function for setting the next page to the one directly next
in the sequence. |
source code
|
|
|
|
|
_seq_loop(self)
Loop over the sequence in the forwards direction. |
source code
|
|
|
|
|
Destroy(self)
Override the default wx.Dialog.Destroy() method. |
source code
|
|
int
|
add_page(self,
panel,
apply_button=True,
skip_button=False,
exec_on_next=True,
proceed_on_error=True,
uf_flush=False)
Add a new page to the wizard. |
source code
|
|
|
|
Wiz_page instance.
|
|
|
|
bool or None
|
|
|
|
|
setup_page(self,
page=None,
**kargs)
Allow a specified user function page to be remotely set up. |
source code
|
|
|
_size_button = 100, 33
|
|
ICON_APPLY = fetch_icon('oxygen.actions.dialog-ok-apply', "22x...
|
|
ICON_BACK = fetch_icon('oxygen.actions.go-previous-view', "22x...
|
|
ICON_CANCEL = fetch_icon('oxygen.actions.dialog-cancel', "22x22")
|
|
ICON_FINISH = fetch_icon('oxygen.actions.dialog-ok', "22x22")
|
|
ICON_NEXT = fetch_icon('oxygen.actions.go-next-view', "22x22")
|
|
ICON_OK = fetch_icon('oxygen.actions.dialog-ok', "22x22")
|
|
ICON_SKIP = fetch_icon('oxygen.actions.arrow-right-double-rela...
|
|
TEXT_APPLY = " Apply"
|
|
TEXT_BACK = " Back"
|
|
TEXT_CANCEL = " Cancel"
|
|
TEXT_FINISH = " Finish"
|
|
TEXT_NEXT = " Next"
|
|
TEXT_OK = " OK"
|
|
TEXT_SKIP = " Skip"
|