mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
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.
67 lines
1.8 KiB
QML
67 lines
1.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QmlComponents 1.0
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property bool isDark: false
|
|
property bool loading: false
|
|
property string errorMessage: ""
|
|
|
|
// Expose fields so parent can set them programmatically
|
|
property alias username: usernameField.text
|
|
property alias password: passwordField.text
|
|
|
|
signal login(string username, string password)
|
|
|
|
readonly property color surfaceContainerHigh: isDark ? Qt.rgba(1, 1, 1, 0.08) : Qt.rgba(0.31, 0.31, 0.44, 0.10)
|
|
|
|
implicitHeight: formCol.implicitHeight + 48
|
|
radius: 16
|
|
color: surfaceContainerHigh
|
|
border.color: isDark ? Qt.rgba(1, 1, 1, 0.06) : Qt.rgba(0, 0, 0, 0.08)
|
|
border.width: 1
|
|
|
|
ColumnLayout {
|
|
id: formCol
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.top: parent.top
|
|
anchors.margins: 24
|
|
spacing: 16
|
|
|
|
CTextField {
|
|
id: usernameField
|
|
Layout.fillWidth: true
|
|
placeholderText: "Username"
|
|
enabled: !root.loading
|
|
}
|
|
|
|
CTextField {
|
|
id: passwordField
|
|
Layout.fillWidth: true
|
|
placeholderText: "Password"
|
|
echoMode: TextInput.Password
|
|
enabled: !root.loading
|
|
onAccepted: root.login(usernameField.text, passwordField.text)
|
|
}
|
|
|
|
CAlert {
|
|
Layout.fillWidth: true
|
|
visible: root.errorMessage.length > 0
|
|
severity: "error"
|
|
text: root.errorMessage
|
|
}
|
|
|
|
CButton {
|
|
Layout.fillWidth: true
|
|
text: root.loading ? "Signing in..." : "Sign In"
|
|
variant: "primary"
|
|
enabled: !root.loading
|
|
onClicked: root.login(usernameField.text, passwordField.text)
|
|
}
|
|
}
|
|
}
|