1
0
Fork 0
flightgear/src/GUI/qml/SettingCheckbox.qml

41 lines
912 B
QML
Raw Normal View History

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)
}
}
}