| Class implementing the Subversion command dialog.    It implements a dialog that is used to enter an
    arbitrary subversion command. It asks the user to enter
    the commandline parameters and the working directory. 
        
            | Methods |  |  
        | __init__ enableOkButton
 getData
 handleDir
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        argvList,
        wdList,
        ppath,
        parent=None,
        )
Constructor        Arguments
            argvListhistory list of commandline arguments (QStringList)            wdListhistory list of working directories (QStringList)            ppathpathname of the project directory (string)            parentparent widget of this dialog (QWidget) |  
            |  | enableOkButton |  
        | 
enableOkButton ( self,  text )
 Private method used to enable/disable the OK-button.        Arguments
            textignored |  
            |  | getData |  
        | 
getData ( self )
 Public method to retrieve the data entered into this dialog.        Returns            a tuple of argv, workdir |  
            |  | handleDir |  
        | 
handleDir ( self )
 Private method used to open a directory selection dialog. |  |