mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
WorkflowEditor (325→80): CWorkflowState.qml + WorkflowConnectionState.js DashboardView (121→95): DashboardDBAL.js + config/dashboard-config.json Storybook (114→78): StorybookSidebar + config/storybook-components.json + 7 components compacted to under 100 via formatting (no logic changes) + Multiple view/component splits across all remaining 100+ LOC files Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
42 lines
835 B
QML
42 lines
835 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property int lineCount: 0
|
|
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 26
|
|
color: "#181825"
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: 12
|
|
anchors.rightMargin: 12
|
|
spacing: 16
|
|
|
|
Text {
|
|
text: "Lua 5.4"
|
|
font.pixelSize: 11
|
|
color: "#a6adc8"
|
|
}
|
|
Text {
|
|
text: "UTF-8"
|
|
font.pixelSize: 11
|
|
color: "#a6adc8"
|
|
}
|
|
Text {
|
|
text: root.lineCount + " lines"
|
|
font.pixelSize: 11
|
|
color: "#a6adc8"
|
|
}
|
|
Item { Layout.fillWidth: true }
|
|
Text {
|
|
text: "MetaBuilder Lua Runtime"
|
|
font.pixelSize: 11
|
|
color: "#585b70"
|
|
}
|
|
}
|
|
}
|