harbour-seaprint/qml/components/RangeSetting.qml

115 lines
3 KiB
QML
Raw Normal View History

2019-12-01 22:27:00 +03:00
import QtQuick 2.0
import Sailfish.Silica 1.0
Setting {
id: settingEntry
height: button.height + menu.height
2019-12-01 22:27:00 +03:00
property int high
2020-08-01 21:18:47 +03:00
property int choice_low: 1
property int choice_high: 0
function update_choice() {
choice = new Object({low: choice_low, high: choice_high});
}
onChoice_highChanged: {
if(choice_high < choice_low)
{
low_slider.value = choice_high > 0 ? choice_high : 1;
}
else
{
update_choice()
}
}
onChoice_lowChanged: {
if(choice_low > choice_high)
{
high_slider.value = choice_low
}
else
{
update_choice()
}
}
2019-12-01 22:27:00 +03:00
ValueButton {
id: button
2019-12-01 22:27:00 +03:00
enabled: valid
label: prettyName
2020-08-01 21:18:47 +03:00
value: choice_high==0 ? qsTr("all") : ""+choice_low+" - "+choice_high
2019-12-01 22:27:00 +03:00
onClicked: parent.clicked()
}
onClicked: menu.open(settingEntry)
ContextMenu {
2019-12-01 22:27:00 +03:00
id: menu
enabled: valid
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
value: choice_low
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
value: choice_high
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
}
}
}