Files
metabuilder/qml/MetaBuilder/CLevelReferenceCard.qml
johndoe6345789 786f91ec64 Add QML Material lib, demo email UI, and QML refactor
Add a large set of QML components (qml/Material, qml/MetaBuilder, qml/dbal) and a QmlComponents symlink for local development; migrate many frontends/qt6 files into qml/qt6. Replace the email client bootloader with a self-contained demo UI using FakeMUI primitives (MailboxLayout, ThreadList, EmailHeader, ComposeWindow), demo data, handlers, and new folder-navigation styles in globals.css. Update several QML component APIs to new signal/handler names (e.g. selectAllChanged→selectAllToggled, pageChanged→pageRequested, *Changed→*Edited) to standardize events. Add find_config_files() to frontends/qt6/generate_cmake.py to include config JS/JSON in QML/files and resources. Also add /frontends/qt6/_build to .gitignore.
2026-03-19 10:18:09 +00:00

95 lines
2.5 KiB
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QmlComponents 1.0
Rectangle {
id: root
property string levelName: ""
property string role: ""
property string description: ""
property color accent: "#6366F1"
property int levelNumber: 1
property bool isDark: false
// MD3 tonal surfaces
readonly property color surfaceContainerHigh: isDark ? Qt.rgba(1, 1, 1, 0.08) : Qt.rgba(0.31, 0.31, 0.44, 0.10)
readonly property color outlineVariant: isDark ? Qt.rgba(1, 1, 1, 0.06) : Qt.rgba(0, 0, 0, 0.08)
readonly property color onSurface: Theme.text
readonly property color onSurfaceVariant: Theme.textSecondary
implicitHeight: lvlCardCol.implicitHeight + 32
radius: 16
clip: true
color: surfaceContainerHigh
border.width: 1
border.color: outlineVariant
// Colored accent bar on the left
Rectangle {
anchors.left: parent.left
anchors.top: parent.top
anchors.bottom: parent.bottom
width: 4
color: root.accent
}
ColumnLayout {
id: lvlCardCol
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
anchors.leftMargin: 20
anchors.rightMargin: 20
anchors.topMargin: 16
spacing: 8
RowLayout {
Layout.fillWidth: true
spacing: 10
// Level number badge
Rectangle {
width: 28
height: 28
radius: 8
color: Qt.rgba(root.accent.r, root.accent.g, root.accent.b, root.isDark ? 0.2 : 0.15)
CText {
anchors.centerIn: parent
text: root.levelNumber.toString()
font.pixelSize: 12
font.weight: Font.Bold
color: root.accent
}
}
CText {
text: root.levelName
font.pixelSize: 15
font.weight: Font.DemiBold
color: root.onSurface
}
Item { Layout.fillWidth: true }
CChip {
text: root.role
chipColor: root.accent
variant: "filter"
selected: true
}
}
CText {
text: root.description
font.pixelSize: 13
wrapMode: Text.Wrap
Layout.fillWidth: true
color: root.onSurfaceVariant
lineHeight: 1.4
}
}
}