Convert remaining reachable surfaces to NsIcon (launcher, utilities, windowinfo,
sidebar, dashboard, notification toast, shared controls IconTextButton/Menu/
SplitButton/ToggleButton/CollapsibleSection/CustomSpinBox, CoverArt). Handles
the `sourceComponent: MaterialIcon {` form and icon-via-alias controls.
- IconTextButton: alias -> plain `icon` property + bound NsIcon (cross-file alias
to a custom property was rejected).
- Reverted IconButton `font:` (the controls-wide font->fontStyle sweep wrongly
hit ButtonBase, which uses font not fontStyle).
- Glyphs map: +31 names (dashboard/utilities/launcher leftovers) — no "?" glyphs.
Old collapsed bar + old lock sub-components left as-is (unused, never render).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
66 lines
1.7 KiB
QML
66 lines
1.7 KiB
QML
import QtQuick
|
|
import Caelestia.Config
|
|
import qs.components
|
|
import qs.services
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property var modelData
|
|
required property var list
|
|
|
|
implicitHeight: Tokens.sizes.launcher.itemHeight
|
|
|
|
anchors.left: parent?.left
|
|
anchors.right: parent?.right
|
|
|
|
StateLayer {
|
|
radius: Tokens.rounding.large
|
|
onClicked: root.modelData?.onClicked(root.list)
|
|
}
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: Tokens.padding.medium
|
|
anchors.rightMargin: Tokens.padding.medium
|
|
anchors.margins: Tokens.padding.small
|
|
|
|
NsIcon {
|
|
id: icon
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
icon: root.modelData?.icon ?? ""
|
|
color: Colours.palette.m3onSurfaceVariant
|
|
fontStyle: Tokens.font.icon.builders.large.scale(1.3).build()
|
|
}
|
|
|
|
Item {
|
|
anchors.left: icon.right
|
|
anchors.leftMargin: Tokens.spacing.medium
|
|
anchors.verticalCenter: icon.verticalCenter
|
|
|
|
implicitWidth: parent.width - icon.width
|
|
implicitHeight: name.implicitHeight + desc.implicitHeight
|
|
|
|
StyledText {
|
|
id: name
|
|
|
|
text: root.modelData?.name ?? ""
|
|
font: Tokens.font.body.medium
|
|
}
|
|
|
|
StyledText {
|
|
id: desc
|
|
|
|
text: root.modelData?.desc ?? ""
|
|
font: Tokens.font.body.small
|
|
color: Colours.palette.m3outline
|
|
|
|
elide: Text.ElideRight
|
|
width: root.width - icon.width - Tokens.rounding.extraLargeIncreased
|
|
|
|
anchors.top: name.bottom
|
|
}
|
|
}
|
|
}
|
|
}
|