summaryrefslogtreecommitdiff
path: root/gui/qml/VPNSwitch.qml
blob: c58836e458b622a5f570a91dc5dfbba5e386280c (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
import QtQuick 2.9
import QtQuick.Layouts 1.12
import QtQuick.Controls 2.4

SwitchDelegate {

    text: qsTr("")
    checked: false
    anchors.horizontalCenter: parent.horizontalCenter

    contentItem: Text {
        rightPadding: vpntoggle.indicator.width + vpntoggle.spacing
        text: vpntoggle.text
        font: vpntoggle.font
        opacity: enabled ? 1.0 : 0.5
        color: vpntoggle.down ? "#17a81a" : "#21be2b"
        elide: Text.ElideRight
        verticalAlignment: Text.AlignVCenter
    }

    indicator: Rectangle {
        implicitWidth: 48
        implicitHeight: 26
        x: vpntoggle.width - width - vpntoggle.rightPadding
        y: parent.height / 2 - height / 2
        radius: 13
        color: vpntoggle.checked ? "#17a81a" : "transparent"
        border.color: vpntoggle.checked ? "#17a81a" : "#cccccc"

        Rectangle {
            x: vpntoggle.checked ? parent.width - width : 0
            width: 26
            height: 26
            radius: 13
            color: vpntoggle.down ? "#cccccc" : "#ffffff"
            border.color: vpntoggle.checked ? (vpntoggle.down ? "#17a81a" : "#21be2b") : "#999999"
        }
    }

    background: Rectangle {
        implicitWidth: 100
        implicitHeight: 40
        visible: vpntoggle.down || vpntoggle.highlighted
        color: vpntoggle.down ? "#17a81a" : "#eeeeee"
    }
} // end switchdelegate