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