1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-17 02:52:12 +01:00

OP-1438 VSI_Arc_PFD+Status : Added FlightTime, ArmStatus, Stab info

This commit is contained in:
Laurent Lalanne 2014-08-19 14:16:48 +02:00
parent a365c5c6df
commit 5cda39d271
3 changed files with 293 additions and 65 deletions

View File

@ -6,6 +6,30 @@ Item {
// Uninitialised, OK, Warning, Error, Critical
property variant statusColors : ["gray", "green", "red", "red", "red"]
// DisArmed , Arming, Armed
property variant armColors : ["gray", "orange", "green"]
// All 'manual modes' are green, 'assisted' modes in cyan
// "MANUAL","STAB 1","STAB 2", "STAB 3", "STAB 4", "STAB 5", "STAB 6", "AUTOTUNE",
// "POS HOLD", "POS VFPV", "POS VLOS", "POS VNSEW", "RTB", "LAND", "PATHPLANNER", "POI", "AUTOCRUISE"
property variant flightmodeColors : ["gray", "green", "green", "green", "green", "green", "green", "red",
"cyan", "cyan", "cyan", "cyan", "cyan", "cyan", "cyan", "cyan", "cyan"]
property real flight_time: Math.round(SystemStats.FlightTime / 1000)
property real time_h: (flight_time > 0 ? Math.floor(flight_time / 3600) : 0 )
property real time_m: (flight_time > 0 ? Math.floor((flight_time - time_h*3600)/60) : 0)
property real time_s: (flight_time > 0 ? Math.floor(flight_time - time_h*3600 - time_m*60) : 0)
function formatTime(time) {
if (time === 0)
return "00"
if (time < 10)
return "0" + time;
else
return time.toString();
}
SvgElementImage {
id: warning_bg
elementName: "warnings-bg"
@ -14,10 +38,64 @@ Item {
anchors.bottom: parent.bottom
}
SvgElementPositionItem {
id: warning_time
sceneSize: parent.sceneSize
elementName: "warning-time"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: scaledBounds.x * sceneItem.width
y: scaledBounds.y * sceneItem.height
Rectangle {
anchors.fill: parent
color: (SystemStats.FlightTime > 0 ? "green" : "grey")
Text {
anchors.centerIn: parent
text: formatTime(time_h) + ":" + formatTime(time_m) + ":" + formatTime(time_s)
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 0.8)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
id: warning_arm
sceneSize: parent.sceneSize
elementName: "warning-arm"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: scaledBounds.x * sceneItem.width
y: scaledBounds.y * sceneItem.height
Rectangle {
anchors.fill: parent
color: warnings.armColors[FlightStatus.Armed]
Text {
anchors.centerIn: parent
text: ["DISARMED","ARMING","ARMED"][FlightStatus.Armed]
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 0.8)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
id: warning_rc_input
sceneSize: parent.sceneSize
elementName: "warning-rc-input"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: scaledBounds.x * sceneItem.width
y: scaledBounds.y * sceneItem.height
Rectangle {
anchors.fill: parent
@ -39,6 +117,10 @@ Item {
id: warning_master_caution
sceneSize: parent.sceneSize
elementName: "warning-master-caution"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: scaledBounds.x * sceneItem.width
y: scaledBounds.y * sceneItem.height
property bool warningActive: (SystemAlarms.Alarm_BootFault > 1 ||
SystemAlarms.Alarm_OutOfMemory > 1 ||
@ -48,7 +130,7 @@ Item {
Rectangle {
anchors.fill: parent
color: parent.warningActive ? "red" : "red"
opacity: parent.warningActive ? 1.0 : 0.15
opacity: parent.warningActive ? 1.0 : 0.4
Text {
anchors.centerIn: parent
@ -66,6 +148,10 @@ Item {
id: warning_autopilot
sceneSize: parent.sceneSize
elementName: "warning-autopilot"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: scaledBounds.x * sceneItem.width
y: scaledBounds.y * sceneItem.height
Rectangle {
anchors.fill: parent
@ -83,6 +169,32 @@ Item {
}
}
SvgElementPositionItem {
id: warning_flightmode
sceneSize: parent.sceneSize
elementName: "warning-flightmode"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: scaledBounds.x * sceneItem.width
y: scaledBounds.y * sceneItem.height
Rectangle {
anchors.fill: parent
color: warnings.flightmodeColors[FlightStatus.FlightMode]
Text {
anchors.centerIn: parent
text: ["MANUAL","STAB 1","STAB 2", "STAB 3", "STAB 4", "STAB 5", "STAB 6", "AUTOTUNE", "POS HOLD", "POS VFPV",
"POS VLOS", "POS VNSEW", "RTB", "LAND", "PATHPLAN", "POI", "AUTOCRUISE"][FlightStatus.FlightMode]
font {
family: "Arial"
pixelSize: Math.floor(parent.height * 0.8)
weight: Font.DemiBold
}
}
}
}
SvgElementImage {
id: warning_gps
elementName: "warning-gps"

View File

@ -85,10 +85,10 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="321.52993"
inkscape:cy="103.08754"
inkscape:cx="313.78803"
inkscape:cy="164.34379"
inkscape:document-units="px"
inkscape:current-layer="layer69"
inkscape:current-layer="layer29"
showgrid="true"
fit-margin-top="0"
fit-margin-left="0"
@ -4643,12 +4643,14 @@
inkscape:groupmode="layer"
id="layer38"
inkscape:label="vsi"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<g
inkscape:groupmode="layer"
id="layer39"
inkscape:label="vsi-window"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<path
style="fill:#000000;fill-opacity:0.25098039;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 608.03211,91.918678 C 647.68617,91.918678 918,217 918,217 c 0,0 -269.64496,124.91868 -309.96789,124.91868 c -40.32293,0 -50.00001,-61.5142 -50.00001,-125 c 0,-63.4858 10.34595,-125.000002 50.00001,-125.000002 z"
@ -4660,12 +4662,14 @@
inkscape:groupmode="layer"
id="layer42"
inkscape:label="vsi-centerline"
style="display:inline" />
style="display:inline"
sodipodi:insensitive="true" />
<g
inkscape:groupmode="layer"
id="layer74"
inkscape:label="vsi-unit"
style="display:inline" />
style="display:inline"
sodipodi:insensitive="true" />
<g
inkscape:groupmode="layer"
id="layer72"
@ -4677,11 +4681,11 @@
sodipodi:nodetypes="cccccc"
inkscape:connector-curvature="0"
id="rect4893"
d="M 593.03211,212.93018 L 678.39821,212.93018 L 678.39821,220.90718 L 593.03211,220.90718 L 589.03211,216.91868 z"
d="m 593.03211,212.93018 l 85.3661,0 l 0,7.977 l -85.3661,0 l -4,-3.9885 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#111413;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linejoin:round;stroke-opacity:1"
d="M 593.85791,214.81327 L 646.39821,214.81327 L 646.39821,219.02373 L 593.85791,219.02373 L 591.90211,216.91868 z"
d="m 593.85791,214.81327 l 52.5403,0 l 0,4.21046 l -52.5403,0 l -1.9558,-2.10505 z"
id="path4896"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
@ -4696,12 +4700,14 @@
inkscape:groupmode="layer"
id="layer40"
inkscape:label="vsi-bar"
style="display:inline" />
style="display:inline"
sodipodi:insensitive="true" />
<g
inkscape:groupmode="layer"
id="layer79"
inkscape:label="vsi-waypoint"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<path
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 576.54916,211.75 l 6.95084,0.11285 l -0.2329,10.18229 L 576.5,222.25 z"
@ -4713,7 +4719,8 @@
inkscape:groupmode="layer"
id="layer41"
inkscape:label="vsi-scale"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<g
id="vsi-scale"
transform="translate(-18,0)">
@ -4938,8 +4945,7 @@
inkscape:groupmode="layer"
id="layer67"
inkscape:label="warnings"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer68"
@ -4951,13 +4957,13 @@
sodipodi:nodetypes="csssscc"
inkscape:connector-curvature="0"
id="path4655"
d="m 640.50296,463.50296 0,14.99408 c 0,1.108 -0.892,2 -2,2 l -636.9999976,0 c -1.10800005,0 -2.00000005,-0.892 -2.00000005,-2 l 3e-8,-14.99408 c 0,-1.108 640.99999762,0 640.99999762,0 z"
d="m 640.50296,463.50296 l 0,14.99408 c 0,1.108 -0.892,2 -2,2 l -636.9999976,0 c -1.10800005,0 -2.00000005,-0.892 -2.00000005,-2 l 3e-8,-14.99408 c 0,-1.108 640.99999762,0 640.99999762,0 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;display:inline" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4644"
d="M -0.49703765,463 640.50299,463"
d="M -0.49703765,463 L 640.50299,463"
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</g>
@ -4965,11 +4971,11 @@
inkscape:groupmode="layer"
id="layer51"
inkscape:label="warning-autopilot"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="warning-autopilot"
inkscape:label="#g4860">
inkscape:label="#g4860"
transform="translate(1,0)">
<rect
y="464"
x="383.5"
@ -4983,59 +4989,166 @@
id="warning-autopilot-label"
transform="translate(0,0.73039)">
<path
d="m 393.41498,468.10666 -1.60547,4.35351 3.2168,0 -1.61133,-4.35351 m -0.66797,-1.16602 1.3418,0 3.33398,8.74805 -1.23047,0 -0.79687,-2.24414 -3.94336,0 -0.79688,2.24414 -1.24804,0 3.33984,-8.74805"
d="m 393.41498,468.10666 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33398,8.74805 l -1.23047,0 l -0.79687,-2.24414 l -3.94336,0 l -0.79688,2.24414 l -1.24804,0 l 3.33984,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6165"
inkscape:connector-curvature="0" />
<path
d="m 398.55951,466.94064 1.18945,0 0,5.31446 c 0,0.9375 0.16992,1.61328 0.50977,2.02734 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 0.33983,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 1.18945,0 0,5.46094 c 0,1.14063 -0.28321,2.00196 -0.8496,2.58399 -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 -1.10547,0 -1.94141,-0.29101 -2.50781,-0.87304 -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
d="m 398.55951,466.94064 l 1.18945,0 l 0,5.31446 c 0,0.9375 0.16992,1.61328 0.50977,2.02734 c 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 c 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 c 0.33983,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 l 1.18945,0 l 0,5.46094 c 0,1.14063 -0.28321,2.00196 -0.8496,2.58399 c -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 c -1.10547,0 -1.94141,-0.29101 -2.50781,-0.87304 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
style="font-size:12px;fill:#ffffff"
id="path6167"
inkscape:connector-curvature="0" />
<path
d="m 406.27045,466.94064 7.40039,0 0,0.9961 -3.10547,0 0,7.75195 -1.18945,0 0,-7.75195 -3.10547,0 0,-0.9961"
d="m 406.27045,466.94064 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
style="font-size:12px;fill:#ffffff"
id="path6169"
inkscape:connector-curvature="0" />
<path
d="m 418.37006,467.74338 c -0.85938,10e-6 -1.54298,0.32032 -2.05079,0.96094 -0.5039,0.64063 -0.75586,1.51367 -0.75585,2.61914 -1e-5,1.10156 0.25195,1.97265 0.75585,2.61328 0.50781,0.64062 1.19141,0.96094 2.05079,0.96093 0.85937,10e-6 1.53905,-0.32031 2.03906,-0.96093 0.5039,-0.64063 0.75585,-1.51172 0.75586,-2.61328 -1e-5,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 -0.50001,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22655,10e-6 2.20702,0.41212 2.9414,1.23633 0.73437,0.82032 1.10156,1.92188 1.10156,3.30469 0,1.37891 -0.36719,2.48047 -1.10156,3.30468 -0.73438,0.82032 -1.71485,1.23047 -2.9414,1.23047 -1.23048,0 -2.21485,-0.41015 -2.95313,-1.23047 -0.73437,-0.82031 -1.10156,-1.92187 -1.10156,-3.30468 0,-1.38281 0.36719,-2.48437 1.10156,-3.30469 0.73828,-0.82421 1.72265,-1.23632 2.95313,-1.23633"
d="m 418.37006,467.74338 c -0.85938,10e-6 -1.54298,0.32032 -2.05079,0.96094 c -0.5039,0.64063 -0.75586,1.51367 -0.75585,2.61914 c -1e-5,1.10156 0.25195,1.97265 0.75585,2.61328 c 0.50781,0.64062 1.19141,0.96094 2.05079,0.96093 c 0.85937,10e-6 1.53905,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75585,-1.51172 0.75586,-2.61328 c -1e-5,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.50001,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22655,10e-6 2.20702,0.41212 2.9414,1.23633 c 0.73437,0.82032 1.10156,1.92188 1.10156,3.30469 c 0,1.37891 -0.36719,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.9414,1.23047 c -1.23048,0 -2.21485,-0.41015 -2.95313,-1.23047 c -0.73437,-0.82031 -1.10156,-1.92187 -1.10156,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10156,-3.30469 c 0.73828,-0.82421 1.72265,-1.23632 2.95313,-1.23633"
style="font-size:12px;fill:#ffffff"
id="path6171"
inkscape:connector-curvature="0" />
<path
d="m 425.44818,467.9133 0,3.28711 1.48828,0 c 0.55078,0 0.97656,-0.14257 1.27735,-0.42774 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 -1e-5,-0.52343 -0.1504,-0.92772 -0.45117,-1.21289 -0.30079,-0.28514 -0.72657,-0.42772 -1.27735,-0.42773 l -1.48828,0 m -1.18359,-0.97266 2.67187,0 c 0.98047,1e-5 1.7207,0.22267 2.22071,0.66797 0.5039,0.44142 0.75585,1.08985 0.75585,1.94531 0,0.86329 -0.25195,1.51563 -0.75585,1.95704 -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 0,3.51562 -1.18359,0 0,-8.74805"
d="m 425.44818,467.9133 l 0,3.28711 l 1.48828,0 c 0.55078,0 0.97656,-0.14257 1.27735,-0.42774 c 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 c -1e-5,-0.52343 -0.1504,-0.92772 -0.45117,-1.21289 c -0.30079,-0.28514 -0.72657,-0.42772 -1.27735,-0.42773 l -1.48828,0 m -1.18359,-0.97266 l 2.67187,0 c 0.98047,1e-5 1.7207,0.22267 2.22071,0.66797 c 0.5039,0.44142 0.75585,1.08985 0.75585,1.94531 c 0,0.86329 -0.25195,1.51563 -0.75585,1.95704 c -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 l 0,3.51562 l -1.18359,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6173"
inkscape:connector-curvature="0" />
<path
d="m 431.50677,466.94064 1.1836,0 0,8.74805 -1.1836,0 0,-8.74805"
d="m 431.50677,466.94064 l 1.1836,0 l 0,8.74805 l -1.1836,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6175"
inkscape:connector-curvature="0" />
<path
d="m 435.04584,466.94064 1.18359,0 0,7.75196 4.25977,0 0,0.99609 -5.44336,0 0,-8.74805"
d="m 435.04584,466.94064 l 1.18359,0 l 0,7.75196 l 4.25977,0 l 0,0.99609 l -5.44336,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6177"
inkscape:connector-curvature="0" />
<path
d="m 444.85443,467.74338 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 0,1.10156 0.25195,1.97265 0.75586,2.61328 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,10e-6 2.20703,0.41212 2.94141,1.23633 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 -1.23047,0 -2.21485,-0.41015 -2.95312,-1.23047 -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 0.73827,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
d="m 444.85443,467.74338 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 c -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 c 0,1.10156 0.25195,1.97265 0.75586,2.61328 c 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 c 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 c 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,10e-6 2.20703,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 c -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21485,-0.41015 -2.95312,-1.23047 c -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 c 0.73827,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
style="font-size:12px;fill:#ffffff"
id="path6179"
inkscape:connector-curvature="0" />
<path
d="m 449.53607,466.94064 7.40039,0 0,0.9961 -3.10547,0 0,7.75195 -1.18945,0 0,-7.75195 -3.10547,0 0,-0.9961"
d="m 449.53607,466.94064 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
style="font-size:12px;fill:#ffffff"
id="path6181"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer78"
inkscape:label="warning-arm">
<g
id="warning-arm"
transform="translate(-1,0)">
<rect
inkscape:label="#rect4824"
style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
id="warning-arm-box"
width="80"
height="16"
x="94.5"
y="464" />
<g
id="warning-arm-label"
style="font-size:12.67915916px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial">
<path
inkscape:connector-curvature="0"
id="path4800"
d="m 121,476.58899 l 3.48553,-9.076 l 1.29392,0 l 3.71459,9.076 l -1.36821,0 l -1.05866,-2.7488 l -3.79508,0 l -0.99675,2.7488 l -1.27534,0 m 2.61879,-3.72698 l 3.07692,0 l -0.94722,-2.51354 c -0.28892,-0.76355 -0.50354,-1.39091 -0.64386,-1.88207 c -0.11557,0.58196 -0.2786,1.15979 -0.48909,1.73348 l -0.99675,2.66213" />
<path
inkscape:connector-curvature="0"
id="path4802"
d="m 130.4846,476.58899 l 0,-9.076 l 4.02415,0 c 0.80895,10e-6 1.42392,0.0826 1.84492,0.24764 c 0.42098,0.16097 0.75735,0.44782 1.00913,0.86055 c 0.25176,0.41274 0.37764,0.86881 0.37765,1.36821 c -1e-5,0.64387 -0.20844,1.18661 -0.62529,1.62823 c -0.41687,0.44163 -1.06073,0.72229 -1.93159,0.84198 c 0.3178,0.15271 0.55925,0.30336 0.72434,0.45194 c 0.35082,0.32193 0.68307,0.72435 0.99675,1.20724 l 1.57871,2.47021 l -1.5106,0 l -1.20106,-1.88825 c -0.35083,-0.54481 -0.63974,-0.96167 -0.86674,-1.25059 c -0.22701,-0.28891 -0.43131,-0.49114 -0.61291,-0.60671 c -0.17748,-0.11556 -0.35908,-0.19605 -0.5448,-0.24145 c -0.13621,-0.0289 -0.35908,-0.0433 -0.66863,-0.0433 l -1.39297,0 l 0,4.03034 l -1.20106,0 m 1.20106,-5.07043 l 2.58164,0 c 0.54893,1e-5 0.97817,-0.0557 1.28773,-0.16715 c 0.30954,-0.11556 0.5448,-0.29717 0.70577,-0.54481 c 0.16096,-0.25176 0.24144,-0.52417 0.24145,-0.81721 c -1e-5,-0.42924 -0.15685,-0.78212 -0.47052,-1.05866 c -0.30955,-0.27653 -0.8007,-0.41479 -1.47345,-0.4148 l -2.87262,0 l 0,3.00263" />
<path
inkscape:connector-curvature="0"
id="path4804"
d="m 139.59156,476.58899 l 0,-9.076 l 1.80777,0 l 2.14827,6.42625 c 0.19811,0.59847 0.34257,1.04628 0.43337,1.34345 c 0.10318,-0.33019 0.26415,-0.81515 0.4829,-1.45488 l 2.17304,-6.31482 l 1.61585,0 l 0,9.076 l -1.15772,0 l 0,-7.59635 l -2.63736,7.59635 l -1.08342,0 l -2.62499,-7.72636 l 0,7.72636 l -1.15771,0" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer80"
inkscape:label="warning-flightmode">
<g
id="warning-flightmode"
transform="translate(2,0)">
<g
transform="translate(81,0)"
id="g4911"
inkscape:label="#g4860">
<rect
y="464"
x="383.5"
height="16"
width="85"
id="warning-flightmode-box"
style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:label="#rect4824" />
<g
id="warning-flightmode-label"
style="font-size:12.26098156px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
transform="translate(2,0)">
<path
inkscape:connector-curvature="0"
id="path4715"
d="m 404.79999,473.51954 l 1.09559,-0.0958 c 0.0519,0.43903 0.17162,0.80024 0.35921,1.08361 c 0.19157,0.27939 0.48692,0.50689 0.88604,0.6825 c 0.39912,0.17162 0.84813,0.25743 1.34704,0.25743 c 0.44302,0 0.83415,-0.0659 1.17341,-0.19756 c 0.33925,-0.13171 0.59069,-0.31132 0.75434,-0.53882 c 0.16762,-0.23148 0.25144,-0.48293 0.25144,-0.75433 c 0,-0.27539 -0.0798,-0.51487 -0.23947,-0.71842 c -0.15965,-0.20754 -0.42307,-0.38116 -0.79026,-0.52085 c -0.23548,-0.0918 -0.75633,-0.23349 -1.56255,-0.42507 c -0.80623,-0.19556 -1.37098,-0.37916 -1.69427,-0.55078 c -0.41908,-0.21951 -0.73239,-0.49092 -0.93993,-0.81421 c -0.20355,-0.32727 -0.30533,-0.69247 -0.30533,-1.09558 c 0,-0.44302 0.12573,-0.85611 0.37717,-1.23927 c 0.25145,-0.38714 0.61864,-0.6805 1.10158,-0.88006 c 0.48293,-0.19956 1.01974,-0.29934 1.61045,-0.29934 c 0.65056,0 1.2233,0.10577 1.71821,0.3173 c 0.49889,0.20755 0.88205,0.51487 1.14947,0.92196 c 0.2674,0.40711 0.41108,0.8681 0.43105,1.38296 l -1.11355,0.0838 c -0.0599,-0.55477 -0.26342,-0.97384 -0.61065,-1.25723 c -0.34325,-0.28337 -0.85213,-0.42505 -1.52664,-0.42506 c -0.70245,1e-5 -1.21532,0.12972 -1.53861,0.38914 c -0.3193,0.25545 -0.47894,0.56476 -0.47894,0.92796 c 0,0.31531 0.11374,0.57474 0.34125,0.77828 c 0.2235,0.20356 0.80622,0.4131 1.74814,0.62862 c 0.94591,0.21154 1.59448,0.39713 1.94572,0.55677 c 0.51086,0.23549 0.88803,0.53483 1.1315,0.89802 c 0.24346,0.35921 0.36519,0.7743 0.3652,1.24526 c -1e-5,0.46697 -0.13372,0.908 -0.40112,1.32308 c -0.26742,0.4111 -0.65257,0.73239 -1.15545,0.96388 c -0.49891,0.2275 -1.06167,0.34124 -1.68828,0.34125 c -0.79426,-1e-5 -1.46079,-0.11575 -1.9996,-0.34724 c -0.53482,-0.23149 -0.95589,-0.57872 -1.26321,-1.0417 c -0.30333,-0.46697 -0.46298,-0.99381 -0.47895,-1.58052" />
<path
inkscape:connector-curvature="0"
id="path4717"
d="m 415.61815,476.33932 l 0,-7.74094 l -2.89162,0 l 0,-1.03571 l 6.95667,0 l 0,1.03571 l -2.90361,0 l 0,7.74094 l -1.16144,0" />
<path
inkscape:connector-curvature="0"
id="path4719"
d="m 419.05458,476.33932 l 3.37057,-8.77665 l 1.25125,0 l 3.59208,8.77665 l -1.32308,0 l -1.02375,-2.65814 l -3.66991,0 l -0.96388,2.65814 l -1.23328,0 m 2.53242,-3.60405 l 2.97544,0 l -0.91598,-2.43065 c -0.27939,-0.73836 -0.48693,-1.34503 -0.62262,-1.81999 c -0.11176,0.56277 -0.26941,1.12154 -0.47296,1.67631 l -0.96388,2.57433" />
<path
inkscape:connector-curvature="0"
id="path4721"
d="m 428.16052,476.33932 l 0,-8.77665 l 3.29274,0 c 0.67052,0 1.20733,0.0898 1.61045,0.2694 c 0.4071,0.17562 0.7244,0.44902 0.9519,0.82019 c 0.23149,0.3672 0.34723,0.75235 0.34724,1.15546 c -10e-6,0.37518 -0.10178,0.7284 -0.30533,1.05966 c -0.20356,0.33128 -0.51088,0.59869 -0.92197,0.80224 c 0.53083,0.15566 0.93793,0.42107 1.22131,0.79624 c 0.28736,0.37518 0.43104,0.8182 0.43105,1.32907 c -1e-5,0.4111 -0.0878,0.79425 -0.26342,1.14947 c -0.17163,0.35123 -0.38516,0.62263 -0.64059,0.8142 c -0.25544,0.19158 -0.57673,0.33726 -0.96387,0.43704 c -0.38316,0.0958 -0.85412,0.14368 -1.41289,0.14368 l -3.34662,0 m 1.16144,-5.08878 l 1.89781,0 c 0.51487,0 0.88405,-0.0339 1.10756,-0.10178 c 0.29535,-0.0878 0.51686,-0.23348 0.66454,-0.43703 c 0.15166,-0.20355 0.22749,-0.45899 0.2275,-0.76632 c -1e-5,-0.29135 -0.0699,-0.54678 -0.20954,-0.76631 c -0.1397,-0.2235 -0.33926,-0.37516 -0.59868,-0.45499 c -0.25943,-0.0838 -0.70445,-0.12572 -1.33506,-0.12573 l -1.75413,0 l 0,2.65216 m 0,4.05307 l 2.18518,0 c 0.37517,0 0.63859,-0.014 0.79026,-0.0419 c 0.26741,-0.0479 0.49091,-0.12772 0.67052,-0.23947 c 0.1796,-0.11175 0.32728,-0.2734 0.44303,-0.48493 c 0.11573,-0.21553 0.17361,-0.46298 0.17361,-0.74237 c 0,-0.32727 -0.0838,-0.61065 -0.25144,-0.85012 c -0.16764,-0.24346 -0.40112,-0.41309 -0.70046,-0.50888 c -0.29535,-0.0998 -0.72241,-0.14967 -1.28118,-0.14967 l -2.02952,0 l 0,3.01735" />
<path
inkscape:connector-curvature="0"
id="path4723"
d="m 443.42089,476.33932 l -1.07763,0 l 0,-6.86686 c -0.25943,0.24746 -0.60068,0.49491 -1.02374,0.74236 c -0.41908,0.24746 -0.79625,0.43305 -1.13151,0.55677 l 0,-1.0417 c 0.60267,-0.28337 1.12951,-0.62661 1.58052,-1.02973 c 0.451,-0.4031 0.7703,-0.79424 0.95789,-1.17342 l 0.69447,0 l 0,8.81258" />
</g>
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer81"
inkscape:label="warning-time">
<g
id="warning-time"
transform="scale(0.96825397,1)">
<rect
y="464"
x="-1.0658141e-14"
height="16"
width="94.5"
id="warning-time-box"
style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
inkscape:label="#rect4824" />
<text
sodipodi:linespacing="125%"
id="text4886"
y="476.43744"
x="22.708328"
style="font-size:12.41659832px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
xml:space="preserve"><tspan
y="476.43744"
x="22.708328"
id="tspan4888"
sodipodi:role="line">00.00.00</tspan></text>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer29"
inkscape:label="warning-master-caution"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="warning-master-caution"
inkscape:label="#g4850">
@ -5052,67 +5165,67 @@
inkscape:label="#warning-master-caution-label"
transform="translate(-0.37041,0.11598)">
<path
d="m 267.67041,467.55505 1.76367,0 2.23242,5.95313 2.24414,-5.95313 1.76368,0 0,8.74805 -1.1543,0 0,-7.68164 -2.25586,6 -1.18945,0 -2.25586,-6 0,7.68164 -1.14844,0 0,-8.74805"
d="m 267.67041,467.55505 l 1.76367,0 l 2.23242,5.95313 l 2.24414,-5.95313 l 1.76368,0 l 0,8.74805 l -1.1543,0 l 0,-7.68164 l -2.25586,6 l -1.18945,0 l -2.25586,-6 l 0,7.68164 l -1.14844,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6138"
inkscape:connector-curvature="0" />
<path
d="m 280.95361,468.72107 -1.60547,4.35351 3.2168,0 -1.61133,-4.35351 m -0.66797,-1.16602 1.3418,0 3.33399,8.74805 -1.23047,0 -0.79688,-2.24414 -3.94336,0 -0.79687,2.24414 -1.24805,0 3.33984,-8.74805"
d="m 280.95361,468.72107 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33399,8.74805 l -1.23047,0 l -0.79688,-2.24414 l -3.94336,0 l -0.79687,2.24414 l -1.24805,0 l 3.33984,-8.74805"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6140"
inkscape:connector-curvature="0" />
<path
d="m 291.47705,467.84216 0,1.1543 c -0.44922,-0.21484 -0.87305,-0.37499 -1.27148,-0.48047 -0.39845,-0.10546 -0.78321,-0.15819 -1.1543,-0.1582 -0.64454,10e-6 -1.14258,0.12501 -1.49414,0.375 -0.34766,0.25001 -0.52149,0.60547 -0.52149,1.0664 0,0.38673 0.11524,0.6797 0.34571,0.87891 0.23437,0.19532 0.67578,0.35352 1.32422,0.47461 l 0.71484,0.14648 c 0.88281,0.16798 1.5332,0.46485 1.95117,0.89063 0.42187,0.42188 0.63281,0.98828 0.63281,1.69922 0,0.84766 -0.28516,1.49023 -0.85546,1.92773 -0.56642,0.4375 -1.39845,0.65625 -2.4961,0.65625 -0.41406,0 -0.85547,-0.0469 -1.32422,-0.14062 -0.46484,-0.0937 -0.94726,-0.23242 -1.44726,-0.41602 l 0,-1.21875 c 0.48047,0.26953 0.95117,0.47266 1.41211,0.60938 0.46093,0.13672 0.91406,0.20508 1.35937,0.20507 0.67578,10e-6 1.19726,-0.13281 1.56446,-0.39843 0.36718,-0.26563 0.55077,-0.64453 0.55078,-1.13672 -1e-5,-0.42969 -0.13282,-0.76562 -0.39844,-1.00781 -0.26172,-0.24219 -0.69337,-0.42383 -1.29492,-0.54493 l -0.72071,-0.14062 c -0.88281,-0.17578 -1.52148,-0.45117 -1.91601,-0.82617 -0.39453,-0.375 -0.5918,-0.89648 -0.5918,-1.56446 0,-0.77343 0.27148,-1.3828 0.81445,-1.82812 0.54688,-0.4453 1.29883,-0.66796 2.25586,-0.66797 0.41016,1e-5 0.82812,0.0371 1.25391,0.11133 0.42578,0.0742 0.86132,0.18555 1.30664,0.33398"
d="m 291.47705,467.84216 l 0,1.1543 c -0.44922,-0.21484 -0.87305,-0.37499 -1.27148,-0.48047 c -0.39845,-0.10546 -0.78321,-0.15819 -1.1543,-0.1582 c -0.64454,10e-6 -1.14258,0.12501 -1.49414,0.375 c -0.34766,0.25001 -0.52149,0.60547 -0.52149,1.0664 c 0,0.38673 0.11524,0.6797 0.34571,0.87891 c 0.23437,0.19532 0.67578,0.35352 1.32422,0.47461 l 0.71484,0.14648 c 0.88281,0.16798 1.5332,0.46485 1.95117,0.89063 c 0.42187,0.42188 0.63281,0.98828 0.63281,1.69922 c 0,0.84766 -0.28516,1.49023 -0.85546,1.92773 c -0.56642,0.4375 -1.39845,0.65625 -2.4961,0.65625 c -0.41406,0 -0.85547,-0.0469 -1.32422,-0.14062 c -0.46484,-0.0937 -0.94726,-0.23242 -1.44726,-0.41602 l 0,-1.21875 c 0.48047,0.26953 0.95117,0.47266 1.41211,0.60938 c 0.46093,0.13672 0.91406,0.20508 1.35937,0.20507 c 0.67578,10e-6 1.19726,-0.13281 1.56446,-0.39843 c 0.36718,-0.26563 0.55077,-0.64453 0.55078,-1.13672 c -1e-5,-0.42969 -0.13282,-0.76562 -0.39844,-1.00781 c -0.26172,-0.24219 -0.69337,-0.42383 -1.29492,-0.54493 l -0.72071,-0.14062 c -0.88281,-0.17578 -1.52148,-0.45117 -1.91601,-0.82617 c -0.39453,-0.375 -0.5918,-0.89648 -0.5918,-1.56446 c 0,-0.77343 0.27148,-1.3828 0.81445,-1.82812 c 0.54688,-0.4453 1.29883,-0.66796 2.25586,-0.66797 c 0.41016,1e-5 0.82812,0.0371 1.25391,0.11133 c 0.42578,0.0742 0.86132,0.18555 1.30664,0.33398"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6142"
inkscape:connector-curvature="0" />
<path
d="m 292.63721,467.55505 7.40039,0 0,0.9961 -3.10547,0 0,7.75195 -1.18945,0 0,-7.75195 -3.10547,0 0,-0.9961"
d="m 292.63721,467.55505 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6144"
inkscape:connector-curvature="0" />
<path
d="m 301.18604,467.55505 5.53125,0 0,0.9961 -4.34766,0 0,2.58984 4.16601,0 0,0.99609 -4.16601,0 0,3.16993 4.45312,0 0,0.99609 -5.63671,0 0,-8.74805"
d="m 301.18604,467.55505 l 5.53125,0 l 0,0.9961 l -4.34766,0 l 0,2.58984 l 4.16601,0 l 0,0.99609 l -4.16601,0 l 0,3.16993 l 4.45312,0 l 0,0.99609 l -5.63671,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6146"
inkscape:connector-curvature="0" />
<path
d="m 312.92822,472.20154 c 0.2539,0.0859 0.5,0.26953 0.73828,0.55078 0.24219,0.28125 0.48437,0.66797 0.72657,1.16016 l 1.20117,2.39062 -1.27149,0 -1.11914,-2.24414 c -0.28906,-0.58593 -0.57031,-0.97461 -0.84375,-1.16602 -0.26953,-0.1914 -0.63867,-0.2871 -1.10742,-0.28711 l -1.28906,0 0,3.69727 -1.18359,0 0,-8.74805 2.67187,0 c 1,1e-5 1.74609,0.209 2.23828,0.62696 0.49218,0.41797 0.73828,1.04883 0.73828,1.89257 0,0.55079 -0.12891,1.00782 -0.38672,1.3711 -0.25391,0.36328 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 0,3.10547 1.48828,0 c 0.57031,0 1,-0.13086 1.28906,-0.39258 0.29297,-0.26562 0.43945,-0.65429 0.43946,-1.16602 -1e-5,-0.51171 -0.14649,-0.89647 -0.43946,-1.15429 -0.28906,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
d="m 312.92822,472.20154 c 0.2539,0.0859 0.5,0.26953 0.73828,0.55078 c 0.24219,0.28125 0.48437,0.66797 0.72657,1.16016 l 1.20117,2.39062 l -1.27149,0 l -1.11914,-2.24414 c -0.28906,-0.58593 -0.57031,-0.97461 -0.84375,-1.16602 c -0.26953,-0.1914 -0.63867,-0.2871 -1.10742,-0.28711 l -1.28906,0 l 0,3.69727 l -1.18359,0 l 0,-8.74805 l 2.67187,0 c 1,1e-5 1.74609,0.209 2.23828,0.62696 c 0.49218,0.41797 0.73828,1.04883 0.73828,1.89257 c 0,0.55079 -0.12891,1.00782 -0.38672,1.3711 c -0.25391,0.36328 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 l 0,3.10547 l 1.48828,0 c 0.57031,0 1,-0.13086 1.28906,-0.39258 c 0.29297,-0.26562 0.43945,-0.65429 0.43946,-1.16602 c -1e-5,-0.51171 -0.14649,-0.89647 -0.43946,-1.15429 c -0.28906,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6148"
inkscape:connector-curvature="0" />
<path
d="m 327.49463,468.22888 0,1.24805 c -0.39845,-0.37109 -0.82423,-0.64843 -1.27734,-0.83203 -0.44923,-0.18359 -0.92774,-0.27539 -1.43555,-0.27539 -1.00001,0 -1.76563,0.30665 -2.29688,0.91992 -0.53125,0.60938 -0.79687,1.49219 -0.79687,2.64844 0,1.15234 0.26562,2.03515 0.79687,2.64843 0.53125,0.60938 1.29687,0.91407 2.29688,0.91407 0.50781,0 0.98632,-0.0918 1.43555,-0.27539 0.45311,-0.1836 0.87889,-0.46094 1.27734,-0.83204 l 0,1.23633 c -0.41407,0.28125 -0.85352,0.49219 -1.31836,0.63281 -0.46094,0.14063 -0.94922,0.21094 -1.46484,0.21094 -1.32423,0 -2.36719,-0.40429 -3.12891,-1.21289 -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32226 0,-1.40625 0.38086,-2.51367 1.14258,-3.32227 0.76172,-0.81249 1.80468,-1.21874 3.12891,-1.21875 0.52343,1e-5 1.01561,0.0703 1.47656,0.21094 0.46484,0.13673 0.90038,0.34376 1.30664,0.62109"
d="m 327.49463,468.22888 l 0,1.24805 c -0.39845,-0.37109 -0.82423,-0.64843 -1.27734,-0.83203 c -0.44923,-0.18359 -0.92774,-0.27539 -1.43555,-0.27539 c -1.00001,0 -1.76563,0.30665 -2.29688,0.91992 c -0.53125,0.60938 -0.79687,1.49219 -0.79687,2.64844 c 0,1.15234 0.26562,2.03515 0.79687,2.64843 c 0.53125,0.60938 1.29687,0.91407 2.29688,0.91407 c 0.50781,0 0.98632,-0.0918 1.43555,-0.27539 c 0.45311,-0.1836 0.87889,-0.46094 1.27734,-0.83204 l 0,1.23633 c -0.41407,0.28125 -0.85352,0.49219 -1.31836,0.63281 c -0.46094,0.14063 -0.94922,0.21094 -1.46484,0.21094 c -1.32423,0 -2.36719,-0.40429 -3.12891,-1.21289 c -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32226 c 0,-1.40625 0.38086,-2.51367 1.14258,-3.32227 c 0.76172,-0.81249 1.80468,-1.21874 3.12891,-1.21875 c 0.52343,1e-5 1.01561,0.0703 1.47656,0.21094 c 0.46484,0.13673 0.90038,0.34376 1.30664,0.62109"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6150"
inkscape:connector-curvature="0" />
<path
d="m 332.2583,468.72107 -1.60547,4.35351 3.2168,0 -1.61133,-4.35351 m -0.66797,-1.16602 1.3418,0 3.33398,8.74805 -1.23047,0 -0.79687,-2.24414 -3.94336,0 -0.79687,2.24414 -1.24805,0 3.33984,-8.74805"
d="m 332.2583,468.72107 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33398,8.74805 l -1.23047,0 l -0.79687,-2.24414 l -3.94336,0 l -0.79687,2.24414 l -1.24805,0 l 3.33984,-8.74805"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6152"
inkscape:connector-curvature="0" />
<path
d="m 337.40283,467.55505 1.18946,0 0,5.31446 c -10e-6,0.9375 0.16991,1.61328 0.50976,2.02734 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 0.33984,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 1.18946,0 0,5.46094 c -10e-6,1.14063 -0.28321,2.00196 -0.84961,2.58399 -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 -1.10547,0 -1.9414,-0.29101 -2.50781,-0.87304 -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
d="m 337.40283,467.55505 l 1.18946,0 l 0,5.31446 c -10e-6,0.9375 0.16991,1.61328 0.50976,2.02734 c 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 c 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 c 0.33984,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 l 1.18946,0 l 0,5.46094 c -10e-6,1.14063 -0.28321,2.00196 -0.84961,2.58399 c -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 c -1.10547,0 -1.9414,-0.29101 -2.50781,-0.87304 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6154"
inkscape:connector-curvature="0" />
<path
d="m 345.11377,467.55505 7.40039,0 0,0.9961 -3.10547,0 0,7.75195 -1.18945,0 0,-7.75195 -3.10547,0 0,-0.9961"
d="m 345.11377,467.55505 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6156"
inkscape:connector-curvature="0" />
<path
d="m 353.6626,467.55505 1.18359,0 0,8.74805 -1.18359,0 0,-8.74805"
d="m 353.6626,467.55505 l 1.18359,0 l 0,8.74805 l -1.18359,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6158"
inkscape:connector-curvature="0" />
<path
d="m 360.75244,468.35779 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 0,1.10156 0.25195,1.97265 0.75586,2.61328 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,1e-5 2.20703,0.41212 2.94141,1.23633 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 -1.23047,0 -2.21484,-0.41015 -2.95312,-1.23047 -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 0.73828,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
d="m 360.75244,468.35779 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 c -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 c 0,1.10156 0.25195,1.97265 0.75586,2.61328 c 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 c 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 c 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,1e-5 2.20703,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 c -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21484,-0.41015 -2.95312,-1.23047 c -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 c 0.73828,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6160"
inkscape:connector-curvature="0" />
<path
d="m 366.64697,467.55505 1.59375,0 3.87891,7.31836 0,-7.31836 1.14844,0 0,8.74805 -1.59375,0 -3.87891,-7.31836 0,7.31836 -1.14844,0 0,-8.74805"
d="m 366.64697,467.55505 l 1.59375,0 l 3.87891,7.31836 l 0,-7.31836 l 1.14844,0 l 0,8.74805 l -1.59375,0 l -3.87891,-7.31836 l 0,7.31836 l -1.14844,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
id="path6162"
inkscape:connector-curvature="0" />
@ -5123,11 +5236,11 @@
inkscape:groupmode="layer"
id="layer33"
inkscape:label="warning-rc-input"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="warning-rc-input"
inkscape:label="#g4855">
inkscape:label="#g4855"
transform="translate(-0.5,0)">
<rect
y="464"
x="176"
@ -5140,37 +5253,37 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
id="warning-rc-input-label">
<path
d="m 193.82991,472.31738 c 0.2539,0.0859 0.49999,0.26954 0.73828,0.55078 0.24218,0.28126 0.48437,0.66798 0.72656,1.16016 l 1.20118,2.39063 -1.27149,0 -1.11914,-2.24415 c -0.28907,-0.58593 -0.57032,-0.9746 -0.84375,-1.16601 -0.26953,-0.1914 -0.63868,-0.28711 -1.10742,-0.28711 l -1.28906,0 0,3.69727 -1.1836,0 0,-8.74805 2.67188,0 c 0.99999,10e-6 1.74609,0.20899 2.23828,0.62695 0.49218,0.41798 0.73827,1.04884 0.73828,1.89258 -1e-5,0.55079 -0.12891,1.00782 -0.38672,1.37109 -0.25391,0.36329 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 0,3.10547 1.48828,0 c 0.57031,1e-5 0.99999,-0.13085 1.28906,-0.39257 0.29296,-0.26562 0.43945,-0.6543 0.43945,-1.16602 0,-0.51171 -0.14649,-0.89648 -0.43945,-1.1543 -0.28907,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
d="m 193.82991,472.31738 c 0.2539,0.0859 0.49999,0.26954 0.73828,0.55078 c 0.24218,0.28126 0.48437,0.66798 0.72656,1.16016 l 1.20118,2.39063 l -1.27149,0 l -1.11914,-2.24415 c -0.28907,-0.58593 -0.57032,-0.9746 -0.84375,-1.16601 c -0.26953,-0.1914 -0.63868,-0.28711 -1.10742,-0.28711 l -1.28906,0 l 0,3.69727 l -1.1836,0 l 0,-8.74805 l 2.67188,0 c 0.99999,10e-6 1.74609,0.20899 2.23828,0.62695 c 0.49218,0.41798 0.73827,1.04884 0.73828,1.89258 c -1e-5,0.55079 -0.12891,1.00782 -0.38672,1.37109 c -0.25391,0.36329 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 l 0,3.10547 l 1.48828,0 c 0.57031,1e-5 0.99999,-0.13085 1.28906,-0.39257 c 0.29296,-0.26562 0.43945,-0.6543 0.43945,-1.16602 c 0,-0.51171 -0.14649,-0.89648 -0.43945,-1.1543 c -0.28907,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
style="font-size:12px;fill:#ffffff"
id="path6123"
inkscape:connector-curvature="0" />
<path
d="m 203.99007,468.34473 0,1.24804 c -0.39845,-0.37108 -0.82423,-0.64843 -1.27735,-0.83203 -0.44922,-0.18358 -0.92774,-0.27538 -1.43554,-0.27539 -1.00001,1e-5 -1.76563,0.30665 -2.29688,0.91992 -0.53125,0.60938 -0.79688,1.4922 -0.79687,2.64844 -10e-6,1.15235 0.26562,2.03516 0.79687,2.64844 0.53125,0.60937 1.29687,0.91406 2.29688,0.91406 0.5078,0 0.98632,-0.0918 1.43554,-0.27539 0.45312,-0.18359 0.8789,-0.46094 1.27735,-0.83203 l 0,1.23633 c -0.41407,0.28125 -0.85353,0.49218 -1.31836,0.63281 -0.46095,0.14062 -0.94923,0.21094 -1.46485,0.21094 -1.32422,0 -2.36719,-0.4043 -3.1289,-1.21289 -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32227 0,-1.40624 0.38086,-2.51366 1.14258,-3.32226 0.76171,-0.8125 1.80468,-1.21875 3.1289,-1.21875 0.52344,0 1.01562,0.0703 1.47657,0.21093 0.46483,0.13673 0.90038,0.34376 1.30664,0.6211"
d="m 203.99007,468.34473 l 0,1.24804 c -0.39845,-0.37108 -0.82423,-0.64843 -1.27735,-0.83203 c -0.44922,-0.18358 -0.92774,-0.27538 -1.43554,-0.27539 c -1.00001,1e-5 -1.76563,0.30665 -2.29688,0.91992 c -0.53125,0.60938 -0.79688,1.4922 -0.79687,2.64844 c -10e-6,1.15235 0.26562,2.03516 0.79687,2.64844 c 0.53125,0.60937 1.29687,0.91406 2.29688,0.91406 c 0.5078,0 0.98632,-0.0918 1.43554,-0.27539 c 0.45312,-0.18359 0.8789,-0.46094 1.27735,-0.83203 l 0,1.23633 c -0.41407,0.28125 -0.85353,0.49218 -1.31836,0.63281 c -0.46095,0.14062 -0.94923,0.21094 -1.46485,0.21094 c -1.32422,0 -2.36719,-0.4043 -3.1289,-1.21289 c -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32227 c 0,-1.40624 0.38086,-2.51366 1.14258,-3.32226 c 0.76171,-0.8125 1.80468,-1.21875 3.1289,-1.21875 c 0.52344,0 1.01562,0.0703 1.47657,0.21093 c 0.46483,0.13673 0.90038,0.34376 1.30664,0.6211"
style="font-size:12px;fill:#ffffff"
id="path6125"
inkscape:connector-curvature="0" />
<path
d="m 209.65022,467.6709 1.1836,0 0,8.74805 -1.1836,0 0,-8.74805"
d="m 209.65022,467.6709 l 1.1836,0 l 0,8.74805 l -1.1836,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6127"
inkscape:connector-curvature="0" />
<path
d="m 213.18929,467.6709 1.59375,0 3.8789,7.31836 0,-7.31836 1.14844,0 0,8.74805 -1.59375,0 -3.87891,-7.31836 0,7.31836 -1.14843,0 0,-8.74805"
d="m 213.18929,467.6709 l 1.59375,0 l 3.8789,7.31836 l 0,-7.31836 l 1.14844,0 l 0,8.74805 l -1.59375,0 l -3.87891,-7.31836 l 0,7.31836 l -1.14843,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6129"
inkscape:connector-curvature="0" />
<path
d="m 223.34944,468.64355 0,3.28711 1.48828,0 c 0.55078,1e-5 0.97656,-0.14257 1.27735,-0.42773 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 -1e-5,-0.52343 -0.1504,-0.92773 -0.45117,-1.21289 -0.30079,-0.28515 -0.72657,-0.42773 -1.27735,-0.42774 l -1.48828,0 m -1.18359,-0.97265 2.67187,0 c 0.98047,10e-6 1.7207,0.22266 2.22071,0.66797 0.5039,0.44141 0.75585,1.08985 0.75586,1.94531 -1e-5,0.86329 -0.25196,1.51563 -0.75586,1.95703 -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 0,3.51563 -1.18359,0 0,-8.74805"
d="m 223.34944,468.64355 l 0,3.28711 l 1.48828,0 c 0.55078,1e-5 0.97656,-0.14257 1.27735,-0.42773 c 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 c -1e-5,-0.52343 -0.1504,-0.92773 -0.45117,-1.21289 c -0.30079,-0.28515 -0.72657,-0.42773 -1.27735,-0.42774 l -1.48828,0 m -1.18359,-0.97265 l 2.67187,0 c 0.98047,10e-6 1.7207,0.22266 2.22071,0.66797 c 0.5039,0.44141 0.75585,1.08985 0.75586,1.94531 c -1e-5,0.86329 -0.25196,1.51563 -0.75586,1.95703 c -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 l 0,3.51563 l -1.18359,0 l 0,-8.74805"
style="font-size:12px;fill:#ffffff"
id="path6131"
inkscape:connector-curvature="0" />
<path
d="m 229.27327,467.6709 1.18945,0 0,5.31445 c 0,0.9375 0.16992,1.61328 0.50977,2.02735 0.33984,0.41015 0.89062,0.61523 1.65234,0.61523 0.75781,0 1.30664,-0.20508 1.64649,-0.61523 0.33983,-0.41407 0.50976,-1.08985 0.50976,-2.02735 l 0,-5.31445 1.18946,0 0,5.46094 c -1e-5,1.14062 -0.28322,2.00195 -0.84961,2.58398 -0.56251,0.58203 -1.39454,0.87305 -2.4961,0.87305 -1.10547,0 -1.94141,-0.29102 -2.50781,-0.87305 -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58398 l 0,-5.46094"
d="m 229.27327,467.6709 l 1.18945,0 l 0,5.31445 c 0,0.9375 0.16992,1.61328 0.50977,2.02735 c 0.33984,0.41015 0.89062,0.61523 1.65234,0.61523 c 0.75781,0 1.30664,-0.20508 1.64649,-0.61523 c 0.33983,-0.41407 0.50976,-1.08985 0.50976,-2.02735 l 0,-5.31445 l 1.18946,0 l 0,5.46094 c -1e-5,1.14062 -0.28322,2.00195 -0.84961,2.58398 c -0.56251,0.58203 -1.39454,0.87305 -2.4961,0.87305 c -1.10547,0 -1.94141,-0.29102 -2.50781,-0.87305 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58398 l 0,-5.46094"
style="font-size:12px;fill:#ffffff"
id="path6133"
inkscape:connector-curvature="0" />
<path
d="m 236.98421,467.6709 7.40039,0 0,0.99609 -3.10547,0 0,7.75196 -1.18945,0 0,-7.75196 -3.10547,0 0,-0.99609"
d="m 236.98421,467.6709 l 7.40039,0 l 0,0.99609 l -3.10547,0 l 0,7.75196 l -1.18945,0 l 0,-7.75196 l -3.10547,0 l 0,-0.99609"
style="font-size:12px;fill:#ffffff"
id="path6135"
inkscape:connector-curvature="0" />
@ -5200,11 +5313,11 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4819"
d="M 263.58049,88.871256 374.85741,260.61166"
d="M 263.58049,88.871256 L 374.85741,260.61166"
style="fill:none;stroke:#ff0000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ff0000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="M 374.85741,88.871256 263.58049,260.61166"
d="M 374.85741,88.871256 L 263.58049,260.61166"
id="path4821"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -5243,11 +5356,11 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4404"
d="M 2.1088442,2.592752 86.716324,34.298858"
d="M 2.1088442,2.592752 L 86.716324,34.298858"
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="M 86.716324,2.592752 2.1088442,34.298858"
d="M 86.716324,2.592752 L 2.1088442,34.298858"
id="path4616"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -5273,7 +5386,7 @@
y="1.2" />
<path
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="M 2.2773164,2.8500377 85.494821,34.130511"
d="M 2.2773164,2.8500377 L 85.494821,34.130511"
id="path4379"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -5281,7 +5394,7 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4611"
d="M 85.494821,2.8500377 2.2773164,34.130511"
d="M 85.494821,2.8500377 L 2.2773164,34.130511"
style="fill:none;stroke:#ff0000;stroke-width:3.00662947;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
@ -5307,11 +5420,11 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4309"
d="M 2.3796722,2.8075235 86.665165,34.123438"
d="M 2.3796722,2.8075235 L 86.665165,34.123438"
style="fill:none;stroke:#ff0000;stroke-width:3.00634193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
style="fill:none;stroke:#ff0000;stroke-width:3.00634193;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 86.665165,2.8075235 2.3796722,34.123438"
d="M 86.665165,2.8075235 L 2.3796722,34.123438"
id="path4607"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -5322,9 +5435,10 @@
inkscape:groupmode="layer"
id="layer69"
inkscape:label="foreground_layer"
style="display:inline">
style="display:inline"
sodipodi:insensitive="true">
<rect
style="fill:url(#radialGradient4865);stroke:none;fill-opacity:1"
style="fill:url(#radialGradient4865);fill-opacity:1;stroke:none"
id="foreground"
width="641.5"
height="481.5"

Before

Width:  |  Height:  |  Size: 438 KiB

After

Width:  |  Height:  |  Size: 447 KiB

View File

@ -67,7 +67,9 @@ PfdQmlGadgetWidget::PfdQmlGadgetWidget(QWindow *parent) :
"TakeOffLocation" <<
"PathPlan" <<
"WaypointActive" <<
"OPLinkStatus";
"OPLinkStatus" <<
"FlightStatus" <<
"SystemStats";
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();