summaryrefslogtreecommitdiff
path: root/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/Settings/Widgets/SettingsToggleCard.qml
blob: c36fb7c43372a5e59ae42ec8bfcf633dbe535ecd (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
pragma ComponentBehavior: Bound

import QtQuick
import qs.Common
import qs.Widgets

StyledRect {
    id: root

    LayoutMirroring.enabled: I18n.isRtl
    LayoutMirroring.childrenInherit: true

    property string tab: ""
    property var tags: []

    property string title: ""
    property string description: ""
    property string iconName: ""
    property bool checked: false
    property bool enabled: true

    default property alias content: expandedContent.children
    readonly property bool hasContent: expandedContent.children.length > 0

    signal toggled(bool checked)

    width: parent?.width ?? 0
    height: Theme.spacingL * 2 + mainColumn.height
    radius: Theme.cornerRadius
    color: Theme.surfaceContainerHigh

    Column {
        id: mainColumn
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.verticalCenter: parent.verticalCenter
        anchors.leftMargin: Theme.spacingL
        anchors.rightMargin: Theme.spacingL
        spacing: Theme.spacingM

        Item {
            width: parent.width
            height: headerColumn.height

            Column {
                id: headerColumn
                anchors.left: parent.left
                anchors.right: toggleSwitch.left
                anchors.rightMargin: Theme.spacingM
                spacing: Theme.spacingXS

                Row {
                    spacing: Theme.spacingM
                    width: parent.width

                    DankIcon {
                        id: headerIcon
                        name: root.iconName
                        size: Theme.iconSize
                        color: Theme.primary
                        anchors.verticalCenter: parent.verticalCenter
                        visible: root.iconName !== ""
                    }

                    StyledText {
                        id: headerText
                        text: root.title
                        font.pixelSize: Theme.fontSizeLarge
                        font.weight: Font.Medium
                        color: Theme.surfaceText
                        anchors.verticalCenter: parent.verticalCenter
                        visible: root.title !== ""
                        width: parent.width - (headerIcon.visible ? headerIcon.width + parent.spacing : 0)
                        horizontalAlignment: Text.AlignLeft
                    }
                }

                StyledText {
                    id: descriptionText
                    text: root.description
                    font.pixelSize: Theme.fontSizeSmall
                    color: Theme.surfaceVariantText
                    wrapMode: Text.WordWrap
                    width: parent.width
                    horizontalAlignment: Text.AlignLeft
                    visible: root.description !== ""
                }
            }

            DankToggle {
                id: toggleSwitch
                anchors.right: parent.right
                anchors.verticalCenter: parent.verticalCenter
                hideText: true
                checked: root.checked
                enabled: root.enabled
                onToggled: checked => root.toggled(checked)
            }

            StateLayer {
                anchors.fill: parent
                disabled: !root.enabled
                stateColor: Theme.primary
                cornerRadius: root.radius
                onClicked: {
                    if (!root.enabled)
                        return;
                    root.toggled(!root.checked);
                }
            }
        }

        Column {
            id: expandedContent
            width: parent.width
            spacing: Theme.spacingM
            visible: root.checked && root.hasContent
        }
    }
}