4 changed files with 0 additions and 78 deletions
@ -1,71 +0,0 @@
@@ -1,71 +0,0 @@
|
||||
import QtQuick 2.2 |
||||
|
||||
import QGroundControl.Palette 1.0 |
||||
import QGroundControl.ScreenTools 1.0 |
||||
|
||||
Item { |
||||
id: legendRoot |
||||
|
||||
property var _qgcPal: QGCPalette { colorGroupEnabled: enabled } |
||||
property real _rotorRadius: legendRoot.height / 16 |
||||
|
||||
readonly property string _cwColor: "#15ce15" // Green |
||||
readonly property string _ccwColor: "#1283e0" // Blue |
||||
|
||||
Item { |
||||
id: cwItem |
||||
anchors.left: parent.left |
||||
anchors.right: parent.right |
||||
height: legendRoot.height / 2 |
||||
|
||||
Rectangle { |
||||
id: cwRotor |
||||
anchors.left: parent.left |
||||
anchors.verticalCenter: parent.verticalCenter |
||||
width: _rotorRadius * 2 |
||||
height: _rotorRadius * 2 |
||||
radius: _rotorRadius |
||||
color: _cwColor |
||||
} |
||||
|
||||
QGCLabel { |
||||
anchors.leftMargin: ScreenTools.defaultFontPixelWidth |
||||
anchors.left: cwRotor.right |
||||
anchors.right: parent.right |
||||
anchors.top: parent.top |
||||
anchors.bottom: parent.bottom |
||||
verticalAlignment: Text.AlignVCenter |
||||
wrapMode: Text.WordWrap |
||||
text: qsTr("Clockwise rotation, use pusher propeller") |
||||
} |
||||
} |
||||
|
||||
Item { |
||||
id: ccwItem |
||||
anchors.top: cwItem.bottom |
||||
anchors.bottom: parent.bottom |
||||
anchors.left: parent.left |
||||
anchors.right: parent.right |
||||
|
||||
Rectangle { |
||||
id: ccwRotor |
||||
anchors.left: parent.left |
||||
anchors.verticalCenter: parent.verticalCenter |
||||
width: _rotorRadius * 2 |
||||
height: _rotorRadius * 2 |
||||
radius: _rotorRadius |
||||
color: _ccwColor |
||||
} |
||||
|
||||
QGCLabel { |
||||
anchors.leftMargin: ScreenTools.defaultFontPixelWidth |
||||
anchors.left: ccwRotor.right |
||||
anchors.right: parent.right |
||||
anchors.top: parent.top |
||||
anchors.bottom: parent.bottom |
||||
verticalAlignment: Text.AlignVCenter |
||||
wrapMode: Text.WordWrap |
||||
text: qsTr("Counter Clockwise rotation, use normal propeller") |
||||
} |
||||
} |
||||
} // Item |
Loading…
Reference in new issue