| Class implementing a dialog to enter options used to start a project in the VCS. 
        
            | Methods |  |  
        | __init__ getData
 handleComboBox
 handleDirectory
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        project,
        archiveName,
        archiveEditable=0,
        parent=None,
        )
Constructor        Arguments
            projectreference to the project object            archiveNamename of the archive (string or QString)            archiveEditableflag indicating that the archives name may be changed
                (boolean)            parentparent widget (QWidget) |  
            |  | getData |  
        | 
getData ( self )
 Public slot to retrieve the data entered into the dialog.        Returns             a tuple of 6 strings and one boolean (vcs system, vcs directory,
            archive name, vendor label, log message, release label,
            command options). |  
            |  | handleComboBox |  
        | 
handleComboBox ( self,  vcsSystem )
 Private slot to set the vcs root directory entry.        Arguments
            vcsSystemname of the VCS system |  
            |  | handleDirectory |  
        | 
handleDirectory ( self )
 Private slot to display a directory selection dialog. |  |