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>
78 lines
2 KiB
QML
78 lines
2 KiB
QML
import QtQuick
|
|
import Caelestia.Config
|
|
import qs.components
|
|
import qs.services
|
|
import qs.modules.launcher.services
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property M3Variants.Variant 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
|
|
|
|
icon: root.modelData?.icon ?? ""
|
|
fontStyle: Tokens.font.icon.extraLarge
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Column {
|
|
anchors.left: icon.right
|
|
anchors.leftMargin: Tokens.spacing.large
|
|
anchors.verticalCenter: icon.verticalCenter
|
|
|
|
width: parent.width - icon.width - anchors.leftMargin - (current.active ? current.width + Tokens.spacing.medium : 0)
|
|
spacing: 0
|
|
|
|
StyledText {
|
|
text: root.modelData?.name ?? ""
|
|
font: Tokens.font.body.medium
|
|
}
|
|
|
|
StyledText {
|
|
text: root.modelData?.description ?? ""
|
|
font: Tokens.font.body.small
|
|
color: Colours.palette.m3outline
|
|
|
|
elide: Text.ElideRight
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: current
|
|
|
|
asynchronous: true
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
active: root.modelData?.variant === Schemes.currentVariant
|
|
|
|
sourceComponent: NsIcon {
|
|
icon: "check"
|
|
color: Colours.palette.m3onSurfaceVariant
|
|
fontStyle: Tokens.font.icon.large
|
|
}
|
|
}
|
|
}
|
|
}
|