harbour-seaprint/qml/components/RangeSetting.qml

117 lines
3.2 KiB
QML
Raw Normal View History

2021-07-11 15:27:03 +03:00
import QtQuick 2.6
2019-12-01 22:27:00 +03:00
import Sailfish.Silica 1.0
Setting {
property int high
2020-08-01 21:18:47 +03:00
property int choice_low: 1
property int choice_high: 0
property bool suppressChange: false
2020-08-01 21:18:47 +03:00
function update_choice() {
2021-03-21 00:45:58 +03:00
if (choice_high == 0)
{
choice = undefined;
}
else
{
choice = new Object({low: choice_low, high: choice_high});
}
2020-08-01 21:18:47 +03:00
}
onChoice_highChanged: {
if(!suppressChange)
2020-08-01 21:18:47 +03:00
{
if(choice_high < choice_low)
{
low_slider.value = choice_high > 0 ? choice_high : 1;
}
2021-03-21 00:45:58 +03:00
update_choice()
2020-08-01 21:18:47 +03:00
}
}
onChoice_lowChanged: {
if(!suppressChange)
2020-08-01 21:18:47 +03:00
{
if(choice_low > choice_high)
{
high_slider.value = choice_low
}
2021-03-21 00:45:58 +03:00
update_choice()
2020-08-01 21:18:47 +03:00
}
}
onChoiceChanged: {
if(choice == undefined)
2020-08-01 21:18:47 +03:00
{
console.log("choice unset");
suppressChange = true;
low_slider.value = low_slider.minimumValue;
high_slider.value = high_slider.minimumValue;
suppressChange = false;
2020-08-01 21:18:47 +03:00
}
}
2019-12-01 22:27:00 +03:00
2021-03-21 00:45:58 +03:00
displayValue: choice == undefined ? qsTr("all") : ""+choice.low+" - "+choice.high
2019-12-01 22:27:00 +03:00
2020-11-23 22:29:59 +03:00
menu: ContextMenu {
2020-08-01 21:18:47 +03:00
MenuItem {
Slider
{
id: low_slider
minimumValue: 1
maximumValue: high > 100 ? 100 : high
2020-08-01 21:18:47 +03:00
width: parent.width
stepSize: 1
onValueChanged:
{
choice_low = value;
}
}
IconButton
{
anchors.right: parent.right
icon.source: "image://theme/icon-s-edit"
onClicked: {var dialog = pageStack.push(Qt.resolvedUrl("IntegerInputDialog.qml"),
{value: choice, title: prettyName,
min: 1, max: high});
dialog.accepted.connect(function() {
choice_low = dialog.value;
})
}
}
}
2019-12-01 22:27:00 +03:00
MenuItem {
2020-08-01 21:18:47 +03:00
Slider
{
id: high_slider
minimumValue: 0
maximumValue: high > 100 ? 100 : high
2020-08-01 21:18:47 +03:00
width: parent.width
stepSize: 1
onValueChanged:
{
choice_high = value;
}
}
IconButton
{
anchors.right: parent.right
icon.source: "image://theme/icon-s-edit"
onClicked: {var dialog = pageStack.push(Qt.resolvedUrl("IntegerInputDialog.qml"),
{value: choice, title: prettyName,
min: 1, max: high});
dialog.accepted.connect(function() {
choice_high = dialog.value;
})
}
}
2019-12-01 22:27:00 +03:00
}
}
}