eric4.Debugger.EditWatchpointDialog

Module implementing a dialog to edit watchpoint properties.

Classes

EditWatchpointDialog Class implementing a dialog to edit watchpoint properties.

Functions

None


EditWatchpointDialog

Class implementing a dialog to edit watchpoint properties.

Derived from

QDialog, Ui_EditWatchpointDialog

Methods

EditWatchpointDialog Constructor
__textChanged Private slot to handle the text changed signal of the condition line edit.
getData Public method to retrieve the entered data.

EditWatchpointDialog (Constructor)

EditWatchpointDialog(properties, parent = None, name = None, modal = False)

Constructor

properties
properties for the watchpoint (tuple) (condition, temporary flag, enabled flag, ignore count, special condition)
parent
the parent of this dialog
name
the widget name of this dialog
modal
flag indicating a modal dialog

EditWatchpointDialog.__textChanged

__textChanged(txt)

Private slot to handle the text changed signal of the condition line edit.

txt
text of the line edit (QString)

EditWatchpointDialog.getData

getData()

Public method to retrieve the entered data.

Returns:
a tuple containing the watchpoints new properties (condition, temporary flag, enabled flag, ignore count, special condition)

Up