class documentation

class OutputPage(AssistantPage): (source)

View In Hierarchy

Assistant page allowing to select output file or folder
Method __init__ Constructor @param assistant: the Assistant dialog
Method init_uistate No summary
Method on_output_changed Undocumented
Method save_uistate This method is called before leaving the page. It should be used to update uitstate based on in put widgets.
Method set_show_file Undocumented
Class Variable title Undocumented

Inherited from AssistantPage:

Method add_form Convenience method to construct a form with input widgets and add them to the dialog. See InputForm.add_inputs() for details.
Method check_input_valid Check overall valid stat of the page. Called if the valid state if the form is changed. And should be called for any other custom widgets in the page.
Method get_input_valid Get valid state for the page @returns: True if all input is valid
Class Variable __gsignals__ Undocumented
Instance Variable assistant the dialog this page belongs to
Instance Variable form an InputForm when add_form() was used
Instance Variable uistate dict shared between all pages in the same dialog, use this to set values giving the interface state.
Instance Variable _input_valid Undocumented
def __init__(self, assistant): (source)
Constructor
Parameters
assistantthe Assistant dialog
def init_uistate(self): (source)
This method is called when this page is shown in the dialog. Should be used to update uistate according to input of other pages. Keep in mind that uistate can have changed since the constructor was called - even when this is the first page, the dialog has a "Back" button.
Unknown Field: implementation
must be implementated by all subclasseses
def on_output_changed(self, o): (source)

Undocumented

def save_uistate(self): (source)
This method is called before leaving the page. It should be used to update uitstate based on in put widgets.
Unknown Field: implementation
must be implementated by all subclasseses that do not update uistate in real time
def set_show_file(self, show_file): (source)

Undocumented