diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 16:20:47 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-17 16:20:47 +1000 |
| commit | 746f41da16ddc463345948110d0a75a68918af90 (patch) | |
| tree | caf925b02b6fcada02e4f96bcff932b725db6d8d /modules/launcher/VariantItem.qml | |
| parent | internal: use execDetached (diff) | |
| download | caelestia-shell-746f41da16ddc463345948110d0a75a68918af90.tar.gz caelestia-shell-746f41da16ddc463345948110d0a75a68918af90.tar.bz2 caelestia-shell-746f41da16ddc463345948110d0a75a68918af90.zip | |
feat: impl variant launcher action
Diffstat (limited to 'modules/launcher/VariantItem.qml')
| -rw-r--r-- | modules/launcher/VariantItem.qml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/modules/launcher/VariantItem.qml b/modules/launcher/VariantItem.qml new file mode 100644 index 0000000..2b5ae2e --- /dev/null +++ b/modules/launcher/VariantItem.qml @@ -0,0 +1,69 @@ +import "root:/widgets" +import "root:/services" +import "root:/config" +import QtQuick + +Item { + id: root + + required property M3Variants.Variant modelData + required property var list + + implicitHeight: Config.launcher.sizes.itemHeight + + anchors.left: parent?.left + anchors.right: parent?.right + + StateLayer { + radius: Appearance.rounding.full + + function onClicked(): void { + root.modelData?.onClicked(root.list); + } + } + + Item { + anchors.fill: parent + anchors.leftMargin: Appearance.padding.larger + anchors.rightMargin: Appearance.padding.larger + anchors.margins: Appearance.padding.smaller + + 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: name.implicitHeight + desc.implicitHeight + + StyledText { + id: name + + text: root.modelData?.name ?? "" + font.pointSize: Appearance.font.size.normal + } + + StyledText { + id: desc + + text: root.modelData?.description ?? "" + 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 + } + } + } +} |