summaryrefslogtreecommitdiff
path: root/modules/launcher/ActionItem.qml
blob: f4f7e2f3c8defc1a83952f5eb54eda4d39c1a9ca (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
import "root:/widgets"
import "root:/services"
import "root:/config"
import QtQuick

PaddedRect {
    id: root

    required property Actions.Action modelData
    required property var list

    implicitHeight: LauncherConfig.sizes.itemHeight
    padding: [Appearance.padding.smaller, Appearance.padding.larger]

    anchors.left: parent.left
    anchors.right: parent.right

    StateLayer {
        radius: Appearance.rounding.normal

        function onClicked(): void {
            root.modelData.onClicked(root.list);
        }
    }

    MaterialIcon {
        id: icon

        text: root.modelData.icon
        font.pointSize: Appearance.font.size.extraLarge

        anchors.verticalCenter: parent.verticalCenter
    }

    Item {
        anchors.left: icon.right
        anchors.leftMargin: Appearance.spacing.larger
        anchors.verticalCenter: icon.verticalCenter

        implicitWidth: parent.width - icon.width
        implicitHeight: childrenRect.height

        StyledText {
            id: name

            text: root.modelData.name
            font.pointSize: Appearance.font.size.normal
        }

        StyledText {
            text: root.modelData.desc
            font.pointSize: Appearance.font.size.small
            color: Colours.alpha(Colours.palette.m3outline, true)

            elide: Text.ElideRight
            width: root.width - icon.width - Appearance.rounding.normal * 2

            anchors.top: name.bottom
        }
    }
}