|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
3 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
4 <html><head> |
|
5 <title>eric5.Debugger.EditBreakpointDialog</title> |
|
6 <style> |
|
7 b'body {\n background:white;\n margin: 0em 1em 10em 1em;\n color: black;\n}\n\nh1 { color: white; background: #4FA4FF; }\nh2 { color: white; background: #4FA4FF; }\nh3 { color: white; background: #00557F; }\nh4 { color: white; background: #00557F; }\n \na { color: #AA5500; }\n' |
|
8 </style> |
|
9 </head> |
|
10 <body><a NAME="top" ID="top"></a> |
|
11 <h1>eric5.Debugger.EditBreakpointDialog</h1> |
|
12 <p> |
|
13 Module implementing a dialog to edit breakpoint properties. |
|
14 </p> |
|
15 <h3>Global Attributes</h3> |
|
16 <table> |
|
17 <tr><td>None</td></tr> |
|
18 </table> |
|
19 <h3>Classes</h3> |
|
20 <table> |
|
21 <tr> |
|
22 <td><a href="#EditBreakpointDialog">EditBreakpointDialog</a></td> |
|
23 <td>Class implementing a dialog to edit breakpoint properties.</td> |
|
24 </tr> |
|
25 </table> |
|
26 <h3>Functions</h3> |
|
27 <table> |
|
28 <tr><td>None</td></tr> |
|
29 </table> |
|
30 <hr /><hr /> |
|
31 <a NAME="EditBreakpointDialog" ID="EditBreakpointDialog"></a> |
|
32 <h2>EditBreakpointDialog</h2> |
|
33 <p> |
|
34 Class implementing a dialog to edit breakpoint properties. |
|
35 </p> |
|
36 <h3>Derived from</h3> |
|
37 QDialog, Ui_EditBreakpointDialog |
|
38 <h3>Class Attributes</h3> |
|
39 <table> |
|
40 <tr><td>None</td></tr> |
|
41 </table> |
|
42 <h3>Methods</h3> |
|
43 <table> |
|
44 <tr> |
|
45 <td><a href="#EditBreakpointDialog.__init__">EditBreakpointDialog</a></td> |
|
46 <td>Constructor</td> |
|
47 </tr><tr> |
|
48 <td><a href="#EditBreakpointDialog.getAddData">getAddData</a></td> |
|
49 <td>Public method to retrieve the entered data for an add.</td> |
|
50 </tr><tr> |
|
51 <td><a href="#EditBreakpointDialog.getData">getData</a></td> |
|
52 <td>Public method to retrieve the entered data.</td> |
|
53 </tr><tr> |
|
54 <td><a href="#EditBreakpointDialog.on_fileButton_clicked">on_fileButton_clicked</a></td> |
|
55 <td>Private slot to select a file via a file selection dialog.</td> |
|
56 </tr><tr> |
|
57 <td><a href="#EditBreakpointDialog.on_filenameCombo_editTextChanged">on_filenameCombo_editTextChanged</a></td> |
|
58 <td>Private slot to handle the change of the filename.</td> |
|
59 </tr> |
|
60 </table> |
|
61 <a NAME="EditBreakpointDialog.__init__" ID="EditBreakpointDialog.__init__"></a> |
|
62 <h4>EditBreakpointDialog (Constructor)</h4> |
|
63 <b>EditBreakpointDialog</b>(<i>id, properties, condHistory, parent = None, name = None, modal = False, addMode = False, filenameHistory = None</i>) |
|
64 <p> |
|
65 Constructor |
|
66 </p><dl> |
|
67 <dt><i>id</i></dt> |
|
68 <dd> |
|
69 id of the breakpoint (tuple) |
|
70 (filename, linenumber) |
|
71 </dd><dt><i>properties</i></dt> |
|
72 <dd> |
|
73 properties for the breakpoint (tuple) |
|
74 (condition, temporary flag, enabled flag, ignore count) |
|
75 </dd><dt><i>condHistory</i></dt> |
|
76 <dd> |
|
77 the list of conditionals history (list of strings) |
|
78 </dd><dt><i>parent</i></dt> |
|
79 <dd> |
|
80 the parent of this dialog |
|
81 </dd><dt><i>name</i></dt> |
|
82 <dd> |
|
83 the widget name of this dialog |
|
84 </dd><dt><i>modal</i></dt> |
|
85 <dd> |
|
86 flag indicating a modal dialog |
|
87 </dd> |
|
88 </dl><a NAME="EditBreakpointDialog.getAddData" ID="EditBreakpointDialog.getAddData"></a> |
|
89 <h4>EditBreakpointDialog.getAddData</h4> |
|
90 <b>getAddData</b>(<i></i>) |
|
91 <p> |
|
92 Public method to retrieve the entered data for an add. |
|
93 </p><dl> |
|
94 <dt>Returns:</dt> |
|
95 <dd> |
|
96 a tuple containing the new breakpoints properties |
|
97 (filename, lineno, condition, temporary flag, enabled flag, ignore count) |
|
98 </dd> |
|
99 </dl><a NAME="EditBreakpointDialog.getData" ID="EditBreakpointDialog.getData"></a> |
|
100 <h4>EditBreakpointDialog.getData</h4> |
|
101 <b>getData</b>(<i></i>) |
|
102 <p> |
|
103 Public method to retrieve the entered data. |
|
104 </p><dl> |
|
105 <dt>Returns:</dt> |
|
106 <dd> |
|
107 a tuple containing the breakpoints new properties |
|
108 (condition, temporary flag, enabled flag, ignore count) |
|
109 </dd> |
|
110 </dl><a NAME="EditBreakpointDialog.on_fileButton_clicked" ID="EditBreakpointDialog.on_fileButton_clicked"></a> |
|
111 <h4>EditBreakpointDialog.on_fileButton_clicked</h4> |
|
112 <b>on_fileButton_clicked</b>(<i></i>) |
|
113 <p> |
|
114 Private slot to select a file via a file selection dialog. |
|
115 </p><a NAME="EditBreakpointDialog.on_filenameCombo_editTextChanged" ID="EditBreakpointDialog.on_filenameCombo_editTextChanged"></a> |
|
116 <h4>EditBreakpointDialog.on_filenameCombo_editTextChanged</h4> |
|
117 <b>on_filenameCombo_editTextChanged</b>(<i>fn</i>) |
|
118 <p> |
|
119 Private slot to handle the change of the filename. |
|
120 </p><dl> |
|
121 <dt><i>fn</i></dt> |
|
122 <dd> |
|
123 text of the filename edit (string) |
|
124 </dd> |
|
125 </dl> |
|
126 <div align="right"><a href="#top">Up</a></div> |
|
127 <hr /> |
|
128 </body></html> |