AirframeComponentSummary.qml 1.19 KB
Newer Older
1
import QtQuick 2.2
2
import QtQuick.Controls 1.2
3

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

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

Don Gagne's avatar
Don Gagne committed
15
    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
16
    AirframeComponentController { id: controller; factPanel: panel }
17

Don Gagne's avatar
Don Gagne committed
18 19
    property Fact sysIdFact:        controller.getParameterFact(-1, "MAV_SYS_ID")
    property Fact sysAutoStartFact: controller.getParameterFact(-1, "SYS_AUTOSTART")
20

21
    property bool autoStartSet: sysAutoStartFact.value != 0
22

23 24 25
    Column {
        anchors.fill: parent
        anchors.margins: 8
26

27 28 29 30
        VehicleSummaryRow {
            labelText: "System ID:"
            valueText: sysIdFact.valueString
        }
31

32 33 34 35
        VehicleSummaryRow {
            labelText: "Airframe type:"
            valueText: autoStartSet ? controller.currentAirframeType : "Setup required"
        }
36

37 38 39 40
        VehicleSummaryRow {
            labelText: "Vehicle:"
            valueText: autoStartSet ? controller.currentVehicleName : "Setup required"
        }
41
    }
42
}