| Class implementing a dialog for editing breakpoints.    In this dialog all currently set breakpoint can be delete or be changed.
    Unconditional breakpoints can be converted to conditional ones by
    entering a condition term, conditional ones to unconditional by 
    removing the condition term. This dialog has three different modes.
    In projectmode all breakpoints of the current project are shown,
    inglobalmode all breakpoints and infilemode the breakpoints of
    a specific file. 
        
            | Methods |  |  
        | __init__ handleDeleteAll
 handleDeleteSelected
 handleDeleteSingle
 handleEditBP
 handleGoto
 handleListContextmenu
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        fn=None,
        )
Constructor        Arguments
            parentparent widget of this dialog (QWidget)            namethe name of this dialog (string or QString)            modalflag to indicate a modal dialog (boolean)            flwindow flags            fndetermines the mode of the dialog
                Nonethe globalbreakpoint dialog                projectthe projectbreakpoint dialog                filenamethe filebreakpoint dialog |  
            |  | handleDeleteAll |  
        | 
handleDeleteAll ( self )
 Private slot to delete all breakpoints listed in the listview. |  
            |  | handleDeleteSelected |  
        | 
handleDeleteSelected ( self )
 Private slot to delete the selected breakpoints of the listview. |  
            |  | handleDeleteSingle |  
        | 
handleDeleteSingle ( self )
 Private slot to delete a single breakpoint. |  
            |  | handleEditBP |  
        | 
handleEditBP ( self )
 Private slot to edit the properties of the selected breakpoint. |  
            |  | handleGoto |  
        | 
handleGoto ( self )
 Private slot to go to a breakpoint. |  
            |  | handleListContextmenu |  
        | 
handleListContextmenu (
        self,
        item,
        pos,
        col,
        )
Private slot to show the context menu of the listview.        Arguments
            itemthe item under the mouse cursor (QListViewItem)            posglobal position of the context menu (QPoint)            colcolumn of the mouse cursor (int) |  |