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