src/eric7/Documentation/Source/eric7.QScintilla.Editor.html

branch
eric7
changeset 10289
490388ca210c
parent 10279
e6e270b705c2
child 10307
c685f4e12916
diff -r 1f5c7f54c3cc -r 490388ca210c src/eric7/Documentation/Source/eric7.QScintilla.Editor.html
--- a/src/eric7/Documentation/Source/eric7.QScintilla.Editor.html	Mon Nov 06 19:12:33 2023 +0100
+++ b/src/eric7/Documentation/Source/eric7.QScintilla.Editor.html	Tue Nov 07 11:03:13 2023 +0100
@@ -167,7 +167,7 @@
 <h3>Class Attributes</h3>
 
 <table>
-<tr><td>AttributeID</td></tr><tr><td>AttributePrivateID</td></tr><tr><td>AttributeProtectedID</td></tr><tr><td>CancelEditToken</td></tr><tr><td>ClassID</td></tr><tr><td>ClassPrivateID</td></tr><tr><td>ClassProtectedID</td></tr><tr><td>EncloseChars</td></tr><tr><td>EndEditToken</td></tr><tr><td>EnumID</td></tr><tr><td>FromDocumentID</td></tr><tr><td>KeywordsID</td></tr><tr><td>MethodID</td></tr><tr><td>MethodPrivateID</td></tr><tr><td>MethodProtectedID</td></tr><tr><td>ModuleID</td></tr><tr><td>RequestSyncToken</td></tr><tr><td>Separator</td></tr><tr><td>StartEditToken</td></tr><tr><td>SyncToken</td></tr><tr><td>TemplateImageID</td></tr><tr><td>VcsConflictMarkerLineRegExpList</td></tr><tr><td>WarningCode</td></tr><tr><td>WarningInfo</td></tr><tr><td>WarningPython</td></tr><tr><td>WarningStyle</td></tr>
+<tr><td>AttributeID</td></tr><tr><td>AttributePrivateID</td></tr><tr><td>AttributeProtectedID</td></tr><tr><td>CancelEditToken</td></tr><tr><td>ClassID</td></tr><tr><td>ClassPrivateID</td></tr><tr><td>ClassProtectedID</td></tr><tr><td>EncloseChars</td></tr><tr><td>EndEditToken</td></tr><tr><td>EnumID</td></tr><tr><td>FromDocumentID</td></tr><tr><td>KeywordsID</td></tr><tr><td>MethodID</td></tr><tr><td>MethodPrivateID</td></tr><tr><td>MethodProtectedID</td></tr><tr><td>ModuleID</td></tr><tr><td>RequestSyncToken</td></tr><tr><td>Separator</td></tr><tr><td>StartEditToken</td></tr><tr><td>SyncToken</td></tr><tr><td>TemplateImageID</td></tr><tr><td>VcsConflictMarkerLineRegExpList</td></tr><tr><td>WarningCode</td></tr><tr><td>WarningError</td></tr><tr><td>WarningInfo</td></tr><tr><td>WarningPython</td></tr><tr><td>WarningStyle</td></tr>
 </table>
 <h3>Class Methods</h3>
 
@@ -1007,6 +1007,14 @@
 <td>Public method to clear all change markers.</td>
 </tr>
 <tr>
+<td><a href="#Editor.clearCodeWarnings">clearCodeWarnings</a></td>
+<td>Public slot to clear all code warnings.</td>
+</tr>
+<tr>
+<td><a href="#Editor.clearErrorWarnings">clearErrorWarnings</a></td>
+<td>Public slot to clear all error warnings.</td>
+</tr>
+<tr>
 <td><a href="#Editor.clearFlakesWarnings">clearFlakesWarnings</a></td>
 <td>Public slot to clear all pyflakes warnings.</td>
 </tr>
@@ -4492,6 +4500,20 @@
 <p>
         Public method to clear all change markers.
 </p>
+<a NAME="Editor.clearCodeWarnings" ID="Editor.clearCodeWarnings"></a>
+<h4>Editor.clearCodeWarnings</h4>
+<b>clearCodeWarnings</b>(<i></i>)
+
+<p>
+        Public slot to clear all code warnings.
+</p>
+<a NAME="Editor.clearErrorWarnings" ID="Editor.clearErrorWarnings"></a>
+<h4>Editor.clearErrorWarnings</h4>
+<b>clearErrorWarnings</b>(<i></i>)
+
+<p>
+        Public slot to clear all error warnings.
+</p>
 <a NAME="Editor.clearFlakesWarnings" ID="Editor.clearFlakesWarnings"></a>
 <h4>Editor.clearFlakesWarnings</h4>
 <b>clearFlakesWarnings</b>(<i></i>)
@@ -7042,39 +7064,38 @@
 </p>
 <a NAME="Editor.toggleSyntaxError" ID="Editor.toggleSyntaxError"></a>
 <h4>Editor.toggleSyntaxError</h4>
-<b>toggleSyntaxError</b>(<i>line, index, error, msg="", show=False</i>)
+<b>toggleSyntaxError</b>(<i>line, index, setError, msg="", show=False</i>)
 
 <p>
         Public method to toggle a syntax error indicator.
 </p>
 <dl>
 
-<dt><i>line</i></dt>
-<dd>
-line number of the syntax error (integer)
-</dd>
-<dt><i>index</i></dt>
-<dd>
-index number of the syntax error (integer)
-</dd>
-<dt><i>error</i></dt>
+<dt><i>line</i> (int)</dt>
+<dd>
+line number of the syntax error
+</dd>
+<dt><i>index</i> (int)</dt>
+<dd>
+index number of the syntax error
+</dd>
+<dt><i>setError</i> (bool)</dt>
 <dd>
 flag indicating if the error marker should be
-            set or deleted (boolean)
-</dd>
-<dt><i>msg</i></dt>
-<dd>
-error message (string)
-</dd>
-<dt><i>show</i></dt>
+            set or deleted
+</dd>
+<dt><i>msg</i> (str)</dt>
+<dd>
+error message
+</dd>
+<dt><i>show</i> (bool)</dt>
 <dd>
 flag indicating to set the cursor to the error position
-            (boolean)
 </dd>
 </dl>
 <a NAME="Editor.toggleWarning" ID="Editor.toggleWarning"></a>
 <h4>Editor.toggleWarning</h4>
-<b>toggleWarning</b>(<i>line, col, warning, msg="", warningType=WarningCode</i>)
+<b>toggleWarning</b>(<i>line, col, setWarning, msg="", warningType=WarningCode</i>)
 
 <p>
         Public method to toggle a warning indicator.
@@ -7084,26 +7105,26 @@
 </p>
 <dl>
 
-<dt><i>line</i></dt>
+<dt><i>line</i> (int)</dt>
 <dd>
 line number of the warning
 </dd>
-<dt><i>col</i></dt>
+<dt><i>col</i> (int)</dt>
 <dd>
 column of the warning
 </dd>
-<dt><i>warning</i></dt>
+<dt><i>setWarning</i> (bool)</dt>
 <dd>
 flag indicating if the warning marker should be
-            set or deleted (boolean)
-</dd>
-<dt><i>msg</i></dt>
-<dd>
-warning message (string)
-</dd>
-<dt><i>warningType</i></dt>
-<dd>
-type of warning message (integer)
+            set or deleted
+</dd>
+<dt><i>msg</i> (str)</dt>
+<dd>
+warning message
+</dd>
+<dt><i>warningType</i> (int)</dt>
+<dd>
+type of warning message
 </dd>
 </dl>
 <a NAME="Editor.uncommentLine" ID="Editor.uncommentLine"></a>

eric ide

mercurial