aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qmltc/MySlider.qml
blob: 4ceeb3579a567c73a8308f57596685cdd45f0139 (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
40
41
42
43
44
45
46
47
48
49
50
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Templates as T // we cannot use QQC2 (yet), but we can use its backend

T.Slider {
    id: control

    // QQC2-specific begin
    implicitWidth: Math.max(control.implicitBackgroundWidth + control.leftInset
                            + control.rightInset,
                            control.implicitHandleWidth + control.leftPadding
                            + control.rightPadding)
    implicitHeight: Math.max(control.implicitBackgroundHeight + control.topInset
                             + control.bottomInset,
                             control.implicitHandleHeight + control.topPadding
                             + control.bottomPadding)
    padding: 6
    // QQC2-specific end

    background: Rectangle {
        x: control.leftPadding
        y: control.topPadding + control.availableHeight / 2 - height / 2
        implicitWidth: 200
        implicitHeight: 4
        width: control.availableWidth
        height: implicitHeight
        radius: 2
        border.color: "black"
        color: "#F9F3EC"

        Rectangle {
            width: control.visualPosition * parent.width
            height: parent.height
            color: "#63ACBE"
            radius: 2
        }
    }

    handle: Rectangle {
        x: control.leftPadding + control.visualPosition * (control.availableWidth - width)
        y: control.topPadding + control.availableHeight / 2 - height / 2
        implicitWidth: 26
        implicitHeight: 26
        radius: 13
        color: control.pressed ? Qt.lighter("#63ACBE") : "#63ACBE"
        border.color: Qt.darker("#63ACBE")
    }
}