matrixion/qml/dialogs/LogoutDialog.qml

19 lines
640 B
QML
Raw Permalink Normal View History

2021-09-30 03:15:25 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-09-30 03:15:25 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
2021-11-09 04:57:01 +03:00
import Qt.labs.platform 1.1 as P
2021-09-30 03:15:25 +03:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import im.nheko
2021-09-30 03:15:25 +03:00
2021-11-09 04:57:01 +03:00
P.MessageDialog {
2021-09-30 03:15:25 +03:00
id: logoutRoot
2021-11-09 04:57:01 +03:00
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
2022-04-16 03:13:01 +03:00
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
modality: Qt.WindowModal
text: CallManager.isOnCall ? qsTr("A call is in progress. Log out?") : qsTr("Are you sure you want to log out?")
title: qsTr("Log out")
2021-09-30 03:15:25 +03:00
onAccepted: Nheko.logout()
}