2024-12-19 00:53:12 +00:00
|
|
|
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: page
|
|
|
|
|
|
|
|
title: qsTr("Login")
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
Label {
|
2024-12-21 03:56:09 +00:00
|
|
|
id: userLabel
|
|
|
|
|
|
|
|
Mnemonic.label: qsTr("&User:")
|
|
|
|
text: Mnemonic.richTextLabel
|
|
|
|
|
|
|
|
Shortcut {
|
|
|
|
sequence: userLabel.Mnemonic.sequence
|
|
|
|
|
|
|
|
onActivated: function () {
|
|
|
|
user.forceActiveFocus();
|
|
|
|
}
|
|
|
|
}
|
2024-12-19 00:53:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: user
|
|
|
|
|
|
|
|
focus: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
2024-12-21 03:56:09 +00:00
|
|
|
id: passwordLabel
|
|
|
|
|
|
|
|
Mnemonic.label: qsTr("&Password:")
|
|
|
|
text: Mnemonic.richTextLabel
|
|
|
|
|
|
|
|
Shortcut {
|
|
|
|
sequence: passwordLabel.Mnemonic.sequence
|
|
|
|
|
|
|
|
onActivated: function () {
|
|
|
|
password.forceActiveFocus();
|
|
|
|
}
|
|
|
|
}
|
2024-12-19 00:53:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: password
|
|
|
|
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
action: loginAction
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Action {
|
|
|
|
id: loginAction
|
|
|
|
|
2024-12-21 03:56:09 +00:00
|
|
|
Mnemonic.label: qsTr("Log &in")
|
|
|
|
shortcut: Mnemonic.sequence
|
|
|
|
text: Mnemonic.richTextLabel
|
2024-12-19 00:53:12 +00:00
|
|
|
|
|
|
|
onTriggered: function () {
|
|
|
|
Database.open(user.text, password.text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|