--- a/svghmi/gen_index_xhtml.xslt Wed May 12 11:38:00 2021 +0200
+++ b/svghmi/gen_index_xhtml.xslt Mon May 17 08:52:38 2021 +0200
@@ -1,6 +1,6 @@
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" xmlns:regexp="http://exslt.org/regular-expressions" xmlns:str="http://exslt.org/strings" xmlns:func="http://exslt.org/functions" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:debug="debug" xmlns:preamble="preamble" xmlns:declarations="declarations" xmlns:definitions="definitions" xmlns:epilogue="epilogue" xmlns:ns="beremiz" version="1.0" extension-element-prefixes="ns func exsl regexp str dyn" exclude-result-prefixes="ns func exsl regexp str dyn debug preamble epilogue declarations definitions">
- <xsl:output cdata-section-elements="xhtml:script" method="xml"/>
+<xsl:stylesheet xmlns:ns="beremiz" xmlns:definitions="definitions" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:func="http://exslt.org/functions" xmlns:epilogue="epilogue" xmlns:preamble="preamble" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:svg="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:str="http://exslt.org/strings" xmlns:regexp="http://exslt.org/regular-expressions" xmlns:exsl="http://exslt.org/common" xmlns:declarations="declarations" xmlns:debug="debug" exclude-result-prefixes="ns func exsl regexp str dyn debug preamble epilogue declarations definitions" extension-element-prefixes="ns func exsl regexp str dyn" version="1.0"> + <xsl:output method="xml" cdata-section-elements="xhtml:script"/> <xsl:variable name="svg" select="/svg:svg"/>
<xsl:variable name="hmi_elements" select="//svg:*[starts-with(@inkscape:label, 'HMI:')]"/>
<xsl:variable name="hmitree" select="ns:GetHMITree()"/>
@@ -258,9 +258,9 @@
<xsl:value-of select="@value"/>
<xsl:if test="string-length(@min)>0 or string-length(@max)>0">
<xsl:value-of select="@min"/>
<xsl:value-of select="@max"/>
@@ -1735,7 +1735,7 @@
<xsl:variable name="excluded_types" select="str:split('Page VarInit VarInitPersistent')"/>
- <xsl:key name="TypesKey" match="widget" use="@type"/>
+ <xsl:key use="@type" name="TypesKey" match="widget"/> <declarations:hmi-classes/>
<xsl:template match="declarations:hmi-classes">
@@ -5085,21 +5085,51 @@
<xsl:text> /* show active */
- <xsl:text> this.active_elt.setAttribute("style", this.active_elt_style);
+ <xsl:text> this.active_elt.style.display = ""; <xsl:text> /* hide inactive */
- <xsl:text> this.inactive_elt.setAttribute("style", "display:none");
+ <xsl:text> this.inactive_elt.style.display = "none"; <xsl:text> /* show inactive */
- <xsl:text> this.inactive_elt.setAttribute("style", this.inactive_elt_style);
+ <xsl:text> this.inactive_elt.style.display = ""; <xsl:text> /* hide active */
- <xsl:text> this.active_elt.setAttribute("style", "display:none");
+ <xsl:text> this.active_elt.style.display = "none"; + <xsl:text> update_disability() { + <xsl:text> if(this.disabled) { + <xsl:text> /* show disabled */ + <xsl:text> this.disabled_elt.style.display = ""; + <xsl:text> /* hide inactive */ + <xsl:text> this.inactive_elt.style.display = "none"; + <xsl:text> /* hide active */ + <xsl:text> this.active_elt.style.display = "none"; + <xsl:text> /* hide disabled */ + <xsl:text> this.disabled_elt.style.display = "none"; + <xsl:text> this.update_activity(); @@ -5115,13 +5145,21 @@
<xsl:text> return function(evt){
- <xsl:text> /* TODO: suport path pointing to local variable whom value
- <xsl:text> would be an HMI_TREE index to jump to a relative page */
- <xsl:text> const index = that.indexes.length > 0 ? that.indexes[0] + that.offset : undefined;
- <xsl:text> switch_page(name, index);
+ <xsl:text> /* TODO: in order to allow jumps to page selected through for exemple a dropdown, + <xsl:text> support path pointing to local variable whom value + <xsl:text> would be an HMI_TREE index and then jump to a relative page not hard-coded in advance */ + <xsl:text> if(!that.disabled) { + <xsl:text> const index = that.indexes.length > 0 ? that.indexes[0] + that.offset : undefined; + <xsl:text> switch_page(name, index); @@ -5139,7 +5177,7 @@
<xsl:text> this.active = ((ref_name == undefined || ref_name == page_name) && index == ref_index);
- <xsl:text> this.update_activity();
+ <xsl:text> this.update_state(); @@ -5151,29 +5189,7 @@
<xsl:text> this.disabled = !Number(value);
- <xsl:text> if(this.disabled) {
- <xsl:text> /* show disabled */
- <xsl:text> this.disabled_elt.setAttribute("style", this.disabled_elt_style);
- <xsl:text> /* hide inactive */
- <xsl:text> this.inactive_elt.setAttribute("style", "display:none");
- <xsl:text> /* hide active */
- <xsl:text> this.active_elt.setAttribute("style", "display:none");
- <xsl:text> /* hide disabled */
- <xsl:text> this.disabled_elt.setAttribute("style", "display:none");
- <xsl:text> this.update_activity();
+ <xsl:text> this.update_state(); @@ -5209,23 +5225,27 @@
<xsl:text> this.element.onclick = this.make_on_click();
<xsl:if test="$have_activity">
- <xsl:text> this.active_elt_style = this.active_elt.getAttribute("style");
- <xsl:text> this.inactive_elt_style = this.inactive_elt.getAttribute("style");
<xsl:text> this.activable = true;
+ <xsl:if test="not($have_disability)"> + <xsl:text> this.unsubscribable = true; + <xsl:text> this.update_state = </xsl:text> <xsl:when test="$have_disability">
- <xsl:text> this.disabled_elt_style = this.disabled_elt.getAttribute("style");
+ <xsl:text>this.update_disability</xsl:text> + <xsl:when test="$have_activity"> + <xsl:text>this.update_activity</xsl:text> - <xsl:text> this.unsubscribable = true;
+ <xsl:text>null</xsl:text> @@ -6860,9 +6880,9 @@
<xsl:text>Made with SVGHMI. https://beremiz.org</xsl:text>
- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <html xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/1999/xhtml"> - <style type="text/css" media="screen">
+ <style media="screen" type="text/css"> <xsl:value-of select="ns:GetFonts()"/>
--- a/svghmi/widget_jump.ysl2 Wed May 12 11:38:00 2021 +0200
+++ b/svghmi/widget_jump.ysl2 Mon May 17 08:52:38 2021 +0200
@@ -12,14 +12,29 @@
- this.active_elt.setAttribute("style", this.active_elt_style);
+ this.active_elt.style.display = ""; - this.inactive_elt.setAttribute("style", "display:none");
+ this.inactive_elt.style.display = "none"; - this.inactive_elt.setAttribute("style", this.inactive_elt_style);
+ this.inactive_elt.style.display = ""; - this.active_elt.setAttribute("style", "display:none");
+ this.active_elt.style.display = "none"; + this.disabled_elt.style.display = ""; + this.inactive_elt.style.display = "none"; + this.active_elt.style.display = "none"; + this.disabled_elt.style.display = "none"; + this.update_activity(); @@ -27,10 +42,14 @@
const name = this.args[0];
- /* TODO: suport path pointing to local variable whom value
- would be an HMI_TREE index to jump to a relative page */
- const index = that.indexes.length > 0 ? that.indexes[0] + that.offset : undefined;
- switch_page(name, index);
+ /* TODO: in order to allow jumps to page selected through for exemple a dropdown, + support path pointing to local variable whom value + would be an HMI_TREE index and then jump to a relative page not hard-coded in advance */ + const index = that.indexes.length > 0 ? that.indexes[0] + that.offset : undefined; + switch_page(name, index); @@ -39,24 +58,13 @@
const ref_index = this.indexes.length > 0 ? this.indexes[0] + this.offset : undefined;
const ref_name = this.args[0];
this.active = ((ref_name == undefined || ref_name == page_name) && index == ref_index);
- this.update_activity();
this.disabled = !Number(value);
- this.disabled_elt.setAttribute("style", this.disabled_elt_style);
- this.inactive_elt.setAttribute("style", "display:none");
- this.active_elt.setAttribute("style", "display:none");
- this.disabled_elt.setAttribute("style", "display:none");
- this.update_activity();
@@ -75,19 +83,24 @@
| this.element.onclick = this.make_on_click();
- | this.active_elt_style = this.active_elt.getAttribute("style");
- | this.inactive_elt_style = this.inactive_elt.getAttribute("style");
+ if "not($have_disability)" { + | this.unsubscribable = true; when "$have_disability" {
- | this.disabled_elt_style = this.disabled_elt.getAttribute("style");
+ > this.update_disability + when "$have_activity" {
- | this.unsubscribable = true;
template "widget[@type='Jump']", mode="per_page_widget_template"{
--- a/tests/svghmi/plc.xml Wed May 12 11:38:00 2021 +0200
+++ b/tests/svghmi/plc.xml Mon May 17 08:52:38 2021 +0200
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
<fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2020-12-01T09:52:25">
+ <contentHeader name="Unnamed" modificationDateTime="2021-05-13T10:44:29"> @@ -74,14 +74,21 @@
- <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="40" width="127">
+ <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="60" width="127"> <position x="595" y="50"/>
- <variable formalParameter="TargetPressure">
+ <variable formalParameter="Pump"> <relPosition x="0" y="30"/>
+ <variable formalParameter="TargetPressure"> + <relPosition x="0" y="50"/> <connection refLocalId="5">
- <position x="595" y="80"/>
+ <position x="595" y="100"/> + <position x="582" y="100"/> + <position x="582" y="80"/> <position x="570" y="80"/>
@@ -97,12 +104,40 @@
<expression>TargetPressure</expression>
- <block localId="1" typeName="PumpControl" instanceName="Pump1" executionOrderId="0" height="40" width="127">
- <position x="595" y="180"/>
+ <block localId="1" typeName="PumpControl" instanceName="Pump1" executionOrderId="0" height="60" width="127"> + <position x="595" y="280"/> + <variable formalParameter="Pump"> + <relPosition x="0" y="30"/> <variable formalParameter="TargetPressure">
+ <relPosition x="0" y="50"/> + <connection refLocalId="5"> + <position x="595" y="330"/> + <position x="582" y="330"/> + <position x="582" y="80"/> + <position x="570" y="80"/> + <block localId="2" typeName="PumpControl" instanceName="Pump2" executionOrderId="0" height="60" width="127"> + <position x="595" y="160"/> + <variable formalParameter="Pump"> <relPosition x="0" y="30"/>
+ <variable formalParameter="TargetPressure"> + <relPosition x="0" y="50"/> <connection refLocalId="5">
<position x="595" y="210"/>
<position x="582" y="210"/>
@@ -115,15 +150,20 @@
- <block localId="2" typeName="PumpControl" instanceName="Pump2" executionOrderId="0" height="40" width="127">
- <position x="595" y="110"/>
+ <block localId="3" typeName="PumpControl" instanceName="Pump3" executionOrderId="0" height="60" width="127"> + <position x="595" y="395"/> + <variable formalParameter="Pump"> + <relPosition x="0" y="30"/> <variable formalParameter="TargetPressure">
- <relPosition x="0" y="30"/>
+ <relPosition x="0" y="50"/> <connection refLocalId="5">
- <position x="595" y="140"/>
- <position x="582" y="140"/>
+ <position x="595" y="445"/> + <position x="582" y="445"/> <position x="582" y="80"/>
<position x="570" y="80"/>
@@ -133,15 +173,20 @@
- <block localId="3" typeName="PumpControl" instanceName="Pump3" executionOrderId="0" height="40" width="127">
- <position x="595" y="245"/>
+ <block localId="6" typeName="PumpControl" instanceName="Pump4" executionOrderId="0" height="60" width="127"> + <position x="595" y="515"/> + <variable formalParameter="Pump"> + <relPosition x="0" y="30"/> <variable formalParameter="TargetPressure">
- <relPosition x="0" y="30"/>
+ <relPosition x="0" y="50"/> <connection refLocalId="5">
- <position x="595" y="275"/>
- <position x="582" y="275"/>
+ <position x="595" y="565"/> + <position x="582" y="565"/> <position x="582" y="80"/>
<position x="570" y="80"/>
@@ -151,15 +196,24 @@
- <block localId="6" typeName="PumpControl" instanceName="Pump4" executionOrderId="0" height="40" width="127">
- <position x="595" y="315"/>
+ <block localId="7" typeName="PumpControl" instanceName="Pump5" executionOrderId="0" height="60" width="127"> + <position x="595" y="645"/> + <variable formalParameter="Pump"> + <relPosition x="0" y="30"/> + <connection refLocalId="11"> + <position x="595" y="675"/> + <position x="570" y="675"/> <variable formalParameter="TargetPressure">
- <relPosition x="0" y="30"/>
+ <relPosition x="0" y="50"/> <connection refLocalId="5">
- <position x="595" y="345"/>
- <position x="582" y="345"/>
+ <position x="595" y="695"/> + <position x="582" y="695"/> <position x="582" y="80"/>
<position x="570" y="80"/>
@@ -169,15 +223,20 @@
- <block localId="7" typeName="PumpControl" instanceName="Pump5" executionOrderId="0" height="40" width="127">
- <position x="595" y="395"/>
+ <block localId="8" typeName="PumpControl" instanceName="Pump6" executionOrderId="0" height="60" width="127"> + <position x="595" y="775"/> + <variable formalParameter="Pump"> + <relPosition x="0" y="30"/> <variable formalParameter="TargetPressure">
- <relPosition x="0" y="30"/>
+ <relPosition x="0" y="50"/> <connection refLocalId="5">
- <position x="595" y="425"/>
- <position x="582" y="425"/>
+ <position x="595" y="825"/> + <position x="582" y="825"/> <position x="582" y="80"/>
<position x="570" y="80"/>
@@ -187,15 +246,24 @@
- <block localId="8" typeName="PumpControl" instanceName="Pump6" executionOrderId="0" height="40" width="127">
- <position x="595" y="475"/>
+ <block localId="9" typeName="PumpControl" instanceName="Pump7" executionOrderId="0" height="60" width="127"> + <position x="595" y="895"/> + <variable formalParameter="Pump"> + <relPosition x="0" y="30"/> + <connection refLocalId="10"> + <position x="595" y="925"/> + <position x="560" y="925"/> <variable formalParameter="TargetPressure">
- <relPosition x="0" y="30"/>
+ <relPosition x="0" y="50"/> <connection refLocalId="5">
- <position x="595" y="505"/>
- <position x="582" y="505"/>
+ <position x="595" y="945"/> + <position x="582" y="945"/> <position x="582" y="80"/>
<position x="570" y="80"/>
@@ -205,35 +273,36 @@
- <block localId="9" typeName="PumpControl" instanceName="Pump7" executionOrderId="0" height="40" width="127">
- <position x="595" y="545"/>
- <variable formalParameter="TargetPressure">
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="575"/>
- <position x="582" y="575"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
+ <inVariable localId="10" executionOrderId="0" height="25" width="20" negated="false"> + <position x="540" y="915"/> + <relPosition x="20" y="10"/> + <expression>0</expression> + <inVariable localId="11" executionOrderId="0" height="25" width="20" negated="false"> + <position x="550" y="665"/> + <relPosition x="20" y="10"/> + <expression>0</expression> <pou name="PumpControl" pouType="functionBlock">
<derived name="HMI_NODE"/>
+ <simpleValue value="1"/> <variable name="Pressure">
<derived name="HMI_INT"/>
--- a/tests/svghmi/svghmi_0@svghmi/svghmi.svg Wed May 12 11:38:00 2021 +0200
+++ b/tests/svghmi/svghmi_0@svghmi/svghmi.svg Mon May 17 08:52:38 2021 +0200
@@ -125,12 +125,12 @@
inkscape:document-units="px"
- inkscape:current-layer="hmi0"
+ inkscape:current-layer="g1499-7" - inkscape:zoom="1.1929688"
- inkscape:cy="-68.272506"
+ inkscape:zoom="0.84355633" + inkscape:cx="1857.6296" + inkscape:cy="687.32797" inkscape:window-width="1600"
inkscape:window-height="836"
@@ -3465,8 +3465,9 @@
inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
- inkscape:label="button"
+ inkscape:label="disabled" + style="display:inline"> @@ -3475,6 +3476,34 @@
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + inkscape:label="inactive" + style="display:inline"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:label="button" /> + inkscape:label="active" + style="display:inline"> + inkscape:label="button" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
@@ -3516,10 +3545,38 @@
transform="matrix(0.57180538,0,0,0.57180538,1184.0513,-317.49049)">
- inkscape:label="button">
+ inkscape:label="disabled"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:label="button" /> + inkscape:label="inactive" + style="display:inline"> + inkscape:label="button" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> + inkscape:label="active" + style="display:inline"> style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
@@ -3565,7 +3622,7 @@
inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
- inkscape:label="button"
+ inkscape:label="disabled" @@ -3575,6 +3632,32 @@
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal" /> + inkscape:label="inactive"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;font-variant-east_asian:normal" + inkscape:label="button" /> + inkscape:label="active" + inkscape:label="button" style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
@@ -3616,9 +3699,10 @@
transform="matrix(0.57180538,0,0,0.57180538,1504.0513,-317.49049)">
- inkscape:label="button">
+ inkscape:label="disabled" + style="display:inline"> - style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" @@ -3628,6 +3712,34 @@
inkscape:label="button" />
+ inkscape:label="inactive" + style="display:inline"> + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" + inkscape:label="button" /> + inkscape:label="active" + style="display:inline"> + inkscape:label="button" + style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />