SafetyComponentSummary.qml 1.18 KB
Newer Older
1 2 3
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
4

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

Column {
10 11 12 13 14 15 16 17 18 19 20 21
    Fact { id: returnAltFact;   name: "RTL_RETURN_ALT" }
    Fact { id: descendAltFact;  name: "RTL_DESCEND_ALT" }
    Fact { id: landDelayFact;   name: "RTL_LAND_DELAY" }
    Fact { id: commDLLossFact;  name: "COM_DL_LOSS_EN" }
    Fact { id: commRCLossFact;  name: "COM_RC_LOSS_T" }

    anchors.fill:       parent
    anchors.margins:    8

    VehicleSummaryRow {
        labelText: "RTL min alt:"
        valueText: returnAltFact.valueString
22 23
    }

24 25 26
    VehicleSummaryRow {
        labelText: "RTL home alt:"
        valueText: descendAltFact.valueString
27 28
    }

29 30 31
    VehicleSummaryRow {
        labelText: "RTL loiter delay:"
        valueText: landDelayFact.value < 0 ? "Disabled" : landDelayFact.valueString
32 33
    }

34 35 36
    VehicleSummaryRow {
        labelText: "Telemetry loss RTL:"
        valueText: commDLLossFact.value != -1 ? "Disabled" : commDLLossFact.valueString
37 38
    }

39 40 41
    VehicleSummaryRow {
        labelText: "RC loss RTL (seconds):"
        valueText: commRCLossFact.valueString
42 43
    }
}