blob: 102291213906536febf134335b4e0e7c5e7e7770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (C) 2026 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
Slider {
id: root
orientation: Qt.Vertical
padding: 0
background: Rectangle {
color: Constants.mediumGray
implicitHeight: root.height
implicitWidth: root.width
radius: width / 2
Rectangle {
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
color: Qt.lighter(Constants.primaryColor, 1 - (root.visualPosition * 0.3))
height: (1 - root.visualPosition) * parent.height + (root.visualPosition * handle.height)
radius: parent.width / 2
width: parent.width
}
}
handle: Rectangle {
border.color: "#b0b0b0"
border.width: 1
color: root.pressed ? "#e0e0e0" : "#ffffff"
height: root.width
radius: width / 2
width: root.width
x: root.availableWidth / 2 - height / 2
y: root.visualPosition * (root.availableHeight - height)
}
}
|