|
1 <!DOCTYPE html> |
|
2 <html><head> |
|
3 <title>eric7.Debugger.EditBreakpointDialog</title> |
|
4 <meta charset="UTF-8"> |
|
5 <link rel="stylesheet" href="styles.css"> |
|
6 </head> |
|
7 <body> |
|
8 <a NAME="top" ID="top"></a> |
|
9 <h1>eric7.Debugger.EditBreakpointDialog</h1> |
|
10 |
|
11 <p> |
|
12 Module implementing a dialog to edit breakpoint properties. |
|
13 </p> |
|
14 <h3>Global Attributes</h3> |
|
15 |
|
16 <table> |
|
17 <tr><td>None</td></tr> |
|
18 </table> |
|
19 <h3>Classes</h3> |
|
20 |
|
21 <table> |
|
22 |
|
23 <tr> |
|
24 <td><a href="#EditBreakpointDialog">EditBreakpointDialog</a></td> |
|
25 <td>Class implementing a dialog to edit breakpoint properties.</td> |
|
26 </tr> |
|
27 </table> |
|
28 <h3>Functions</h3> |
|
29 |
|
30 <table> |
|
31 <tr><td>None</td></tr> |
|
32 </table> |
|
33 <hr /> |
|
34 <hr /> |
|
35 <a NAME="EditBreakpointDialog" ID="EditBreakpointDialog"></a> |
|
36 <h2>EditBreakpointDialog</h2> |
|
37 |
|
38 <p> |
|
39 Class implementing a dialog to edit breakpoint properties. |
|
40 </p> |
|
41 <h3>Derived from</h3> |
|
42 QDialog, Ui_EditBreakpointDialog |
|
43 <h3>Class Attributes</h3> |
|
44 |
|
45 <table> |
|
46 <tr><td>None</td></tr> |
|
47 </table> |
|
48 <h3>Class Methods</h3> |
|
49 |
|
50 <table> |
|
51 <tr><td>None</td></tr> |
|
52 </table> |
|
53 <h3>Methods</h3> |
|
54 |
|
55 <table> |
|
56 |
|
57 <tr> |
|
58 <td><a href="#EditBreakpointDialog.__init__">EditBreakpointDialog</a></td> |
|
59 <td>Constructor</td> |
|
60 </tr> |
|
61 <tr> |
|
62 <td><a href="#EditBreakpointDialog.getAddData">getAddData</a></td> |
|
63 <td>Public method to retrieve the entered data for an add.</td> |
|
64 </tr> |
|
65 <tr> |
|
66 <td><a href="#EditBreakpointDialog.getData">getData</a></td> |
|
67 <td>Public method to retrieve the entered data.</td> |
|
68 </tr> |
|
69 <tr> |
|
70 <td><a href="#EditBreakpointDialog.on_filenamePicker_editTextChanged">on_filenamePicker_editTextChanged</a></td> |
|
71 <td>Private slot to handle the change of the filename.</td> |
|
72 </tr> |
|
73 </table> |
|
74 <h3>Static Methods</h3> |
|
75 |
|
76 <table> |
|
77 <tr><td>None</td></tr> |
|
78 </table> |
|
79 |
|
80 <a NAME="EditBreakpointDialog.__init__" ID="EditBreakpointDialog.__init__"></a> |
|
81 <h4>EditBreakpointDialog (Constructor)</h4> |
|
82 <b>EditBreakpointDialog</b>(<i>breakPointId, properties, condHistory, parent=None, name=None, modal=False, addMode=False, filenameHistory=None</i>) |
|
83 |
|
84 <p> |
|
85 Constructor |
|
86 </p> |
|
87 <dl> |
|
88 |
|
89 <dt><i>breakPointId</i></dt> |
|
90 <dd> |
|
91 id of the breakpoint (tuple) |
|
92 (filename, linenumber) |
|
93 </dd> |
|
94 <dt><i>properties</i></dt> |
|
95 <dd> |
|
96 properties for the breakpoint (tuple) |
|
97 (condition, temporary flag, enabled flag, ignore count) |
|
98 </dd> |
|
99 <dt><i>condHistory</i></dt> |
|
100 <dd> |
|
101 the list of conditionals history (list of strings) |
|
102 </dd> |
|
103 <dt><i>parent</i></dt> |
|
104 <dd> |
|
105 the parent of this dialog (QWidget) |
|
106 </dd> |
|
107 <dt><i>name</i></dt> |
|
108 <dd> |
|
109 the widget name of this dialog (string) |
|
110 </dd> |
|
111 <dt><i>modal</i></dt> |
|
112 <dd> |
|
113 flag indicating a modal dialog (boolean) |
|
114 </dd> |
|
115 <dt><i>addMode</i></dt> |
|
116 <dd> |
|
117 flag indicating the add mode (boolean) |
|
118 </dd> |
|
119 <dt><i>filenameHistory</i></dt> |
|
120 <dd> |
|
121 list of recently used file names |
|
122 (list of strings) |
|
123 </dd> |
|
124 </dl> |
|
125 <a NAME="EditBreakpointDialog.getAddData" ID="EditBreakpointDialog.getAddData"></a> |
|
126 <h4>EditBreakpointDialog.getAddData</h4> |
|
127 <b>getAddData</b>(<i></i>) |
|
128 |
|
129 <p> |
|
130 Public method to retrieve the entered data for an add. |
|
131 </p> |
|
132 <dl> |
|
133 <dt>Return:</dt> |
|
134 <dd> |
|
135 a tuple containing the new breakpoints properties |
|
136 (filename, lineno, condition, temporary flag, enabled flag, |
|
137 ignore count) |
|
138 </dd> |
|
139 </dl> |
|
140 <a NAME="EditBreakpointDialog.getData" ID="EditBreakpointDialog.getData"></a> |
|
141 <h4>EditBreakpointDialog.getData</h4> |
|
142 <b>getData</b>(<i></i>) |
|
143 |
|
144 <p> |
|
145 Public method to retrieve the entered data. |
|
146 </p> |
|
147 <dl> |
|
148 <dt>Return:</dt> |
|
149 <dd> |
|
150 a tuple containing the breakpoints new properties |
|
151 (condition, temporary flag, enabled flag, ignore count) |
|
152 </dd> |
|
153 </dl> |
|
154 <a NAME="EditBreakpointDialog.on_filenamePicker_editTextChanged" ID="EditBreakpointDialog.on_filenamePicker_editTextChanged"></a> |
|
155 <h4>EditBreakpointDialog.on_filenamePicker_editTextChanged</h4> |
|
156 <b>on_filenamePicker_editTextChanged</b>(<i>fn</i>) |
|
157 |
|
158 <p> |
|
159 Private slot to handle the change of the filename. |
|
160 </p> |
|
161 <dl> |
|
162 |
|
163 <dt><i>fn</i></dt> |
|
164 <dd> |
|
165 text of the filename edit (string) |
|
166 </dd> |
|
167 </dl> |
|
168 <div align="right"><a href="#top">Up</a></div> |
|
169 <hr /> |
|
170 </body></html> |