eric3.Debugger.BreakpointDialog

Module implementing a dialog for editing breakpoints.

Classes

BreakpointDialog Class implementing a dialog for editing breakpoints.

Functions

None

BreakpointDialog

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 'project' mode all breakpoints of the current project are shown, in 'global' mode all breakpoints and in 'file' mode the breakpoints of a specific file.

Derived from

BreakpointForm

Methods

BreakpointDialog Constructor
handleDeleteAll Private slot to delete all breakpoints listed in the listview.
handleDeleteSelected Private slot to delete the selected breakpoints of the listview.
handleDeleteSingle Private slot to delete a single breakpoint.
handleEditBP Private slot to edit the properties of the selected breakpoint.
handleGoto Private slot to go to a breakpoint.
handleListContextmenu Private slot to show the context menu of the listview.

BreakpointDialog (Constructor)

BreakpointDialog(parent = None, name = None, modal = 0, fl = 0, fn = None)

Constructor

fl
window flags
fn
determines the mode of the dialog
modal
flag to indicate a modal dialog (boolean)
name
the name of this dialog (string or QString)
parent
parent widget of this dialog (QWidget)

BreakpointDialog.handleDeleteAll

handleDeleteAll()

Private slot to delete all breakpoints listed in the listview.

BreakpointDialog.handleDeleteSelected

handleDeleteSelected()

Private slot to delete the selected breakpoints of the listview.

BreakpointDialog.handleDeleteSingle

handleDeleteSingle()

Private slot to delete a single breakpoint.

BreakpointDialog.handleEditBP

handleEditBP()

Private slot to edit the properties of the selected breakpoint.

BreakpointDialog.handleGoto

handleGoto()

Private slot to go to a breakpoint.

BreakpointDialog.handleListContextmenu

handleListContextmenu(item, pos, col)

Private slot to show the context menu of the listview.

col
column of the mouse cursor (int)
item
the item under the mouse cursor (QListViewItem)
pos
global position of the context menu (QPoint)

Up