SafetyComponent.qml 598 Bytes
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
import QGroundControl.FactSystem 1.0
5
import QGroundControl.FactControls 1.0
Don Gagne's avatar
Don Gagne committed
6 7 8 9 10 11 12 13 14 15

Rectangle {
    QGCPalette { id: palette; colorGroup: QGCPalette.Active }

    width: 400
    height: 400
    color: palette.window

    Column {
        Label { text: "Work in Progress"; color: palette.windowText }
16 17 18
        Label { text: "Return to Land Altitude"; color: palette.windowText }
        FactLabel { fact: autopilot.parameters["RTL_RETURN_ALT"] }
        FactTextField { fact: autopilot.parameters["RTL_RETURN_ALT"] }
Don Gagne's avatar
Don Gagne committed
19 20
    }
}