1
0
Fork 0
flightgear/src/GUI/qml/SettingCheckbox.qml
James Turner 4c2e52c2dc Standardise QtQuick version to 2.4
Will fix an issue reported on the forum where a 2.7 dep crept it.
2018-03-19 08:22:11 +00:00

40 lines
912 B
QML

import QtQuick 2.4
import "."
SettingControl {
id: root
property alias checked: toggle.checked
property alias value: toggle.checked
property bool defaultValue: false
// should we set the option, if the current value matches the default?
// this is used to suppress setting needless options to their default
// value
property bool setIfDefault: false
ToggleSwitch {
id: toggle
label: root.label
enabled: root.enabled
}
SettingDescription {
id: description
enabled: root.enabled
text: root.description
anchors.top: toggle.bottom
anchors.topMargin: Style.margin
width: root.width
}
function apply()
{
if (option == "")
return;
if (setIfDefault || (value != defaultValue)) {
_config.setEnableDisableOption(option, checked)
}
}
}