| Class implementing a dialog to edit breakpoint properties. 
        
            | Methods |  |  
        | __init__ getData
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        properties,
        condHistory,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            propertiesproperties for the breakpoint (tuple)
                (condition, temporary flag, enabled flag, ignore count)            condHistorythe list of conditionals history (QStringList)             the other ones are the standard dialog parameters |  
            |  | getData |  
        | 
getData ( self )
 Public method to retrieve the entered data.        Returns            a tuple containing the breakpoints new properties
            (condition, temporary flag, enabled flag, ignore count) |  |