Move the logout button to the page’s toolbar

This commit is contained in:
jordi fita mas 2024-12-19 22:29:48 +01:00
parent 7343174056
commit 5cc7192387
1 changed files with 11 additions and 12 deletions

View File

@ -1,23 +1,22 @@
pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
Page {
title: qsTr("Reservations")
Button {
action: logoutAction
}
header: ToolBar {
RowLayout {
anchors.fill: parent
Action {
id: logoutAction
ToolButton {
icon.name: "system-log-out"
text: qsTr("&Log out")
icon.name: "system-log-out"
shortcut: "Ctrl+L"
text: qsTr("&Log out")
onTriggered: function () {
Database.close();
onClicked: function () {
Database.close();
}
}
}
}
}