QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FactCheckBox.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7QGCCheckBox {
8 property Fact fact: Fact { }
9
10 property variant checkedValue: 1
11 property variant uncheckedValue: 0
12
13 Binding on checkState {
14 value: fact ?
15 (fact.typeIsBool ?
16 (fact.value ? Qt.Checked : Qt.Unchecked) :
17 (fact.value !== 0 ? Qt.Checked : Qt.Unchecked)) :
18 Qt.Unchecked
19 }
20
21 onClicked: fact.value = (checked ? checkedValue : uncheckedValue)
22}