nosignal-shell/modules/launcher/ActionItem.qml
2025-05-24 13:40:02 +08:00

67 lines
1.7 KiB
QML

import "root:/widgets"
import "root:/services"
import "root:/config"
import QtQuick
Item {
id: root
required property Actions.Action modelData
required property var list
implicitHeight: LauncherConfig.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: 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
}
}
}
}