nheko/resources/qml/ui/NhekoSlider.qml

52 lines
1.5 KiB
QML
Raw Normal View History

2021-11-11 06:16:25 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-11-11 06:16:25 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.15
import QtQuick.Controls 2.15
import im.nheko 1.0
Slider {
2021-11-11 19:18:45 +01:00
id: control
2021-11-11 06:16:25 +01:00
2021-11-11 21:32:38 +01:00
property color progressColor: Nheko.colors.highlight
2021-11-11 06:16:25 +01:00
property bool alwaysShowSlider: true
2021-11-11 19:18:45 +01:00
property int sliderRadius: 16
2021-11-11 06:16:25 +01:00
2021-11-11 21:32:38 +01:00
value: 0
implicitHeight: sliderRadius
padding: 0
2021-11-11 06:16:25 +01:00
background: Rectangle {
2021-11-11 21:32:38 +01:00
x: control.leftPadding + handle.width / 2
2021-11-11 19:18:45 +01:00
y: control.topPadding + control.availableHeight / 2 - height / 2
implicitWidth: 200
2021-11-11 21:32:38 +01:00
implicitHeight: control.sliderRadius / 4
2021-11-11 19:18:45 +01:00
width: control.availableWidth - handle.width
height: implicitHeight
2021-11-11 21:32:38 +01:00
radius: height / 2
2021-11-11 19:18:45 +01:00
color: Nheko.colors.buttonText
2021-11-11 06:16:25 +01:00
Rectangle {
2021-11-11 19:18:45 +01:00
width: control.visualPosition * parent.width
height: parent.height
color: control.progressColor
2021-11-11 06:16:25 +01:00
radius: 2
}
2021-11-11 21:32:38 +01:00
2021-11-11 06:16:25 +01:00
}
handle: Rectangle {
2021-11-11 19:18:45 +01:00
x: control.leftPadding + control.visualPosition * background.width
y: control.topPadding + control.availableHeight / 2 - height / 2
implicitWidth: control.sliderRadius
implicitHeight: control.sliderRadius
2021-11-11 21:32:38 +01:00
radius: control.sliderRadius / 2
color: control.progressColor
visible: Settings.mobileMode || control.alwaysShowSlider || control.hovered || control.pressed
2021-11-11 19:18:45 +01:00
border.color: control.progressColor
2021-11-11 06:16:25 +01:00
}
2021-11-11 21:32:38 +01:00
2021-11-11 06:16:25 +01:00
}