| Class implementing a dialog to show the found files to the user.    The found files are displayed in a listview.
    Pressing the Add Allbutton adds all files to the current project,
    theAdd Selectedbutton adds only the selected files and theCancelbutton cancels the operation. 
        
            | Methods |  |  
        | __init__ getSelection
 handleAll
 handleSelected
 isSelected
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        files,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            fileslist of files, that have been found for addition (QStringList)            parentparent widget of this dialog (QWidget)            namename of this dialog (string or QString)            modalflag to indicate a modal dialog (boolean)            flwindow flags |  
            |  | getSelection |  
        | 
getSelection ( self )
 Public method to return the selected items.        Returns            list of selected files (QStringList) |  
            |  | handleAll |  
        | 
handleAll ( self )
 Private slot to handle the Add Allbutton press.        Returns            always 1 (int) |  
            |  | handleSelected |  
        | 
handleSelected ( self )
 Private slot to handle the Add Selectedbutton press.        Returns            always 2 (int) |  
            |  | isSelected |  
        | 
isSelected ( self,  index )
 Public method telling whether an item is selected in the listbox.        Arguments
            indexindex of the item to check         Returns            boolean indicating the selection status of the item |  |