FactSystemTest.qml 369 Bytes
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7
import QtQuick 2.2
import QtQuick.Controls 1.2
import QGroundControl.FactSystem 1.0

Item {
    TextInput {
        objectName: "testControl"
8 9
        Fact { id: fact; name: "RC_MAP_THROTTLE" }
        text: fact.value
Don Gagne's avatar
Don Gagne committed
10 11 12 13
        font.family: "Helvetica"
        font.pointSize: 24
        color: "red"
        focus: true
14
        onAccepted: { fact.value = text; }
Don Gagne's avatar
Don Gagne committed
15 16
    }
}