Sat, 23 Sep 2023 15:06:36 +0200
Changed some icons used by the view managers and refactored parts of the view managers code to remove redundancy.
--- a/src/eric7/APIs/Python3/eric7.api Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/APIs/Python3/eric7.api Sat Sep 23 15:06:36 2023 +0200 @@ -6784,7 +6784,7 @@ eric7.Plugins.VcsPlugins.vcsSubversion.subversion.Subversion?1(plugin, parent=None, name=None) eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._addView?5(win, fn=None, noName="", addNext=False, indexes=None) eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._initWindowActions?5() -eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._modificationStatusChanged?5(m, editor) +eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._modificationStatusChanged?5(modified, editor) eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._removeAllViews?5() eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._removeView?5(win) eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.Listspace._showView?5(win, fn=None) @@ -6863,7 +6863,7 @@ eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.TabWidget?1(vm) eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._addView?5(win, fn=None, noName="", addNext=False, indexes=None) eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._initWindowActions?5() -eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._modificationStatusChanged?5(m, editor) +eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._modificationStatusChanged?5(modified, editor) eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._removeAllViews?5() eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._removeView?5(win) eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.Tabview._showView?5(win, fn=None)
--- a/src/eric7/Documentation/Help/source.qhp Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/Documentation/Help/source.qhp Sat Sep 23 15:06:36 2023 +0200 @@ -10694,6 +10694,7 @@ <keyword name="Listspace.__currentChanged" id="Listspace.__currentChanged" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace.__currentChanged" /> <keyword name="Listspace.__cursorLineChanged" id="Listspace.__cursorLineChanged" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace.__cursorLineChanged" /> <keyword name="Listspace.__initMenu" id="Listspace.__initMenu" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace.__initMenu" /> + <keyword name="Listspace.__setIcon" id="Listspace.__setIcon" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace.__setIcon" /> <keyword name="Listspace.__showMenu" id="Listspace.__showMenu" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace.__showMenu" /> <keyword name="Listspace.__showSelectedView" id="Listspace.__showSelectedView" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace.__showSelectedView" /> <keyword name="Listspace._addView" id="Listspace._addView" ref="eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html#Listspace._addView" /> @@ -16681,6 +16682,7 @@ <keyword name="Tabview (Module)" id="Tabview (Module)" ref="eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html" /> <keyword name="Tabview (Package)" id="Tabview (Package)" ref="index-eric7.Plugins.ViewManagerPlugins.Tabview.html" /> <keyword name="Tabview.__currentChanged" id="Tabview.__currentChanged" ref="eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html#Tabview.__currentChanged" /> + <keyword name="Tabview.__setIcon" id="Tabview.__setIcon" ref="eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html#Tabview.__setIcon" /> <keyword name="Tabview._addView" id="Tabview._addView" ref="eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html#Tabview._addView" /> <keyword name="Tabview._initWindowActions" id="Tabview._initWindowActions" ref="eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html#Tabview._initWindowActions" /> <keyword name="Tabview._modificationStatusChanged" id="Tabview._modificationStatusChanged" ref="eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html#Tabview._modificationStatusChanged" />
--- a/src/eric7/Documentation/Source/eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/Documentation/Source/eric7.Plugins.ViewManagerPlugins.Listspace.Listspace.html Sat Sep 23 15:06:36 2023 +0200 @@ -240,6 +240,10 @@ <td>Private method to initialize the viewlist context menu.</td> </tr> <tr> +<td><a href="#Listspace.__setIcon">__setIcon</a></td> +<td>Private method to set the icon for the given editor.</td> +</tr> +<tr> <td><a href="#Listspace.__showMenu">__showMenu</a></td> <td>Private slot to handle the customContextMenuRequested signal of the viewlist.</td> </tr> @@ -515,6 +519,24 @@ <p> Private method to initialize the viewlist context menu. </p> +<a NAME="Listspace.__setIcon" ID="Listspace.__setIcon"></a> +<h4>Listspace.__setIcon</h4> +<b>__setIcon</b>(<i>editor, modified</i>) + +<p> + Private method to set the icon for the given editor. +</p> +<dl> + +<dt><i>editor</i> (Editor)</dt> +<dd> +reference to the editor to set the icon for +</dd> +<dt><i>modified</i> (bool)</dt> +<dd> +flag indicating the modification status +</dd> +</dl> <a NAME="Listspace.__showMenu" ID="Listspace.__showMenu"></a> <h4>Listspace.__showMenu</h4> <b>__showMenu</b>(<i>point</i>) @@ -586,20 +608,20 @@ </p> <a NAME="Listspace._modificationStatusChanged" ID="Listspace._modificationStatusChanged"></a> <h4>Listspace._modificationStatusChanged</h4> -<b>_modificationStatusChanged</b>(<i>m, editor</i>) +<b>_modificationStatusChanged</b>(<i>modified, editor</i>) <p> Protected slot to handle the modificationStatusChanged signal. </p> <dl> -<dt><i>m</i> (bool)</dt> +<dt><i>modified</i> (bool)</dt> <dd> flag indicating the modification status </dd> <dt><i>editor</i> (Editor)</dt> <dd> -editor window changed +editor that sent the signal </dd> </dl> <a NAME="Listspace._removeAllViews" ID="Listspace._removeAllViews"></a>
--- a/src/eric7/Documentation/Source/eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/Documentation/Source/eric7.Plugins.ViewManagerPlugins.Tabview.Tabview.html Sat Sep 23 15:06:36 2023 +0200 @@ -1008,6 +1008,10 @@ <td>Private slot to handle the currentChanged signal.</td> </tr> <tr> +<td><a href="#Tabview.__setIcon">__setIcon</a></td> +<td>Private method to set the icon for the given editor.</td> +</tr> +<tr> <td><a href="#Tabview._addView">_addView</a></td> <td>Protected method to add a view (i.e.</td> </tr> @@ -1158,6 +1162,24 @@ index of the current tab </dd> </dl> +<a NAME="Tabview.__setIcon" ID="Tabview.__setIcon"></a> +<h4>Tabview.__setIcon</h4> +<b>__setIcon</b>(<i>editor, modified</i>) + +<p> + Private method to set the icon for the given editor. +</p> +<dl> + +<dt><i>editor</i> (Editor)</dt> +<dd> +reference to the editor to set the icon for +</dd> +<dt><i>modified</i> (bool)</dt> +<dd> +flag indicating the modification status +</dd> +</dl> <a NAME="Tabview._addView" ID="Tabview._addView"></a> <h4>Tabview._addView</h4> <b>_addView</b>(<i>win, fn=None, noName="", addNext=False, indexes=None</i>) @@ -1200,20 +1222,20 @@ </p> <a NAME="Tabview._modificationStatusChanged" ID="Tabview._modificationStatusChanged"></a> <h4>Tabview._modificationStatusChanged</h4> -<b>_modificationStatusChanged</b>(<i>m, editor</i>) +<b>_modificationStatusChanged</b>(<i>modified, editor</i>) <p> Protected slot to handle the modificationStatusChanged signal. </p> <dl> -<dt><i>m</i> (bool)</dt> +<dt><i>modified</i> (bool)</dt> <dd> flag indicating the modification status </dd> <dt><i>editor</i> (Editor)</dt> <dd> -editor window changed +editor that sent the signal </dd> </dl> <a NAME="Tabview._removeAllViews" ID="Tabview._removeAllViews"></a>
--- a/src/eric7/Plugins/ViewManagerPlugins/Listspace/Listspace.py Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sat Sep 23 15:06:36 2023 +0200 @@ -634,43 +634,19 @@ self.viewlist.setCurrentRow(currentRow) self.changeCaption.emit(newName) - def _modificationStatusChanged(self, m, editor): + def __setIcon(self, editor, modified): """ - Protected slot to handle the modificationStatusChanged signal. + Private method to set the icon for the given editor. - @param m flag indicating the modification status + @param editor reference to the editor to set the icon for + @type Editor + @param modified flag indicating the modification status @type bool - @param editor editor window changed - @type Editor """ currentRow = self.viewlist.currentRow() index = self.editors.index(editor) keys = [] - if m: - keys.append("fileModified") - if editor.hasSyntaxErrors(): - keys.append("syntaxError22") - elif editor.hasWarnings(): - keys.append("warning22") - if not keys: - keys.append("empty") - item = self.viewlist.item(index) - if item: - item.setIcon(EricPixmapCache.getCombinedIcon(keys)) - self.viewlist.setCurrentRow(currentRow) - self._checkActions(editor) - - def _syntaxErrorToggled(self, editor): - """ - Protected slot to handle the syntaxerrorToggled signal. - - @param editor editor that sent the signal - @type Editor - """ - currentRow = self.viewlist.currentRow() - index = self.editors.index(editor) - keys = [] - if editor.isModified(): + if modified: keys.append("fileModified") if editor.hasSyntaxErrors(): keys.append("syntaxError22") @@ -683,6 +659,26 @@ item.setIcon(EricPixmapCache.getCombinedIcon(keys)) self.viewlist.setCurrentRow(currentRow) + def _modificationStatusChanged(self, modified, editor): + """ + Protected slot to handle the modificationStatusChanged signal. + + @param modified flag indicating the modification status + @type bool + @param editor editor that sent the signal + @type Editor + """ + self.__setIcon(editor, modified) + self._checkActions(editor) + + def _syntaxErrorToggled(self, editor): + """ + Protected slot to handle the syntaxerrorToggled signal. + + @param editor editor that sent the signal + @type Editor + """ + self.__setIcon(editor, editor.isModified()) ViewManager._syntaxErrorToggled(self, editor) def addSplit(self):
--- a/src/eric7/Plugins/ViewManagerPlugins/Tabview/Tabview.py Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/Plugins/ViewManagerPlugins/Tabview/Tabview.py Sat Sep 23 15:06:36 2023 +0200 @@ -1195,21 +1195,21 @@ self.currentTabWidget.setTabToolTip(index, newName) self.changeCaption.emit(newName) - def _modificationStatusChanged(self, m, editor): + def __setIcon(self, editor, modified): """ - Protected slot to handle the modificationStatusChanged signal. + Private method to set the icon for the given editor. - @param m flag indicating the modification status + @param editor reference to the editor to set the icon for + @type Editor + @param modified flag indicating the modification status @type bool - @param editor editor window changed - @type Editor """ for tw in self.tabWidgets: if tw.hasEditor(editor): break index = tw.indexOf(editor) keys = [] - if m: + if modified: keys.append("fileModified") if editor.hasSyntaxErrors(): keys.append("syntaxError22") @@ -1218,6 +1218,17 @@ if not keys: keys.append("empty") tw.setTabIcon(index, EricPixmapCache.getCombinedIcon(keys)) + + def _modificationStatusChanged(self, modified, editor): + """ + Protected slot to handle the modificationStatusChanged signal. + + @param modified flag indicating the modification status + @type bool + @param editor editor that sent the signal + @type Editor + """ + self.__setIcon(editor, modified) self._checkActions(editor) def _syntaxErrorToggled(self, editor): @@ -1227,20 +1238,7 @@ @param editor editor that sent the signal @type Editor """ - for tw in self.tabWidgets: - if tw.hasEditor(editor): - break - index = tw.indexOf(editor) - keys = [] - if editor.isModified(): - keys.append("fileModified") - if editor.hasSyntaxErrors(): - keys.append("syntaxError22") - elif editor.hasWarnings(): - keys.append("warning22") - if not keys: - keys.append("empty") - tw.setTabIcon(index, EricPixmapCache.getCombinedIcon(keys)) + self.__setIcon(editor, editor.isModified()) ViewManager._syntaxErrorToggled(self, editor)
--- a/src/eric7/icons/breeze-dark/fileModified.svg Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/icons/breeze-dark/fileModified.svg Sat Sep 23 15:06:36 2023 +0200 @@ -1,4 +1,74 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><defs><style type="text/css">.ColorScheme-Text { +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + version="1.1" + viewBox="0 0 22 22" + id="svg5677" + sodipodi:docname="fileModified.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview5679" + pagecolor="#fffff0" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.05882353" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="95.523698" + inkscape:cx="16.461884" + inkscape:cy="17.011485" + inkscape:window-width="2590" + inkscape:window-height="1245" + inkscape:window-x="708" + inkscape:window-y="10" + inkscape:window-maximized="0" + inkscape:current-layer="svg5677" /> + <defs + id="defs5669"> + <style + type="text/css" + id="style5667">.ColorScheme-Text { color:#eff0f1; - }</style></defs><path d="m2 1v20h11.571v-1.25h-10.286v-17.5h10.286v5h5.1429v7.5h1.2857v-8.7598l-5.1328-4.9902-0.01004 0.012207v-0.012207h-11.571z" fill="#eff0f1"/><path d="m13.571 20.401h5.8129v-5.6514" fill="none" stroke="#eff0f1" stroke-width="1.2142px"/><path class="ColorScheme-Text" d="m6 8v10h10v-8.099l-1.901-1.901h-7.2656zm0.83333 0.83333h1.6667v3.3333h5v-3.3333h0.23438l1.4323 1.4323v6.901h-0.83333v-3.3333h-6.6927v3.3333h-0.80729zm2.5 0h1.5885v2.5h-1.5885zm-0.83333 5.8333h5v2.5h-5z" color="#eff0f1" fill="currentColor"/></svg> + }</style> + </defs> + <rect + style="fill:#eff0f1;fill-opacity:1;stroke:#232629;stroke-width:0;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + id="rect12968" + width="6.4509988" + height="6.501143" + x="13.541302" + y="14.488747" /> + <path + d="m2 1v20h11.571v-1.25h-10.286v-17.5h10.286v5h5.1429v7.5h1.2857v-8.7598l-5.1328-4.9902-0.01004 0.012207v-0.012207h-11.571z" + fill="#eff0f1" + id="path5671" + style="fill:#eff0f1;fill-opacity:1" /> + <path + class="ColorScheme-Text" + d="m6 8v10h10v-8.099l-1.901-1.901h-7.2656zm0.83333 0.83333h1.6667v3.3333h5v-3.3333h0.23438l1.4323 1.4323v6.901h-0.83333v-3.3333h-6.6927v3.3333h-0.80729zm2.5 0h1.5885v2.5h-1.5885zm-0.83333 5.8333h5v2.5h-5z" + color="#eff0f1" + fill="currentColor" + id="path5675" + style="fill:#000000;fill-opacity:1" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="m 8.4461642,19.757067 -5.1446837,-0.0076 v -8.74958 -8.7495805 h 5.1224764 5.1224761 v 2.5020188 2.5020189 h 2.576043 2.576044 v 3.7438778 c 0,2.46398 0.01012,3.750135 0.02961,3.762179 0.01936,0.01197 0.02961,0.883663 0.02961,2.518571 v 2.500271 l -2.583446,-0.0073 c -1.420895,-0.004 -4.898553,-0.01072 -7.7281288,-0.01489 z M 16.004038,13.938933 V 9.8751735 L 15.064104,8.9348949 14.124169,7.9946164 H 10.060066 5.9959623 v 5.0040376 5.004038 H 11 16.004038 Z" + id="path6301" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="M 6.8546433,12.998654 V 8.8532974 H 7.6689098 8.4831763 V 10.51144 12.169583 H 11 13.516824 V 10.51144 8.8532974 h 0.111267 c 0.105768,0 0.146016,0.034771 0.814267,0.7034569 l 0.702999,0.7034567 v 3.4419 3.4419 h -0.399731 -0.399731 v -1.658143 -1.658143 h -3.3607 -3.3606997 v 1.658143 1.658143 h -0.384926 -0.384926 z" + id="path6303" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="M 9.3418573,10.0821 V 8.8532974 h 0.7846567 0.784657 V 10.0821 11.310902 H 10.126514 9.3418573 Z" + id="path6305" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="M 8.512786,15.915209 V 14.686406 H 11 13.487214 v 1.228803 1.228802 H 11 8.512786 Z" + id="path6307" /> +</svg>
--- a/src/eric7/icons/breeze-dark/syntaxError.svg Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/icons/breeze-dark/syntaxError.svg Sat Sep 23 15:06:36 2023 +0200 @@ -1,2 +1,72 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg fill="none" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(1.0057 0 0 1.0258 -.0057471 -.025784)" fill="#eff0f1"><path d="m3.02 8.5017-0.00271-0.04081c8.7e-4 0.01361 0.00178 0.02722 0.00271 0.04081z"/><path d="m7.2577 8.9047-1.7701-1.7791 0.59162-0.59161 1.8718 1.8812 1.8451-1.8451 0.59165 0.5916-1.77 1.77 1.7701 1.7791-0.59161 0.5916-1.8717-1.8813-1.8451 1.8451-0.59161-0.5916z"/><path d="m10.878 3.9183v0.58167h0.7849l1.6579-1.6579 0.5916 0.59161-1.5698 1.5698 0.0189 0.04949c0.3304 0.86212 0.5165 1.8351 0.5165 2.8653 0 0.1957-0.0067 0.38933-0.0199 0.58053l-3e-3 0.04364h2.0654v0.83666h-2.1705l-0.0061 0.03349c-0.1764 0.96445-0.5195 1.8438-0.9869 2.5838l-0.0347 0.0551 1.9964 2.0065-0.5931 0.5901-1.9098-1.9194-0.0577 0.0645c-0.8627 0.965-1.9806 1.5435-3.1984 1.5435-1.2367 0-2.3704-0.5966-3.2384-1.5887l-0.05749-0.0657-1.8717 1.8717-0.59162-0.5916 1.9632-1.9632-0.03399-0.055c-0.45068-0.729-0.782-1.5897-0.95424-2.5316l-0.00612-0.03349h-2.1688v-0.83666h2.0637l-3e-3 -0.04364c-0.01315-0.1912-0.01986-0.38483-0.01986-0.58053 0-1.0167 0.18128-1.9778 0.50362-2.8315l0.01857-0.04919-1.6109-1.619 0.59311-0.59012 1.6631 1.6715h0.83249v-0.58167c0-1.6118 1.3066-2.9183 2.9183-2.9183s2.9183 1.3066 2.9183 2.9183zm-5 0v0.58167h4.1633v-0.58167c0-1.1497-0.93196-2.0817-2.0816-2.0817s-2.0817 0.93199-2.0817 2.0817zm5.7163 1.4712-0.0199-0.0529h-7.2295l-0.0199 0.0529c-0.28341 0.75313-0.44701 1.6105-0.44701 2.5288 0 1.6099 0.50298 3.0339 1.274 4.0363 0.77037 1.0015 1.771 1.5454 2.8076 1.5454s2.0373-0.5439 2.8076-1.5454c0.7711-1.0024 1.274-2.4263 1.274-4.0363 0-0.91822-0.1636-1.7756-0.447-2.5288z" clip-rule="evenodd" fill-rule="evenodd"/></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + fill="none" + version="1.1" + viewBox="0 0 16 16" + id="svg1551" + sodipodi:docname="syntaxError.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs1555" /> + <sodipodi:namedview + id="namedview1553" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="46.4375" + inkscape:cx="8.0215343" + inkscape:cy="8.0215343" + inkscape:window-width="1432" + inkscape:window-height="928" + inkscape:window-x="542" + inkscape:window-y="375" + inkscape:window-maximized="0" + inkscape:current-layer="svg1551" /> + <g + transform="matrix(1.0057 0 0 1.0258 -.0057471 -.025784)" + fill="#eff0f1" + id="g1549" + style="stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none"> + <path + d="m3.02 8.5017-0.00271-0.04081c8.7e-4 0.01361 0.00178 0.02722 0.00271 0.04081z" + id="path1543" + style="stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none" /> + <path + d="m7.2577 8.9047-1.7701-1.7791 0.59162-0.59161 1.8718 1.8812 1.8451-1.8451 0.59165 0.5916-1.77 1.77 1.7701 1.7791-0.59161 0.5916-1.8717-1.8813-1.8451 1.8451-0.59161-0.5916z" + id="path1545" + style="stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none" /> + <path + d="m10.878 3.9183v0.58167h0.7849l1.6579-1.6579 0.5916 0.59161-1.5698 1.5698 0.0189 0.04949c0.3304 0.86212 0.5165 1.8351 0.5165 2.8653 0 0.1957-0.0067 0.38933-0.0199 0.58053l-3e-3 0.04364h2.0654v0.83666h-2.1705l-0.0061 0.03349c-0.1764 0.96445-0.5195 1.8438-0.9869 2.5838l-0.0347 0.0551 1.9964 2.0065-0.5931 0.5901-1.9098-1.9194-0.0577 0.0645c-0.8627 0.965-1.9806 1.5435-3.1984 1.5435-1.2367 0-2.3704-0.5966-3.2384-1.5887l-0.05749-0.0657-1.8717 1.8717-0.59162-0.5916 1.9632-1.9632-0.03399-0.055c-0.45068-0.729-0.782-1.5897-0.95424-2.5316l-0.00612-0.03349h-2.1688v-0.83666h2.0637l-3e-3 -0.04364c-0.01315-0.1912-0.01986-0.38483-0.01986-0.58053 0-1.0167 0.18128-1.9778 0.50362-2.8315l0.01857-0.04919-1.6109-1.619 0.59311-0.59012 1.6631 1.6715h0.83249v-0.58167c0-1.6118 1.3066-2.9183 2.9183-2.9183s2.9183 1.3066 2.9183 2.9183zm-5 0v0.58167h4.1633v-0.58167c0-1.1497-0.93196-2.0817-2.0816-2.0817s-2.0817 0.93199-2.0817 2.0817zm5.7163 1.4712-0.0199-0.0529h-7.2295l-0.0199 0.0529c-0.28341 0.75313-0.44701 1.6105-0.44701 2.5288 0 1.6099 0.50298 3.0339 1.274 4.0363 0.77037 1.0015 1.771 1.5454 2.8076 1.5454s2.0373-0.5439 2.8076-1.5454c0.7711-1.0024 1.274-2.4263 1.274-4.0363 0-0.91822-0.1636-1.7756-0.447-2.5288z" + clip-rule="evenodd" + fill-rule="evenodd" + id="path1547" + style="fill:#da4453;fill-opacity:1;stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none" /> + <path + style="fill:#da4453;fill-opacity:1;stroke-width:0.116;stroke:#da4453;stroke-opacity:1;stroke-dasharray:none" + d="m 12.280822,14.04576 c -0.49278,-0.506325 -0.920069,-0.943133 -0.949533,-0.970683 l -0.05357,-0.05009 -0.309115,0.308584 C 10.267851,14.03312 9.4982733,14.457433 8.6463202,14.61398 8.3932086,14.66049 7.8364399,14.67651 7.5758655,14.64478 6.5899112,14.524708 5.6707551,14.029401 4.893171,13.199147 L 4.6827082,12.974428 3.7410849,13.928789 2.7994616,14.883149 2.5102941,14.592218 2.2211266,14.301287 3.0414602,13.465583 c 0.4511835,-0.459637 0.8655516,-0.879311 0.9208181,-0.932609 0.055267,-0.0533 0.1289762,-0.13249 0.1637991,-0.175983 l 0.063314,-0.07908 -0.15246,-0.272374 C 3.7030596,11.409066 3.4683422,10.797364 3.2971758,10.077644 3.2563876,9.9061377 3.2165007,9.7246299 3.2085381,9.6742934 L 3.1940608,9.5827725 H 2.0977034 1.0013459 V 9.1628533 8.7429341 l 1.039031,-1.15e-5 1.0390309,-1.12e-5 7.451e-4,-0.6729363 C 3.0807264,7.5519795 3.0898115,7.3276244 3.1196111,7.0955585 3.1988722,6.4783059 3.3155338,5.9547428 3.4907641,5.4298672 L 3.5867448,5.1423722 3.3600338,4.9022764 C 3.2353428,4.7702236 2.8721591,4.3956931 2.552959,4.0699865 L 1.9725954,3.4777927 2.2625302,3.1870794 2.552465,2.8963661 2.8811572,3.230148 c 0.1807807,0.1835801 0.5584334,0.5687753 0.8392283,0.8559893 l 0.5105361,0.5222072 h 0.417312 0.4173121 l 0.01207,-0.5006729 C 5.0909026,3.5565112 5.1220578,3.3519003 5.2463136,2.9997525 5.6832017,1.7615872 6.8441572,0.96111506 8.1184388,1.0194386 c 0.45277,0.020723 0.7918531,0.1113207 1.2032357,0.3214852 0.674667,0.3446696 1.1976885,0.9607014 1.4458115,1.7029241 0.1128,0.3374248 0.14287,0.5473142 0.155494,1.085358 l 0.01124,0.4791386 h 0.393775 0.393775 l 0.836288,-0.8527166 0.836287,-0.8527168 0.284956,0.298208 0.284956,0.298208 -0.252562,0.2584118 c -0.138909,0.1421265 -0.492353,0.5006729 -0.785431,0.7967698 l -0.53287,0.5383581 0.0989,0.2907133 c 0.183112,0.538254 0.328602,1.1997317 0.400227,1.81965 0.01621,0.1402925 0.02751,0.5024851 0.02772,0.8882875 l 3.51e-4,0.6514102 1.039031,3e-6 1.03903,3.3e-6 V 9.1628533 9.5827725 H 13.904072 12.80949 l -0.05754,0.2780906 c -0.07341,0.3548149 -0.206,0.8169489 -0.330165,1.1508089 -0.139652,0.375497 -0.448187,1.006924 -0.620571,1.270015 l -0.03629,0.05539 1.003939,1.028216 1.00394,1.028215 -0.285831,0.286421 c -0.157207,0.157531 -0.291311,0.286421 -0.298008,0.286421 -0.0067,0 -0.415359,-0.414267 -0.908138,-0.920593 z M 8.46363,13.793322 c 1.1792709,-0.191272 2.232087,-1.07477 2.915399,-2.446532 0.353839,-0.710338 0.576659,-1.4749188 0.683527,-2.3454441 0.05388,-0.438931 0.0538,-1.3984922 -1.72e-4,-1.8196501 -0.06995,-0.5459561 -0.16317,-0.9700287 -0.31952,-1.4535666 -0.09142,-0.2827183 -0.09632,-0.2943808 -0.115601,-0.2750956 -0.0066,0.00662 0.0033,0.048747 0.02207,0.093626 0.06621,0.1584601 0.205193,0.6623373 0.268786,0.974465 0.434605,2.1331237 -0.03645,4.3683414 -1.233095,5.8511404 -0.195338,0.242051 -0.614555,0.63961 -0.8559143,0.811697 -0.3784715,0.269846 -0.8483613,0.473226 -1.3082545,0.566244 -0.2810507,0.05685 -0.9542064,0.03613 -1.2314828,-0.03791 C 6.202411,13.422075 5.2686355,12.573986 4.651276,11.316285 4.4417016,10.889335 4.349319,10.658128 4.2315779,10.265902 3.8381545,8.9553059 3.8117573,7.497825 4.1575854,6.1805272 4.2330724,5.8929889 4.352443,5.5138847 4.3744312,5.4918553 c 0.00624,-0.00625 0.4393538,-0.016462 0.96247,-0.022683 L 6.2880215,5.4578595 5.3183576,5.4530214 4.3486936,5.448183 4.2585156,5.7227456 C 3.7109679,7.3898507 3.7701448,9.314195 4.4178929,10.905442 c 0.6465081,1.588201 1.8051269,2.667715 3.0975849,2.886099 0.2339163,0.03952 0.7099338,0.04042 0.9481522,0.0018 z M 6.730858,10.923284 C 7.0800909,10.570929 7.5012479,10.144342 7.6667626,9.9753135 L 7.9676985,9.667989 8.8901575,10.61596 c 0.5073527,0.521383 0.9338619,0.94797 0.9477987,0.94797 0.013937,0 0.160183,-0.135102 0.3249918,-0.300227 L 10.4626,10.963477 10.250166,10.741496 C 10.133327,10.619407 9.7391343,10.212084 9.3741821,9.8363331 9.0092298,9.4605829 8.7106326,9.1437229 8.7106326,9.1321996 c 0,-0.018032 0.2672357,-0.2943089 1.5372384,-1.5892475 L 10.463801,7.3227816 10.151185,7.0081107 9.8385695,6.6934398 8.9144693,7.6337899 7.990369,8.5741401 7.720704,8.2978371 C 6.7179818,7.2704336 6.128216,6.6756393 6.1122205,6.6756393 c -0.010222,0 -0.1533799,0.1350534 -0.3181293,0.3001189 l -0.2995443,0.3001186 0.082068,0.092883 c 0.045137,0.051085 0.4392816,0.4581448 0.875876,0.9045763 0.4365943,0.4464316 0.793808,0.8220681 0.793808,0.8347478 0,0.01268 -0.3918387,0.4222059 -0.870753,0.9100581 -0.6685437,0.681022 -0.8664764,0.894647 -0.8523376,0.919911 0.010128,0.0181 0.1427475,0.165446 0.2947096,0.327438 0.1519621,0.161993 0.2766721,0.295412 0.2771332,0.296486 4.608e-4,0.0011 0.2865742,-0.286338 0.6358069,-0.638693 z M 10.110187,4.2799462 C 10.109868,3.6871253 10.054105,3.391515 9.8735649,3.025572 9.6074627,2.4861996 9.102754,2.0699119 8.5275908,1.9154022 8.267739,1.8455966 7.8573218,1.8349526 7.5864963,1.8909955 6.9406146,2.02465 6.3957872,2.4533483 6.1111162,3.051901 5.9491237,3.3925084 5.9089869,3.5949254 5.8953652,4.1399731 l -0.011705,0.4683714 h 2.1133517 2.1133511 l -1.72e-4,-0.3283983 z" + id="path1307" + transform="matrix(0.99433231,0,0,0.9748489,0.00571453,0.0251355)" /> + <path + style="fill:#da4453;fill-opacity:1;stroke-width:0.116;stroke:#da4453;stroke-opacity:1;stroke-dasharray:none" + d="M 5.9388987,4.1184388 C 5.9540795,3.5665119 5.9818592,3.4101082 6.1144076,3.1302958 6.2405962,2.863909 6.3423107,2.7143666 6.5345016,2.5126666 6.9631967,2.0627609 7.549639,1.8450535 8.1884253,1.8986739 c 0.4582592,0.038467 0.8625893,0.2209417 1.2057064,0.5441376 0.3159268,0.2975841 0.4851611,0.5835128 0.6125803,1.0349812 0.03426,0.1214068 0.04484,0.2439789 0.05434,0.6298789 l 0.0118,0.4791386 H 7.9994325 5.9260161 Z" + id="path1309" + transform="matrix(0.99433231,0,0,0.9748489,0.00571453,0.0251355)" /> + </g> + <path + style="fill:#da4453;stroke-width:0.0312463;stroke:#da4453;stroke-opacity:1" + d="M 5.9278531,4.0969044 C 5.9395103,3.5261348 5.9645535,3.4003933 6.1369353,3.0471063 6.4920966,2.3192228 7.1996819,1.8734859 8,1.8734859 c 1.0071287,0 1.8527834,0.7122067 2.044278,1.7216814 0.02321,0.1223619 0.03378,0.3053944 0.03378,0.5848697 V 4.5868102 H 7.9979547 5.9178475 Z" + id="path1557" /> + <path + style="fill:#da4453;stroke-width:0.0312463;stroke:#da4453;stroke-opacity:1" + d="M 7.4985826,13.77018 C 6.3241025,13.5556 5.287698,12.664845 4.6183904,11.294751 3.9496019,9.9257193 3.7406289,8.2957207 4.0289608,6.6971736 4.0982105,6.3132448 4.2514542,5.7536993 4.3607031,5.4858681 4.3752572,5.4501877 4.5688909,5.448183 8.0007567,5.448183 h 3.6246813 l 0.0465,0.1238224 c 0.02557,0.068102 0.07859,0.2352624 0.117818,0.371467 0.530371,1.8416398 0.357654,3.8737232 -0.464665,5.4669806 -0.492496,0.95422 -1.178263,1.678158 -1.963818,2.073128 -0.2239218,0.112585 -0.6217268,0.244102 -0.8659826,0.286299 -0.2369798,0.04094 -0.773384,0.0411 -0.9967068,2.99e-4 z M 10.152206,11.263678 10.451884,10.963425 9.9150404,10.412446 C 9.6197763,10.109407 9.2198221,9.6971017 9.0262536,9.4962113 L 8.6743106,9.1309556 9.5538444,8.236138 C 10.037588,7.7439884 10.435833,7.3343788 10.438834,7.3258946 c 0.003,-0.00848 -0.130278,-0.1509001 -0.296176,-0.3164798 L 9.841027,6.7083607 9.6282827,6.923494 C 9.5112734,7.0418172 9.0975653,7.4632571 8.7089314,7.8600269 8.3202974,8.2567968 7.9969559,8.5814266 7.9903948,8.5814266 c -0.00656,0 -0.428298,-0.4263795 -0.9371934,-0.94751 C 6.544306,7.112786 6.1226741,6.6839514 6.1162418,6.6809507 6.1098095,6.6779501 5.9698941,6.8104059 5.8053185,6.9752971 L 5.5060901,7.2750993 5.6655619,7.4472696 c 0.087709,0.094694 0.4876507,0.507243 0.888758,0.9167765 l 0.7292865,0.744606 -0.8800267,0.8958989 c -0.4840146,0.492745 -0.8824048,0.902248 -0.8853116,0.910008 -0.00291,0.0078 0.1279142,0.15307 0.2907133,0.322912 l 0.2959984,0.308804 0.3660835,-0.373459 C 6.6724092,10.967413 7.0916555,10.541348 7.4027219,10.226005 L 7.968297,9.6526542 8.8984162,10.608292 c 0.5115654,0.525601 0.9355176,0.955638 0.9421157,0.955638 0.0066,0 0.1468516,-0.135114 0.3116741,-0.300252 z" + id="path1559" /> +</svg>
--- a/src/eric7/icons/breeze-dark/syntaxError22.svg Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/icons/breeze-dark/syntaxError22.svg Sat Sep 23 15:06:36 2023 +0200 @@ -1,2 +1,60 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg fill="none" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(1.4368 0 0 1.4654 -.43678 -.46541)" fill="#eff0f1"><path d="m3.02 8.5017-0.00271-0.04081c8.7e-4 0.01361 0.00178 0.02722 0.00271 0.04081z"/><path d="m7.2577 8.9047-1.7701-1.7791 0.59162-0.59161 1.8718 1.8812 1.8451-1.8451 0.59165 0.5916-1.77 1.77 1.7701 1.7791-0.59161 0.5916-1.8717-1.8813-1.8451 1.8451-0.59161-0.5916z"/><path d="m10.878 3.9183v0.58167h0.7849l1.6579-1.6579 0.5916 0.59161-1.5698 1.5698 0.0189 0.04949c0.3304 0.86212 0.5165 1.8351 0.5165 2.8653 0 0.1957-0.0067 0.38933-0.0199 0.58053l-3e-3 0.04364h2.0654v0.83666h-2.1705l-0.0061 0.03349c-0.1764 0.96445-0.5195 1.8438-0.9869 2.5838l-0.0347 0.0551 1.9964 2.0065-0.5931 0.5901-1.9098-1.9194-0.0577 0.0645c-0.8627 0.965-1.9806 1.5435-3.1984 1.5435-1.2367 0-2.3704-0.5966-3.2384-1.5887l-0.05749-0.0657-1.8717 1.8717-0.59162-0.5916 1.9632-1.9632-0.03399-0.055c-0.45068-0.729-0.782-1.5897-0.95424-2.5316l-0.00612-0.03349h-2.1688v-0.83666h2.0637l-3e-3 -0.04364c-0.01315-0.1912-0.01986-0.38483-0.01986-0.58053 0-1.0167 0.18128-1.9778 0.50362-2.8315l0.01857-0.04919-1.6109-1.619 0.59311-0.59012 1.6631 1.6715h0.83249v-0.58167c0-1.6118 1.3066-2.9183 2.9183-2.9183s2.9183 1.3066 2.9183 2.9183zm-5 0v0.58167h4.1633v-0.58167c0-1.1497-0.93196-2.0817-2.0816-2.0817s-2.0817 0.93199-2.0817 2.0817zm5.7163 1.4712-0.0199-0.0529h-7.2295l-0.0199 0.0529c-0.28341 0.75313-0.44701 1.6105-0.44701 2.5288 0 1.6099 0.50298 3.0339 1.274 4.0363 0.77037 1.0015 1.771 1.5454 2.8076 1.5454s2.0373-0.5439 2.8076-1.5454c0.7711-1.0024 1.274-2.4263 1.274-4.0363 0-0.91822-0.1636-1.7756-0.447-2.5288z" clip-rule="evenodd" fill-rule="evenodd"/></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + fill="none" + version="1.1" + viewBox="0 0 22 22" + id="svg1877" + sodipodi:docname="syntaxError22.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs1881" /> + <sodipodi:namedview + id="namedview1879" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="33.772727" + inkscape:cx="11" + inkscape:cy="11.02961" + inkscape:window-width="1432" + inkscape:window-height="928" + inkscape:window-x="1633" + inkscape:window-y="44" + inkscape:window-maximized="0" + inkscape:current-layer="svg1877" /> + <path + d="m 3.902356,11.992981 -0.00389,-0.0598 c 0.00125,0.01994 0.00256,0.03989 0.00389,0.0598 z" + id="path1869" + style="fill:#eff0f1;stroke:none;stroke-width:1.45103;stroke-opacity:1" /> + <path + d="M 9.6784196,12.577212 6.3212903,9.1358486 7.4433426,7.9914808 10.993354,11.630339 14.492726,8.06131 l 1.122109,1.1443485 -3.356939,3.4237605 3.35713,3.441363 -1.122034,1.144348 -3.549822,-3.639051 -3.4993723,3.569029 -1.1220333,-1.144349 z" + id="path1871" + style="fill:#eff0f1;stroke:none;stroke-width:1.91536;stroke-opacity:1" /> + <path + d="m 15.08981,5.39346 v 0.8272061 h 1.100299 l 2.324098,-2.3577371 0.829324,0.8413419 -2.200597,2.2324481 0.0265,0.070381 c 0.463166,1.2260403 0.724047,2.6097372 0.724047,4.074809 0,0.278309 -0.0094,0.553674 -0.02789,0.825584 l -0.0042,0.06206 h 2.895343 v 1.189833 h -3.042693 l -0.0086,0.04763 c -0.247284,1.371566 -0.728252,2.62211 -1.383469,3.67448 l -0.04864,0.07836 2.798618,2.85349 -0.831427,0.839194 -2.67722,-2.729622 -0.08089,0.09173 c -1.20936,1.372348 -2.776469,2.195046 -4.483621,2.195046 -1.733646,0 -3.3229037,-0.848439 -4.5396943,-2.259327 l -0.080541,-0.09343 -2.6238101,2.661787 -0.8293522,-0.841329 2.7520778,-2.791911 -0.047649,-0.07822 C 4.9980458,15.770533 4.5335907,14.546512 4.292139,13.207014 l -0.00858,-0.04763 H 1.243266 v -1.189829 h 2.8929617 l -0.0042,-0.06206 c -0.018439,-0.271912 -0.027845,-0.547277 -0.027845,-0.825586 0,-1.4458732 0.2541242,-2.8126754 0.7059909,-4.0267413 L 4.8362043,6.9852134 2.5779922,4.6827968 3.4094331,3.843574 5.7408209,6.2206519 H 6.9078324 V 5.3934457 c 0,-2.2921771 1.8316345,-4.1501803 4.0909686,-4.1501803 2.259333,0 4.090967,1.8581455 4.090967,4.1501803 z m -7.0091624,0 V 6.2206661 H 13.916897 V 5.39346 c 0,-1.6350143 -1.306451,-2.9604327 -2.918055,-2.9604327 -1.6116024,0 -2.9181944,1.3254041 -2.9181944,2.9604327 z m 8.0132944,2.0922268 -0.02789,-0.075231 H 5.9314981 l -0.027896,0.075231 C 5.5063082,8.55673 5.2769684,9.7760156 5.2769684,11.081951 c 0,2.289474 0.7050938,4.314577 1.7859347,5.740113 1.0799297,1.424256 2.4826455,2.197749 3.9357849,2.197749 1.45314,0 2.855954,-0.773493 3.935786,-2.197749 1.080952,-1.425536 1.785934,-3.450495 1.785934,-5.740113 0,-1.3058219 -0.22934,-2.5251214 -0.62662,-3.5962642 z" + clip-rule="evenodd" + fill-rule="evenodd" + id="path1873" + style="fill:#da4453;fill-opacity:1;stroke:#da4453;stroke-width:0.486531;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#da4453;stroke:#da4453;stroke-width:0.015;stroke-dasharray:none" + d="m 15.621375,16.091714 c -0.0012,-0.01692 -0.753846,-0.802145 -1.672447,-1.744947 l -1.670183,-1.714185 0.611637,-0.629036 c 0.3364,-0.34597 1.089326,-1.11604 1.673169,-1.711267 L 15.625082,9.2100494 15.066915,8.6321315 C 14.759923,8.3142766 14.502086,8.0545086 14.493943,8.0548692 14.485801,8.0552298 13.699664,8.8533298 12.746972,9.8284248 11.79428,10.80352 11.007794,11.602601 10.999224,11.604162 10.990655,11.605722 10.19187,10.794213 9.2241461,9.8008075 8.2564229,8.8074024 7.457179,7.9946164 7.4480486,7.9946164 c -0.028439,0 -1.1263797,1.1093847 -1.1263797,1.1381197 0,0.014953 0.256494,0.2880566 0.5699866,0.6068977 0.3134925,0.3188412 1.0656995,1.0870052 1.6715709,1.7070312 l 1.1015847,1.127319 -1.6753665,1.709217 -1.6753664,1.709218 -0.048966,-0.08302 C 6.0540228,15.551508 5.7036795,14.655833 5.5372432,14.048556 4.9623517,11.950944 5.036153,9.5417567 5.7353973,7.5799612 l 0.068557,-0.1923434 h 5.1923497 5.192349 l 0.05852,0.1480484 c 0.10233,0.258897 0.312389,1.0258753 0.390054,1.4241896 0.391437,2.0075342 0.236272,4.0728402 -0.444968,5.9226812 -0.126298,0.342951 -0.566079,1.274447 -0.570881,1.209177 z" + id="path2432" /> + <path + style="fill:#da4453;stroke:#da4453;stroke-width:0.015;stroke-dasharray:none" + d="M 10.395947,19.260828 C 9.1725,19.061243 8.1128973,18.413681 7.1746738,17.292192 6.9080894,16.973534 6.3512786,16.145921 6.3512786,16.068342 c 0,-0.0077 0.2460196,0.234523 0.5467102,0.538247 l 0.5467102,0.552227 1.0873708,-1.110364 c 0.598054,-0.6107 1.3880035,-1.411919 1.7554432,-1.780487 l 0.668072,-0.670123 1.421266,1.461772 c 0.781695,0.803975 1.577864,1.618348 1.769264,1.809719 l 0.347999,0.347947 0.562499,-0.561914 c 0.309374,-0.309053 0.562499,-0.551909 0.562499,-0.53968 0,0.04548 -0.400057,0.667814 -0.603554,0.93889 -0.254577,0.339117 -0.78032,0.889195 -1.084199,1.134383 -0.663184,0.535095 -1.343474,0.868779 -2.098862,1.029496 -0.379767,0.0808 -1.075246,0.101314 -1.43655,0.04237 z" + id="path2434" /> + <path + style="fill:#da4453;stroke:#da4453;stroke-width:0.0148048" + d="m 8.0094213,5.6838936 c 0,-0.2449218 0.014244,-0.5730503 0.031652,-0.7291744 C 8.1819227,3.6915745 9.0287556,2.6847423 10.24549,2.3338036 10.453259,2.2738776 10.544472,2.2658227 11,2.2671743 c 0.436618,0.0013 0.554443,0.011591 0.748645,0.065418 1.212724,0.3361314 2.080827,1.3742658 2.211151,2.644237 0.01693,0.1649833 0.03078,0.4917611 0.03078,0.7261728 V 6.1292059 H 11 8.0094213 Z" + id="path2436" /> +</svg>
--- a/src/eric7/icons/breeze-light/fileModified.svg Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/icons/breeze-light/fileModified.svg Sat Sep 23 15:06:36 2023 +0200 @@ -1,4 +1,74 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><defs><style type="text/css">.ColorScheme-Text { +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + version="1.1" + viewBox="0 0 22 22" + id="svg5677" + sodipodi:docname="fileModified.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview5679" + pagecolor="#fffff0" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.05882353" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="47.761849" + inkscape:cx="11.42125" + inkscape:cy="10.824539" + inkscape:window-width="2590" + inkscape:window-height="1245" + inkscape:window-x="708" + inkscape:window-y="10" + inkscape:window-maximized="0" + inkscape:current-layer="svg5677" /> + <defs + id="defs5669"> + <style + type="text/css" + id="style5667">.ColorScheme-Text { color:#eff0f1; - }</style></defs><path d="m2 1v20h11.571v-1.25h-10.286v-17.5h10.286v5h5.1429v7.5h1.2857v-8.7598l-5.1328-4.9902-0.01004 0.012207v-0.012207h-11.571z" fill="#232629"/><path d="m13.571 20.401h5.8129v-5.6514" fill="none" stroke="#232629" stroke-width="1.2142px"/><path class="ColorScheme-Text" d="m6 8v10h10v-8.099l-1.901-1.901h-7.2656zm0.83333 0.83333h1.6667v3.3333h5v-3.3333h0.23438l1.4323 1.4323v6.901h-0.83333v-3.3333h-6.6927v3.3333h-0.80729zm2.5 0h1.5885v2.5h-1.5885zm-0.83333 5.8333h5v2.5h-5z" color="#eff0f1" fill="#232629"/></svg> + }</style> + </defs> + <rect + style="fill:#232629;fill-opacity:1;stroke:#232629;stroke-width:0.099;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + id="rect12968" + width="6.3511429" + height="6.501143" + x="13.593644" + y="14.446873" /> + <path + d="m2 1v20h11.571v-1.25h-10.286v-17.5h10.286v5h5.1429v7.5h1.2857v-8.7598l-5.1328-4.9902-0.01004 0.012207v-0.012207h-11.571z" + fill="#eff0f1" + id="path5671" + style="fill:#232629;fill-opacity:1" /> + <path + class="ColorScheme-Text" + d="m6 8v10h10v-8.099l-1.901-1.901h-7.2656zm0.83333 0.83333h1.6667v3.3333h5v-3.3333h0.23438l1.4323 1.4323v6.901h-0.83333v-3.3333h-6.6927v3.3333h-0.80729zm2.5 0h1.5885v2.5h-1.5885zm-0.83333 5.8333h5v2.5h-5z" + color="#eff0f1" + fill="currentColor" + id="path5675" + style="fill:#000000;fill-opacity:1" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="m 8.4461642,19.757067 -5.1446837,-0.0076 v -8.74958 -8.7495805 h 5.1224764 5.1224761 v 2.5020188 2.5020189 h 2.576043 2.576044 v 3.7438778 c 0,2.46398 0.01012,3.750135 0.02961,3.762179 0.01936,0.01197 0.02961,0.883663 0.02961,2.518571 v 2.500271 l -2.583446,-0.0073 c -1.420895,-0.004 -4.898553,-0.01072 -7.7281288,-0.01489 z M 16.004038,13.938933 V 9.8751735 L 15.064104,8.9348949 14.124169,7.9946164 H 10.060066 5.9959623 v 5.0040376 5.004038 H 11 16.004038 Z" + id="path6301" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="M 6.8546433,12.998654 V 8.8532974 H 7.6689098 8.4831763 V 10.51144 12.169583 H 11 13.516824 V 10.51144 8.8532974 h 0.111267 c 0.105768,0 0.146016,0.034771 0.814267,0.7034569 l 0.702999,0.7034567 v 3.4419 3.4419 h -0.399731 -0.399731 v -1.658143 -1.658143 h -3.3607 -3.3606997 v 1.658143 1.658143 h -0.384926 -0.384926 z" + id="path6303" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="M 9.3418573,10.0821 V 8.8532974 h 0.7846567 0.784657 V 10.0821 11.310902 H 10.126514 9.3418573 Z" + id="path6305" /> + <path + style="fill:#ffc300;fill-opacity:1;stroke:#000000;stroke-width:0.00592194;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1" + d="M 8.512786,15.915209 V 14.686406 H 11 13.487214 v 1.228803 1.228802 H 11 8.512786 Z" + id="path6307" /> +</svg>
--- a/src/eric7/icons/breeze-light/syntaxError.svg Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/icons/breeze-light/syntaxError.svg Sat Sep 23 15:06:36 2023 +0200 @@ -1,2 +1,72 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg fill="none" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(1.0057 0 0 1.0258 -.0057471 -.025784)" fill="#232629"><path d="m3.02 8.5017-0.00271-0.04081c8.7e-4 0.01361 0.00178 0.02722 0.00271 0.04081z"/><path d="m7.2577 8.9047-1.7701-1.7791 0.59162-0.59161 1.8718 1.8812 1.8451-1.8451 0.59165 0.5916-1.77 1.77 1.7701 1.7791-0.59161 0.5916-1.8717-1.8813-1.8451 1.8451-0.59161-0.5916z"/><path d="m10.878 3.9183v0.58167h0.7849l1.6579-1.6579 0.5916 0.59161-1.5698 1.5698 0.0189 0.04949c0.3304 0.86212 0.5165 1.8351 0.5165 2.8653 0 0.1957-0.0067 0.38933-0.0199 0.58053l-3e-3 0.04364h2.0654v0.83666h-2.1705l-0.0061 0.03349c-0.1764 0.96445-0.5195 1.8438-0.9869 2.5838l-0.0347 0.0551 1.9964 2.0065-0.5931 0.5901-1.9098-1.9194-0.0577 0.0645c-0.8627 0.965-1.9806 1.5435-3.1984 1.5435-1.2367 0-2.3704-0.5966-3.2384-1.5887l-0.05749-0.0657-1.8717 1.8717-0.59162-0.5916 1.9632-1.9632-0.03399-0.055c-0.45068-0.729-0.782-1.5897-0.95424-2.5316l-0.00612-0.03349h-2.1688v-0.83666h2.0637l-3e-3 -0.04364c-0.01315-0.1912-0.01986-0.38483-0.01986-0.58053 0-1.0167 0.18128-1.9778 0.50362-2.8315l0.01857-0.04919-1.6109-1.619 0.59311-0.59012 1.6631 1.6715h0.83249v-0.58167c0-1.6118 1.3066-2.9183 2.9183-2.9183s2.9183 1.3066 2.9183 2.9183zm-5 0v0.58167h4.1633v-0.58167c0-1.1497-0.93196-2.0817-2.0816-2.0817s-2.0817 0.93199-2.0817 2.0817zm5.7163 1.4712-0.0199-0.0529h-7.2295l-0.0199 0.0529c-0.28341 0.75313-0.44701 1.6105-0.44701 2.5288 0 1.6099 0.50298 3.0339 1.274 4.0363 0.77037 1.0015 1.771 1.5454 2.8076 1.5454s2.0373-0.5439 2.8076-1.5454c0.7711-1.0024 1.274-2.4263 1.274-4.0363 0-0.91822-0.1636-1.7756-0.447-2.5288z" clip-rule="evenodd" fill-rule="evenodd"/></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + fill="none" + version="1.1" + viewBox="0 0 16 16" + id="svg1551" + sodipodi:docname="syntaxError.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs1555" /> + <sodipodi:namedview + id="namedview1553" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="46.4375" + inkscape:cx="8.0215343" + inkscape:cy="8.0215343" + inkscape:window-width="1432" + inkscape:window-height="928" + inkscape:window-x="542" + inkscape:window-y="375" + inkscape:window-maximized="0" + inkscape:current-layer="svg1551" /> + <g + transform="matrix(1.0057 0 0 1.0258 -.0057471 -.025784)" + fill="#eff0f1" + id="g1549" + style="stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none"> + <path + d="m3.02 8.5017-0.00271-0.04081c8.7e-4 0.01361 0.00178 0.02722 0.00271 0.04081z" + id="path1543" + style="stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none" /> + <path + d="m7.2577 8.9047-1.7701-1.7791 0.59162-0.59161 1.8718 1.8812 1.8451-1.8451 0.59165 0.5916-1.77 1.77 1.7701 1.7791-0.59161 0.5916-1.8717-1.8813-1.8451 1.8451-0.59161-0.5916z" + id="path1545" + style="stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none" /> + <path + d="m10.878 3.9183v0.58167h0.7849l1.6579-1.6579 0.5916 0.59161-1.5698 1.5698 0.0189 0.04949c0.3304 0.86212 0.5165 1.8351 0.5165 2.8653 0 0.1957-0.0067 0.38933-0.0199 0.58053l-3e-3 0.04364h2.0654v0.83666h-2.1705l-0.0061 0.03349c-0.1764 0.96445-0.5195 1.8438-0.9869 2.5838l-0.0347 0.0551 1.9964 2.0065-0.5931 0.5901-1.9098-1.9194-0.0577 0.0645c-0.8627 0.965-1.9806 1.5435-3.1984 1.5435-1.2367 0-2.3704-0.5966-3.2384-1.5887l-0.05749-0.0657-1.8717 1.8717-0.59162-0.5916 1.9632-1.9632-0.03399-0.055c-0.45068-0.729-0.782-1.5897-0.95424-2.5316l-0.00612-0.03349h-2.1688v-0.83666h2.0637l-3e-3 -0.04364c-0.01315-0.1912-0.01986-0.38483-0.01986-0.58053 0-1.0167 0.18128-1.9778 0.50362-2.8315l0.01857-0.04919-1.6109-1.619 0.59311-0.59012 1.6631 1.6715h0.83249v-0.58167c0-1.6118 1.3066-2.9183 2.9183-2.9183s2.9183 1.3066 2.9183 2.9183zm-5 0v0.58167h4.1633v-0.58167c0-1.1497-0.93196-2.0817-2.0816-2.0817s-2.0817 0.93199-2.0817 2.0817zm5.7163 1.4712-0.0199-0.0529h-7.2295l-0.0199 0.0529c-0.28341 0.75313-0.44701 1.6105-0.44701 2.5288 0 1.6099 0.50298 3.0339 1.274 4.0363 0.77037 1.0015 1.771 1.5454 2.8076 1.5454s2.0373-0.5439 2.8076-1.5454c0.7711-1.0024 1.274-2.4263 1.274-4.0363 0-0.91822-0.1636-1.7756-0.447-2.5288z" + clip-rule="evenodd" + fill-rule="evenodd" + id="path1547" + style="fill:#da4453;fill-opacity:1;stroke:#da4453;stroke-opacity:1;stroke-width:0.11420692;stroke-dasharray:none" /> + <path + style="fill:#da4453;fill-opacity:1;stroke-width:0.116;stroke:#da4453;stroke-opacity:1;stroke-dasharray:none" + d="m 12.280822,14.04576 c -0.49278,-0.506325 -0.920069,-0.943133 -0.949533,-0.970683 l -0.05357,-0.05009 -0.309115,0.308584 C 10.267851,14.03312 9.4982733,14.457433 8.6463202,14.61398 8.3932086,14.66049 7.8364399,14.67651 7.5758655,14.64478 6.5899112,14.524708 5.6707551,14.029401 4.893171,13.199147 L 4.6827082,12.974428 3.7410849,13.928789 2.7994616,14.883149 2.5102941,14.592218 2.2211266,14.301287 3.0414602,13.465583 c 0.4511835,-0.459637 0.8655516,-0.879311 0.9208181,-0.932609 0.055267,-0.0533 0.1289762,-0.13249 0.1637991,-0.175983 l 0.063314,-0.07908 -0.15246,-0.272374 C 3.7030596,11.409066 3.4683422,10.797364 3.2971758,10.077644 3.2563876,9.9061377 3.2165007,9.7246299 3.2085381,9.6742934 L 3.1940608,9.5827725 H 2.0977034 1.0013459 V 9.1628533 8.7429341 l 1.039031,-1.15e-5 1.0390309,-1.12e-5 7.451e-4,-0.6729363 C 3.0807264,7.5519795 3.0898115,7.3276244 3.1196111,7.0955585 3.1988722,6.4783059 3.3155338,5.9547428 3.4907641,5.4298672 L 3.5867448,5.1423722 3.3600338,4.9022764 C 3.2353428,4.7702236 2.8721591,4.3956931 2.552959,4.0699865 L 1.9725954,3.4777927 2.2625302,3.1870794 2.552465,2.8963661 2.8811572,3.230148 c 0.1807807,0.1835801 0.5584334,0.5687753 0.8392283,0.8559893 l 0.5105361,0.5222072 h 0.417312 0.4173121 l 0.01207,-0.5006729 C 5.0909026,3.5565112 5.1220578,3.3519003 5.2463136,2.9997525 5.6832017,1.7615872 6.8441572,0.96111506 8.1184388,1.0194386 c 0.45277,0.020723 0.7918531,0.1113207 1.2032357,0.3214852 0.674667,0.3446696 1.1976885,0.9607014 1.4458115,1.7029241 0.1128,0.3374248 0.14287,0.5473142 0.155494,1.085358 l 0.01124,0.4791386 h 0.393775 0.393775 l 0.836288,-0.8527166 0.836287,-0.8527168 0.284956,0.298208 0.284956,0.298208 -0.252562,0.2584118 c -0.138909,0.1421265 -0.492353,0.5006729 -0.785431,0.7967698 l -0.53287,0.5383581 0.0989,0.2907133 c 0.183112,0.538254 0.328602,1.1997317 0.400227,1.81965 0.01621,0.1402925 0.02751,0.5024851 0.02772,0.8882875 l 3.51e-4,0.6514102 1.039031,3e-6 1.03903,3.3e-6 V 9.1628533 9.5827725 H 13.904072 12.80949 l -0.05754,0.2780906 c -0.07341,0.3548149 -0.206,0.8169489 -0.330165,1.1508089 -0.139652,0.375497 -0.448187,1.006924 -0.620571,1.270015 l -0.03629,0.05539 1.003939,1.028216 1.00394,1.028215 -0.285831,0.286421 c -0.157207,0.157531 -0.291311,0.286421 -0.298008,0.286421 -0.0067,0 -0.415359,-0.414267 -0.908138,-0.920593 z M 8.46363,13.793322 c 1.1792709,-0.191272 2.232087,-1.07477 2.915399,-2.446532 0.353839,-0.710338 0.576659,-1.4749188 0.683527,-2.3454441 0.05388,-0.438931 0.0538,-1.3984922 -1.72e-4,-1.8196501 -0.06995,-0.5459561 -0.16317,-0.9700287 -0.31952,-1.4535666 -0.09142,-0.2827183 -0.09632,-0.2943808 -0.115601,-0.2750956 -0.0066,0.00662 0.0033,0.048747 0.02207,0.093626 0.06621,0.1584601 0.205193,0.6623373 0.268786,0.974465 0.434605,2.1331237 -0.03645,4.3683414 -1.233095,5.8511404 -0.195338,0.242051 -0.614555,0.63961 -0.8559143,0.811697 -0.3784715,0.269846 -0.8483613,0.473226 -1.3082545,0.566244 -0.2810507,0.05685 -0.9542064,0.03613 -1.2314828,-0.03791 C 6.202411,13.422075 5.2686355,12.573986 4.651276,11.316285 4.4417016,10.889335 4.349319,10.658128 4.2315779,10.265902 3.8381545,8.9553059 3.8117573,7.497825 4.1575854,6.1805272 4.2330724,5.8929889 4.352443,5.5138847 4.3744312,5.4918553 c 0.00624,-0.00625 0.4393538,-0.016462 0.96247,-0.022683 L 6.2880215,5.4578595 5.3183576,5.4530214 4.3486936,5.448183 4.2585156,5.7227456 C 3.7109679,7.3898507 3.7701448,9.314195 4.4178929,10.905442 c 0.6465081,1.588201 1.8051269,2.667715 3.0975849,2.886099 0.2339163,0.03952 0.7099338,0.04042 0.9481522,0.0018 z M 6.730858,10.923284 C 7.0800909,10.570929 7.5012479,10.144342 7.6667626,9.9753135 L 7.9676985,9.667989 8.8901575,10.61596 c 0.5073527,0.521383 0.9338619,0.94797 0.9477987,0.94797 0.013937,0 0.160183,-0.135102 0.3249918,-0.300227 L 10.4626,10.963477 10.250166,10.741496 C 10.133327,10.619407 9.7391343,10.212084 9.3741821,9.8363331 9.0092298,9.4605829 8.7106326,9.1437229 8.7106326,9.1321996 c 0,-0.018032 0.2672357,-0.2943089 1.5372384,-1.5892475 L 10.463801,7.3227816 10.151185,7.0081107 9.8385695,6.6934398 8.9144693,7.6337899 7.990369,8.5741401 7.720704,8.2978371 C 6.7179818,7.2704336 6.128216,6.6756393 6.1122205,6.6756393 c -0.010222,0 -0.1533799,0.1350534 -0.3181293,0.3001189 l -0.2995443,0.3001186 0.082068,0.092883 c 0.045137,0.051085 0.4392816,0.4581448 0.875876,0.9045763 0.4365943,0.4464316 0.793808,0.8220681 0.793808,0.8347478 0,0.01268 -0.3918387,0.4222059 -0.870753,0.9100581 -0.6685437,0.681022 -0.8664764,0.894647 -0.8523376,0.919911 0.010128,0.0181 0.1427475,0.165446 0.2947096,0.327438 0.1519621,0.161993 0.2766721,0.295412 0.2771332,0.296486 4.608e-4,0.0011 0.2865742,-0.286338 0.6358069,-0.638693 z M 10.110187,4.2799462 C 10.109868,3.6871253 10.054105,3.391515 9.8735649,3.025572 9.6074627,2.4861996 9.102754,2.0699119 8.5275908,1.9154022 8.267739,1.8455966 7.8573218,1.8349526 7.5864963,1.8909955 6.9406146,2.02465 6.3957872,2.4533483 6.1111162,3.051901 5.9491237,3.3925084 5.9089869,3.5949254 5.8953652,4.1399731 l -0.011705,0.4683714 h 2.1133517 2.1133511 l -1.72e-4,-0.3283983 z" + id="path1307" + transform="matrix(0.99433231,0,0,0.9748489,0.00571453,0.0251355)" /> + <path + style="fill:#da4453;fill-opacity:1;stroke-width:0.116;stroke:#da4453;stroke-opacity:1;stroke-dasharray:none" + d="M 5.9388987,4.1184388 C 5.9540795,3.5665119 5.9818592,3.4101082 6.1144076,3.1302958 6.2405962,2.863909 6.3423107,2.7143666 6.5345016,2.5126666 6.9631967,2.0627609 7.549639,1.8450535 8.1884253,1.8986739 c 0.4582592,0.038467 0.8625893,0.2209417 1.2057064,0.5441376 0.3159268,0.2975841 0.4851611,0.5835128 0.6125803,1.0349812 0.03426,0.1214068 0.04484,0.2439789 0.05434,0.6298789 l 0.0118,0.4791386 H 7.9994325 5.9260161 Z" + id="path1309" + transform="matrix(0.99433231,0,0,0.9748489,0.00571453,0.0251355)" /> + </g> + <path + style="fill:#da4453;stroke-width:0.0312463;stroke:#da4453;stroke-opacity:1" + d="M 5.9278531,4.0969044 C 5.9395103,3.5261348 5.9645535,3.4003933 6.1369353,3.0471063 6.4920966,2.3192228 7.1996819,1.8734859 8,1.8734859 c 1.0071287,0 1.8527834,0.7122067 2.044278,1.7216814 0.02321,0.1223619 0.03378,0.3053944 0.03378,0.5848697 V 4.5868102 H 7.9979547 5.9178475 Z" + id="path1557" /> + <path + style="fill:#da4453;stroke-width:0.0312463;stroke:#da4453;stroke-opacity:1" + d="M 7.4985826,13.77018 C 6.3241025,13.5556 5.287698,12.664845 4.6183904,11.294751 3.9496019,9.9257193 3.7406289,8.2957207 4.0289608,6.6971736 4.0982105,6.3132448 4.2514542,5.7536993 4.3607031,5.4858681 4.3752572,5.4501877 4.5688909,5.448183 8.0007567,5.448183 h 3.6246813 l 0.0465,0.1238224 c 0.02557,0.068102 0.07859,0.2352624 0.117818,0.371467 0.530371,1.8416398 0.357654,3.8737232 -0.464665,5.4669806 -0.492496,0.95422 -1.178263,1.678158 -1.963818,2.073128 -0.2239218,0.112585 -0.6217268,0.244102 -0.8659826,0.286299 -0.2369798,0.04094 -0.773384,0.0411 -0.9967068,2.99e-4 z M 10.152206,11.263678 10.451884,10.963425 9.9150404,10.412446 C 9.6197763,10.109407 9.2198221,9.6971017 9.0262536,9.4962113 L 8.6743106,9.1309556 9.5538444,8.236138 C 10.037588,7.7439884 10.435833,7.3343788 10.438834,7.3258946 c 0.003,-0.00848 -0.130278,-0.1509001 -0.296176,-0.3164798 L 9.841027,6.7083607 9.6282827,6.923494 C 9.5112734,7.0418172 9.0975653,7.4632571 8.7089314,7.8600269 8.3202974,8.2567968 7.9969559,8.5814266 7.9903948,8.5814266 c -0.00656,0 -0.428298,-0.4263795 -0.9371934,-0.94751 C 6.544306,7.112786 6.1226741,6.6839514 6.1162418,6.6809507 6.1098095,6.6779501 5.9698941,6.8104059 5.8053185,6.9752971 L 5.5060901,7.2750993 5.6655619,7.4472696 c 0.087709,0.094694 0.4876507,0.507243 0.888758,0.9167765 l 0.7292865,0.744606 -0.8800267,0.8958989 c -0.4840146,0.492745 -0.8824048,0.902248 -0.8853116,0.910008 -0.00291,0.0078 0.1279142,0.15307 0.2907133,0.322912 l 0.2959984,0.308804 0.3660835,-0.373459 C 6.6724092,10.967413 7.0916555,10.541348 7.4027219,10.226005 L 7.968297,9.6526542 8.8984162,10.608292 c 0.5115654,0.525601 0.9355176,0.955638 0.9421157,0.955638 0.0066,0 0.1468516,-0.135114 0.3116741,-0.300252 z" + id="path1559" /> +</svg>
--- a/src/eric7/icons/breeze-light/syntaxError22.svg Fri Sep 22 17:24:02 2023 +0200 +++ b/src/eric7/icons/breeze-light/syntaxError22.svg Sat Sep 23 15:06:36 2023 +0200 @@ -1,2 +1,60 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg fill="none" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(1.4368 0 0 1.4654 -.43678 -.46541)" fill="#232629"><path d="m3.02 8.5017-0.00271-0.04081c8.7e-4 0.01361 0.00178 0.02722 0.00271 0.04081z"/><path d="m7.2577 8.9047-1.7701-1.7791 0.59162-0.59161 1.8718 1.8812 1.8451-1.8451 0.59165 0.5916-1.77 1.77 1.7701 1.7791-0.59161 0.5916-1.8717-1.8813-1.8451 1.8451-0.59161-0.5916z"/><path d="m10.878 3.9183v0.58167h0.7849l1.6579-1.6579 0.5916 0.59161-1.5698 1.5698 0.0189 0.04949c0.3304 0.86212 0.5165 1.8351 0.5165 2.8653 0 0.1957-0.0067 0.38933-0.0199 0.58053l-3e-3 0.04364h2.0654v0.83666h-2.1705l-0.0061 0.03349c-0.1764 0.96445-0.5195 1.8438-0.9869 2.5838l-0.0347 0.0551 1.9964 2.0065-0.5931 0.5901-1.9098-1.9194-0.0577 0.0645c-0.8627 0.965-1.9806 1.5435-3.1984 1.5435-1.2367 0-2.3704-0.5966-3.2384-1.5887l-0.05749-0.0657-1.8717 1.8717-0.59162-0.5916 1.9632-1.9632-0.03399-0.055c-0.45068-0.729-0.782-1.5897-0.95424-2.5316l-0.00612-0.03349h-2.1688v-0.83666h2.0637l-3e-3 -0.04364c-0.01315-0.1912-0.01986-0.38483-0.01986-0.58053 0-1.0167 0.18128-1.9778 0.50362-2.8315l0.01857-0.04919-1.6109-1.619 0.59311-0.59012 1.6631 1.6715h0.83249v-0.58167c0-1.6118 1.3066-2.9183 2.9183-2.9183s2.9183 1.3066 2.9183 2.9183zm-5 0v0.58167h4.1633v-0.58167c0-1.1497-0.93196-2.0817-2.0816-2.0817s-2.0817 0.93199-2.0817 2.0817zm5.7163 1.4712-0.0199-0.0529h-7.2295l-0.0199 0.0529c-0.28341 0.75313-0.44701 1.6105-0.44701 2.5288 0 1.6099 0.50298 3.0339 1.274 4.0363 0.77037 1.0015 1.771 1.5454 2.8076 1.5454s2.0373-0.5439 2.8076-1.5454c0.7711-1.0024 1.274-2.4263 1.274-4.0363 0-0.91822-0.1636-1.7756-0.447-2.5288z" clip-rule="evenodd" fill-rule="evenodd"/></g></svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + fill="none" + version="1.1" + viewBox="0 0 22 22" + id="svg1877" + sodipodi:docname="syntaxError22.svg" + inkscape:version="1.2.2 (b0a8486541, 2022-12-01)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs1881" /> + <sodipodi:namedview + id="namedview1879" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="0.25" + inkscape:showpageshadow="2" + inkscape:pageopacity="0.0" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="33.772727" + inkscape:cx="11" + inkscape:cy="11.02961" + inkscape:window-width="1432" + inkscape:window-height="928" + inkscape:window-x="1633" + inkscape:window-y="44" + inkscape:window-maximized="0" + inkscape:current-layer="svg1877" /> + <path + d="m 3.902356,11.992981 -0.00389,-0.0598 c 0.00125,0.01994 0.00256,0.03989 0.00389,0.0598 z" + id="path1869" + style="fill:#eff0f1;stroke:none;stroke-width:1.45103;stroke-opacity:1" /> + <path + d="M 9.6784196,12.577212 6.3212903,9.1358486 7.4433426,7.9914808 10.993354,11.630339 14.492726,8.06131 l 1.122109,1.1443485 -3.356939,3.4237605 3.35713,3.441363 -1.122034,1.144348 -3.549822,-3.639051 -3.4993723,3.569029 -1.1220333,-1.144349 z" + id="path1871" + style="fill:#eff0f1;stroke:none;stroke-width:1.91536;stroke-opacity:1" /> + <path + d="m 15.08981,5.39346 v 0.8272061 h 1.100299 l 2.324098,-2.3577371 0.829324,0.8413419 -2.200597,2.2324481 0.0265,0.070381 c 0.463166,1.2260403 0.724047,2.6097372 0.724047,4.074809 0,0.278309 -0.0094,0.553674 -0.02789,0.825584 l -0.0042,0.06206 h 2.895343 v 1.189833 h -3.042693 l -0.0086,0.04763 c -0.247284,1.371566 -0.728252,2.62211 -1.383469,3.67448 l -0.04864,0.07836 2.798618,2.85349 -0.831427,0.839194 -2.67722,-2.729622 -0.08089,0.09173 c -1.20936,1.372348 -2.776469,2.195046 -4.483621,2.195046 -1.733646,0 -3.3229037,-0.848439 -4.5396943,-2.259327 l -0.080541,-0.09343 -2.6238101,2.661787 -0.8293522,-0.841329 2.7520778,-2.791911 -0.047649,-0.07822 C 4.9980458,15.770533 4.5335907,14.546512 4.292139,13.207014 l -0.00858,-0.04763 H 1.243266 v -1.189829 h 2.8929617 l -0.0042,-0.06206 c -0.018439,-0.271912 -0.027845,-0.547277 -0.027845,-0.825586 0,-1.4458732 0.2541242,-2.8126754 0.7059909,-4.0267413 L 4.8362043,6.9852134 2.5779922,4.6827968 3.4094331,3.843574 5.7408209,6.2206519 H 6.9078324 V 5.3934457 c 0,-2.2921771 1.8316345,-4.1501803 4.0909686,-4.1501803 2.259333,0 4.090967,1.8581455 4.090967,4.1501803 z m -7.0091624,0 V 6.2206661 H 13.916897 V 5.39346 c 0,-1.6350143 -1.306451,-2.9604327 -2.918055,-2.9604327 -1.6116024,0 -2.9181944,1.3254041 -2.9181944,2.9604327 z m 8.0132944,2.0922268 -0.02789,-0.075231 H 5.9314981 l -0.027896,0.075231 C 5.5063082,8.55673 5.2769684,9.7760156 5.2769684,11.081951 c 0,2.289474 0.7050938,4.314577 1.7859347,5.740113 1.0799297,1.424256 2.4826455,2.197749 3.9357849,2.197749 1.45314,0 2.855954,-0.773493 3.935786,-2.197749 1.080952,-1.425536 1.785934,-3.450495 1.785934,-5.740113 0,-1.3058219 -0.22934,-2.5251214 -0.62662,-3.5962642 z" + clip-rule="evenodd" + fill-rule="evenodd" + id="path1873" + style="fill:#da4453;fill-opacity:1;stroke:#da4453;stroke-width:0.486531;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#da4453;stroke:#da4453;stroke-width:0.015;stroke-dasharray:none" + d="m 15.621375,16.091714 c -0.0012,-0.01692 -0.753846,-0.802145 -1.672447,-1.744947 l -1.670183,-1.714185 0.611637,-0.629036 c 0.3364,-0.34597 1.089326,-1.11604 1.673169,-1.711267 L 15.625082,9.2100494 15.066915,8.6321315 C 14.759923,8.3142766 14.502086,8.0545086 14.493943,8.0548692 14.485801,8.0552298 13.699664,8.8533298 12.746972,9.8284248 11.79428,10.80352 11.007794,11.602601 10.999224,11.604162 10.990655,11.605722 10.19187,10.794213 9.2241461,9.8008075 8.2564229,8.8074024 7.457179,7.9946164 7.4480486,7.9946164 c -0.028439,0 -1.1263797,1.1093847 -1.1263797,1.1381197 0,0.014953 0.256494,0.2880566 0.5699866,0.6068977 0.3134925,0.3188412 1.0656995,1.0870052 1.6715709,1.7070312 l 1.1015847,1.127319 -1.6753665,1.709217 -1.6753664,1.709218 -0.048966,-0.08302 C 6.0540228,15.551508 5.7036795,14.655833 5.5372432,14.048556 4.9623517,11.950944 5.036153,9.5417567 5.7353973,7.5799612 l 0.068557,-0.1923434 h 5.1923497 5.192349 l 0.05852,0.1480484 c 0.10233,0.258897 0.312389,1.0258753 0.390054,1.4241896 0.391437,2.0075342 0.236272,4.0728402 -0.444968,5.9226812 -0.126298,0.342951 -0.566079,1.274447 -0.570881,1.209177 z" + id="path2432" /> + <path + style="fill:#da4453;stroke:#da4453;stroke-width:0.015;stroke-dasharray:none" + d="M 10.395947,19.260828 C 9.1725,19.061243 8.1128973,18.413681 7.1746738,17.292192 6.9080894,16.973534 6.3512786,16.145921 6.3512786,16.068342 c 0,-0.0077 0.2460196,0.234523 0.5467102,0.538247 l 0.5467102,0.552227 1.0873708,-1.110364 c 0.598054,-0.6107 1.3880035,-1.411919 1.7554432,-1.780487 l 0.668072,-0.670123 1.421266,1.461772 c 0.781695,0.803975 1.577864,1.618348 1.769264,1.809719 l 0.347999,0.347947 0.562499,-0.561914 c 0.309374,-0.309053 0.562499,-0.551909 0.562499,-0.53968 0,0.04548 -0.400057,0.667814 -0.603554,0.93889 -0.254577,0.339117 -0.78032,0.889195 -1.084199,1.134383 -0.663184,0.535095 -1.343474,0.868779 -2.098862,1.029496 -0.379767,0.0808 -1.075246,0.101314 -1.43655,0.04237 z" + id="path2434" /> + <path + style="fill:#da4453;stroke:#da4453;stroke-width:0.0148048" + d="m 8.0094213,5.6838936 c 0,-0.2449218 0.014244,-0.5730503 0.031652,-0.7291744 C 8.1819227,3.6915745 9.0287556,2.6847423 10.24549,2.3338036 10.453259,2.2738776 10.544472,2.2658227 11,2.2671743 c 0.436618,0.0013 0.554443,0.011591 0.748645,0.065418 1.212724,0.3361314 2.080827,1.3742658 2.211151,2.644237 0.01693,0.1649833 0.03078,0.4917611 0.03078,0.7261728 V 6.1292059 H 11 8.0094213 Z" + id="path2436" /> +</svg>