64 <td>Private slot handling the completion of a batch job.</td> |
64 <td>Private slot handling the completion of a batch job.</td> |
65 </tr><tr> |
65 </tr><tr> |
66 <td><a href="#CodeStyleCheckerDialog.__clearErrors">__clearErrors</a></td> |
66 <td><a href="#CodeStyleCheckerDialog.__clearErrors">__clearErrors</a></td> |
67 <td>Private method to clear all warning markers of open editors to be checked.</td> |
67 <td>Private method to clear all warning markers of open editors to be checked.</td> |
68 </tr><tr> |
68 </tr><tr> |
|
69 <td><a href="#CodeStyleCheckerDialog.__createErrorItem">__createErrorItem</a></td> |
|
70 <td>Private slot to create a new error item in the result list.</td> |
|
71 </tr><tr> |
69 <td><a href="#CodeStyleCheckerDialog.__createResultItem">__createResultItem</a></td> |
72 <td><a href="#CodeStyleCheckerDialog.__createResultItem">__createResultItem</a></td> |
70 <td>Private method to create an entry in the result list.</td> |
73 <td>Private method to create an entry in the result list.</td> |
71 </tr><tr> |
74 </tr><tr> |
72 <td><a href="#CodeStyleCheckerDialog.__finish">__finish</a></td> |
75 <td><a href="#CodeStyleCheckerDialog.__finish">__finish</a></td> |
73 <td>Private slot called when the code style check finished or the user pressed the cancel button.</td> |
76 <td>Private slot called when the code style check finished or the user pressed the cancel button.</td> |
81 <td><a href="#CodeStyleCheckerDialog.__itemFixable">__itemFixable</a></td> |
84 <td><a href="#CodeStyleCheckerDialog.__itemFixable">__itemFixable</a></td> |
82 <td>Private method to check, if an item has a fixable issue.</td> |
85 <td>Private method to check, if an item has a fixable issue.</td> |
83 </tr><tr> |
86 </tr><tr> |
84 <td><a href="#CodeStyleCheckerDialog.__modifyFixedResultItem">__modifyFixedResultItem</a></td> |
87 <td><a href="#CodeStyleCheckerDialog.__modifyFixedResultItem">__modifyFixedResultItem</a></td> |
85 <td>Private method to modify a result list entry to show its positive fixed state.</td> |
88 <td>Private method to modify a result list entry to show its positive fixed state.</td> |
|
89 </tr><tr> |
|
90 <td><a href="#CodeStyleCheckerDialog.__processError">__processError</a></td> |
|
91 <td>Private slot to process an error indication from the service.</td> |
86 </tr><tr> |
92 </tr><tr> |
87 <td><a href="#CodeStyleCheckerDialog.__processResult">__processResult</a></td> |
93 <td><a href="#CodeStyleCheckerDialog.__processResult">__processResult</a></td> |
88 <td>Private slot called after perfoming a style check on one file.</td> |
94 <td>Private slot called after perfoming a style check on one file.</td> |
89 </tr><tr> |
95 </tr><tr> |
90 <td><a href="#CodeStyleCheckerDialog.__resetStatistics">__resetStatistics</a></td> |
96 <td><a href="#CodeStyleCheckerDialog.__resetStatistics">__resetStatistics</a></td> |
189 </p><dl> |
195 </p><dl> |
190 <dt><i>files</i></dt> |
196 <dt><i>files</i></dt> |
191 <dd> |
197 <dd> |
192 list of files to be checked (list of string) |
198 list of files to be checked (list of string) |
193 </dd> |
199 </dd> |
|
200 </dl><a NAME="CodeStyleCheckerDialog.__createErrorItem" ID="CodeStyleCheckerDialog.__createErrorItem"></a> |
|
201 <h4>CodeStyleCheckerDialog.__createErrorItem</h4> |
|
202 <b>__createErrorItem</b>(<i>filename, message</i>) |
|
203 <p> |
|
204 Private slot to create a new error item in the result list. |
|
205 </p><dl> |
|
206 <dt><i>filename</i> (str)</dt> |
|
207 <dd> |
|
208 name of the file |
|
209 </dd><dt><i>message</i> (str)</dt> |
|
210 <dd> |
|
211 error message |
|
212 </dd> |
194 </dl><a NAME="CodeStyleCheckerDialog.__createResultItem" ID="CodeStyleCheckerDialog.__createResultItem"></a> |
213 </dl><a NAME="CodeStyleCheckerDialog.__createResultItem" ID="CodeStyleCheckerDialog.__createResultItem"></a> |
195 <h4>CodeStyleCheckerDialog.__createResultItem</h4> |
214 <h4>CodeStyleCheckerDialog.__createResultItem</h4> |
196 <b>__createResultItem</b>(<i>file, line, pos, message, fixed, autofixing, ignored</i>) |
215 <b>__createResultItem</b>(<i>filename, line, pos, message, fixed, autofixing, ignored</i>) |
197 <p> |
216 <p> |
198 Private method to create an entry in the result list. |
217 Private method to create an entry in the result list. |
199 </p><dl> |
218 </p><dl> |
200 <dt><i>file</i></dt> |
219 <dt><i>filename</i></dt> |
201 <dd> |
220 <dd> |
202 file name of the file (string) |
221 file name of the file (string) |
203 </dd><dt><i>line</i></dt> |
222 </dd><dt><i>line</i></dt> |
204 <dd> |
223 <dd> |
205 line number of issue (integer or string) |
224 line number of issue (integer or string) |
285 <dd> |
304 <dd> |
286 text to be appended (string) |
305 text to be appended (string) |
287 </dd><dt><i>fixed</i></dt> |
306 </dd><dt><i>fixed</i></dt> |
288 <dd> |
307 <dd> |
289 flag indicating a fixed issue (boolean) |
308 flag indicating a fixed issue (boolean) |
|
309 </dd> |
|
310 </dl><a NAME="CodeStyleCheckerDialog.__processError" ID="CodeStyleCheckerDialog.__processError"></a> |
|
311 <h4>CodeStyleCheckerDialog.__processError</h4> |
|
312 <b>__processError</b>(<i>fn, msg</i>) |
|
313 <p> |
|
314 Private slot to process an error indication from the service. |
|
315 </p><dl> |
|
316 <dt><i>fn</i> (str)</dt> |
|
317 <dd> |
|
318 filename of the file |
|
319 </dd><dt><i>msg</i> (str)</dt> |
|
320 <dd> |
|
321 error message |
290 </dd> |
322 </dd> |
291 </dl><a NAME="CodeStyleCheckerDialog.__processResult" ID="CodeStyleCheckerDialog.__processResult"></a> |
323 </dl><a NAME="CodeStyleCheckerDialog.__processResult" ID="CodeStyleCheckerDialog.__processResult"></a> |
292 <h4>CodeStyleCheckerDialog.__processResult</h4> |
324 <h4>CodeStyleCheckerDialog.__processResult</h4> |
293 <b>__processResult</b>(<i>fn, codeStyleCheckerStats, fixes, results</i>) |
325 <b>__processResult</b>(<i>fn, codeStyleCheckerStats, fixes, results</i>) |
294 <p> |
326 <p> |