71 lines
1.7 KiB
QML
71 lines
1.7 KiB
QML
import QtQuick
|
|
import qs.Modules.Launcher.Services
|
|
import qs.Components
|
|
import qs.Helpers
|
|
import qs.Config
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property var modelData
|
|
required property var list
|
|
|
|
implicitHeight: Config.launcher.sizes.itemHeight
|
|
|
|
anchors.left: parent?.left
|
|
anchors.right: parent?.right
|
|
|
|
StateLayer {
|
|
radius: Appearance.rounding.normal
|
|
|
|
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.normal
|
|
anchors.verticalCenter: icon.verticalCenter
|
|
|
|
implicitWidth: parent.width - icon.width
|
|
implicitHeight: name.implicitHeight + desc.implicitHeight
|
|
|
|
CustomText {
|
|
id: name
|
|
|
|
text: root.modelData?.name ?? ""
|
|
font.pointSize: Appearance.font.size.normal
|
|
}
|
|
|
|
CustomText {
|
|
id: desc
|
|
|
|
text: root.modelData?.desc ?? ""
|
|
font.pointSize: Appearance.font.size.small
|
|
color: DynamicColors.palette.m3outline
|
|
|
|
elide: Text.ElideRight
|
|
width: root.width - icon.width - Appearance.rounding.normal * 2
|
|
|
|
anchors.top: name.bottom
|
|
}
|
|
}
|
|
}
|
|
}
|