| Class implementing a dialog for loading a script. 
        
            | Methods |  |  
        | __init__ getData
 handleFileSelection
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            parentparent of this dialog (QWidget)            namename of this dialog (string or QString)            modalflag indicating a modal window (boolean)            flwindow flags |  
            |  | getData |  
        | 
getData ( self )
 Public method to retrieve the data entered into the dialog.        Returns            tuple with the collected data (script name, script file,
            execute flag, delete flag) (string, string, boolean, boolean) |  
            |  | handleFileSelection |  
        | 
handleFileSelection ( self )
 Private slot to handle the script file selection. |  |