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: _typeIsBool ? true : 1
11 property var uncheckedValue: _typeIsBool ? false : 0
12
13 property var _typeIsBool: fact ? fact.typeIsBool : false
14
15 Binding on checked {
16 value: fact ?
17 (fact.value === uncheckedValue ? Qt.Unchecked : Qt.Checked) :
18 Qt.Unchecked
19 }
20
21 onClicked: fact.value = (checked ? checkedValue : uncheckedValue)
22}