PX4RadioComponentSummary.qml 2.43 KB
Newer Older
1
import QtQuick 2.7
2
import QtQuick.Controls 1.4
3

4 5 6 7
import QGroundControl.FactSystem 1.0
import QGroundControl.FactControls 1.0
import QGroundControl.Controls 1.0
import QGroundControl.Palette 1.0
8

9
FactPanel {
10 11 12
    id:             panel
    anchors.fill:   parent
    color:          qgcPal.windowShadeDark
13

Don Gagne's avatar
Don Gagne committed
14 15 16 17 18 19 20 21 22 23
    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
    FactPanelController { id: controller; factPanel: panel }

    property Fact mapRollFact:      controller.getParameterFact(-1, "RC_MAP_ROLL")
    property Fact mapPitchFact:     controller.getParameterFact(-1, "RC_MAP_PITCH")
    property Fact mapYawFact:       controller.getParameterFact(-1, "RC_MAP_YAW")
    property Fact mapThrottleFact:  controller.getParameterFact(-1, "RC_MAP_THROTTLE")
    property Fact mapFlapsFact:     controller.getParameterFact(-1, "RC_MAP_FLAPS")
    property Fact mapAux1Fact:      controller.getParameterFact(-1, "RC_MAP_AUX1")
    property Fact mapAux2Fact:      controller.getParameterFact(-1, "RC_MAP_AUX2")
24

25 26
    Column {
        anchors.fill:       parent
27

28
        VehicleSummaryRow {
29 30
            labelText: qsTr("Roll:")
            valueText: mapRollFact ? (mapRollFact.value === 0 ? qsTr("Setup required") : mapRollFact.valueString) : ""
31
        }
32

33
        VehicleSummaryRow {
34 35
            labelText: qsTr("Pitch:")
            valueText: mapPitchFact ? (mapPitchFact.value === 0 ? qsTr("Setup required") : mapPitchFact.valueString) : ""
36
        }
37

38
        VehicleSummaryRow {
39 40
            labelText: qsTr("Yaw:")
            valueText: mapYawFact ? (mapYawFact.value === 0 ? qsTr("Setup required") : mapYawFact.valueString) : ""
41
        }
42

43
        VehicleSummaryRow {
44 45
            labelText: qsTr("Throttle:")
            valueText: mapThrottleFact ? (mapThrottleFact.value === 0 ? qsTr("Setup required") : mapThrottleFact.valueString) : ""
46
        }
47

48
        VehicleSummaryRow {
Don Gagne's avatar
Don Gagne committed
49 50 51
            labelText:  qsTr("Flaps:")
            valueText:  mapFlapsFact ? (mapFlapsFact.value === 0 ? qsTr("Disabled") : mapFlapsFact.valueString) : ""
            visible:    !controller.vehicle.multiRotor
52
        }
53

54
        VehicleSummaryRow {
55 56
            labelText: qsTr("Aux1:")
            valueText: mapAux1Fact ? (mapAux1Fact.value === 0 ? qsTr("Disabled") : mapAux1Fact.valueString) : ""
57
        }
58

59
        VehicleSummaryRow {
60 61
            labelText: qsTr("Aux2:")
            valueText: mapAux2Fact ? (mapAux2Fact.value === 0 ? qsTr("Disabled") : mapAux2Fact.valueString) : ""
62
        }
63 64
    }
}