| Class implementing the variables filter dialog.    It opens a dialog window for the configuration of the variables type
    filter to be applied during a debugging session. 
        
            | Methods |  |  
        | __init__ getSelection
 handleDefault
 setSelection
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            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 slot to retrieve the current selections.        Returns            A tuple of lists of integer values. The first list is the locals variables
            filter, the second the globals variables filter. |  
            |  | handleDefault |  
        | 
handleDefault ( self )
 Private slot to set the selections as the new defaults. |  
            |  | setSelection |  
        | 
setSelection (
        self,
        lList,
        gList,
        )
Public slot to set the current selection.         Arguments
            lListlocal variables filter (list of int)            gListglobal variables filter (list of int) |  |