|
|
|
@ -37,7 +37,6 @@ FactPanel {
@@ -37,7 +37,6 @@ FactPanel {
|
|
|
|
|
Item { |
|
|
|
|
property int rcValue: 1500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
property int __lastRcValue: 1500 |
|
|
|
|
readonly property int __rcValueMaxJitter: 2 |
|
|
|
|
property color __barColor: qgcPal.windowShade |
|
|
|
@ -92,7 +91,7 @@ FactPanel {
@@ -92,7 +91,7 @@ FactPanel {
|
|
|
|
|
Column { |
|
|
|
|
id: monitorColumn |
|
|
|
|
width: parent.width |
|
|
|
|
spacing: 5 |
|
|
|
|
spacing: ScreenTools.defaultFontPixelHeight / 2 |
|
|
|
|
|
|
|
|
|
QGCLabel { text: "Channel Monitor" } |
|
|
|
|
|
|
|
|
@ -107,12 +106,12 @@ FactPanel {
@@ -107,12 +106,12 @@ FactPanel {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Repeater { |
|
|
|
|
id: channelMonitorRepeater |
|
|
|
|
model: controller.channelCount |
|
|
|
|
width: parent.width |
|
|
|
|
id: channelMonitorRepeater |
|
|
|
|
model: controller.channelCount |
|
|
|
|
|
|
|
|
|
Row { |
|
|
|
|
spacing: 5 |
|
|
|
|
Item { |
|
|
|
|
width: monitorColumn.width |
|
|
|
|
height: ScreenTools.defaultFontPixelHeight |
|
|
|
|
|
|
|
|
|
// Need this to get to loader from Connections above |
|
|
|
|
property Item loader: theLoader |
|
|
|
@ -124,9 +123,11 @@ FactPanel {
@@ -124,9 +123,11 @@ FactPanel {
|
|
|
|
|
|
|
|
|
|
Loader { |
|
|
|
|
id: theLoader |
|
|
|
|
anchors.leftMargin: ScreenTools.defaultFontPixelWidth / 2 |
|
|
|
|
anchors.left: channelLabel.right |
|
|
|
|
anchors.verticalCenter: channelLabel.verticalCenter |
|
|
|
|
height: qgcView.defaultTextHeight |
|
|
|
|
width: 200 |
|
|
|
|
height: ScreenTools.defaultFontPixelHeight |
|
|
|
|
width: parent.width - anchors.leftMargin - ScreenTools.defaultFontPixelWidth |
|
|
|
|
sourceComponent: channelMonitorDisplayComponent |
|
|
|
|
|
|
|
|
|
property bool mapped: true |
|
|
|
|