APMFlightModesComponentSummary.qml 1.72 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9
import QtQuick          2.5
import QtQuick.Controls 1.2

import QGroundControl.FactSystem    1.0
import QGroundControl.FactControls  1.0
import QGroundControl.Controls      1.0
import QGroundControl.Palette       1.0

FactPanel {
10 11 12
    id:             panel
    anchors.fill:   parent
    color:          qgcPal.windowShadeDark
Don Gagne's avatar
Don Gagne committed
13 14 15 16 17 18 19 20 21 22 23

    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
    FactPanelController { id: controller; factPanel: panel }

    property Fact flightMode1: controller.getParameterFact(-1, "FLTMODE1")
    property Fact flightMode2: controller.getParameterFact(-1, "FLTMODE2")
    property Fact flightMode3: controller.getParameterFact(-1, "FLTMODE3")
    property Fact flightMode4: controller.getParameterFact(-1, "FLTMODE4")
    property Fact flightMode5: controller.getParameterFact(-1, "FLTMODE5")
    property Fact flightMode6: controller.getParameterFact(-1, "FLTMODE6")

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    Column {
        anchors.fill:       parent
        anchors.margins:    8

        VehicleSummaryRow {
            labelText: "Flight Mode 1:"
            valueText: flightMode1.enumStringValue
        }

        VehicleSummaryRow {
            labelText: "Flight Mode 2:"
            valueText: flightMode2.enumStringValue
        }

        VehicleSummaryRow {
            labelText: "Flight Mode 3:"
            valueText: flightMode3.enumStringValue
        }

        VehicleSummaryRow {
            labelText: "Flight Mode 4:"
            valueText: flightMode4.enumStringValue
        }

        VehicleSummaryRow {
            labelText: "Flight Mode 5:"
            valueText: flightMode5.enumStringValue
        }

        VehicleSummaryRow {
            labelText: "Flight Mode 6:"
            valueText: flightMode6.enumStringValue
        }
Don Gagne's avatar
Don Gagne committed
57 58
    }
}