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