Documentation/Source/eric4.Debugger.ExceptionsFilterDialog.html

changeset 3
0d9daebf5b8c
equal deleted inserted replaced
2:bc6196164237 3:0d9daebf5b8c
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.ExceptionsFilterDialog</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.ExceptionsFilterDialog</h1>
24 <p>
25 Module implementing the exceptions filter dialog.
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="#ExceptionsFilterDialog">ExceptionsFilterDialog</a></td>
35 <td>Class implementing the exceptions filter dialog.</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="ExceptionsFilterDialog" ID="ExceptionsFilterDialog"></a>
44 <h2>ExceptionsFilterDialog</h2>
45 <p>
46 Class implementing the exceptions filter dialog.
47 </p>
48 <h3>Derived from</h3>
49 QDialog, Ui_ExceptionsFilterDialog
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="#ExceptionsFilterDialog.__init__">ExceptionsFilterDialog</a></td>
58 <td>Constructor</td>
59 </tr><tr>
60 <td><a href="#ExceptionsFilterDialog.getExceptionsList">getExceptionsList</a></td>
61 <td>Public method to retrieve the list of exception types.</td>
62 </tr><tr>
63 <td><a href="#ExceptionsFilterDialog.on_addButton_clicked">on_addButton_clicked</a></td>
64 <td>Private slot to handle the Add button press.</td>
65 </tr><tr>
66 <td><a href="#ExceptionsFilterDialog.on_deleteAllButton_clicked">on_deleteAllButton_clicked</a></td>
67 <td>Private slot to delete all exceptions of the listbox.</td>
68 </tr><tr>
69 <td><a href="#ExceptionsFilterDialog.on_deleteButton_clicked">on_deleteButton_clicked</a></td>
70 <td>Private slot to delete the currently selected exception of the listbox.</td>
71 </tr><tr>
72 <td><a href="#ExceptionsFilterDialog.on_exceptionEdit_textChanged">on_exceptionEdit_textChanged</a></td>
73 <td>Private slot to handle the textChanged signal of exceptionEdit.</td>
74 </tr><tr>
75 <td><a href="#ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged">on_exceptionList_itemSelectionChanged</a></td>
76 <td>Private slot to handle the change of the selection.</td>
77 </tr>
78 </table>
79 <a NAME="ExceptionsFilterDialog.__init__" ID="ExceptionsFilterDialog.__init__"></a>
80 <h4>ExceptionsFilterDialog (Constructor)</h4>
81 <b>ExceptionsFilterDialog</b>(<i>excList, ignore, parent=None</i>)
82 <p>
83 Constructor
84 </p><dl>
85 <dt><i>excList</i></dt>
86 <dd>
87 list of exceptions to be edited (list of strings)
88 </dd><dt><i>ignore</i></dt>
89 <dd>
90 flag indicating the ignore exceptions mode (boolean)
91 </dd><dt><i>parent</i></dt>
92 <dd>
93 the parent widget (QWidget)
94 </dd>
95 </dl><a NAME="ExceptionsFilterDialog.getExceptionsList" ID="ExceptionsFilterDialog.getExceptionsList"></a>
96 <h4>ExceptionsFilterDialog.getExceptionsList</h4>
97 <b>getExceptionsList</b>(<i></i>)
98 <p>
99 Public method to retrieve the list of exception types.
100 </p><dl>
101 <dt>Returns:</dt>
102 <dd>
103 list of exception types (list of strings)
104 </dd>
105 </dl><a NAME="ExceptionsFilterDialog.on_addButton_clicked" ID="ExceptionsFilterDialog.on_addButton_clicked"></a>
106 <h4>ExceptionsFilterDialog.on_addButton_clicked</h4>
107 <b>on_addButton_clicked</b>(<i></i>)
108 <p>
109 Private slot to handle the Add button press.
110 </p><a NAME="ExceptionsFilterDialog.on_deleteAllButton_clicked" ID="ExceptionsFilterDialog.on_deleteAllButton_clicked"></a>
111 <h4>ExceptionsFilterDialog.on_deleteAllButton_clicked</h4>
112 <b>on_deleteAllButton_clicked</b>(<i></i>)
113 <p>
114 Private slot to delete all exceptions of the listbox.
115 </p><a NAME="ExceptionsFilterDialog.on_deleteButton_clicked" ID="ExceptionsFilterDialog.on_deleteButton_clicked"></a>
116 <h4>ExceptionsFilterDialog.on_deleteButton_clicked</h4>
117 <b>on_deleteButton_clicked</b>(<i></i>)
118 <p>
119 Private slot to delete the currently selected exception of the listbox.
120 </p><a NAME="ExceptionsFilterDialog.on_exceptionEdit_textChanged" ID="ExceptionsFilterDialog.on_exceptionEdit_textChanged"></a>
121 <h4>ExceptionsFilterDialog.on_exceptionEdit_textChanged</h4>
122 <b>on_exceptionEdit_textChanged</b>(<i>txt</i>)
123 <p>
124 Private slot to handle the textChanged signal of exceptionEdit.
125 </p><p>
126 This slot sets the enabled status of the add button and sets the forms
127 default button.
128 </p><dl>
129 <dt><i>txt</i></dt>
130 <dd>
131 the text entered into exceptionEdit (string)
132 </dd>
133 </dl><a NAME="ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged" ID="ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged"></a>
134 <h4>ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged</h4>
135 <b>on_exceptionList_itemSelectionChanged</b>(<i></i>)
136 <p>
137 Private slot to handle the change of the selection.
138 </p>
139 <div align="right"><a href="#top">Up</a></div>
140 <hr />
141 </body></html>

eric ide

mercurial