2021-09-30 03:15:25 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 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 1.0
|
|
|
|
|
2021-11-09 04:57:01 +03:00
|
|
|
P.MessageDialog {
|
2021-09-30 03:15:25 +03:00
|
|
|
id: logoutRoot
|
|
|
|
|
|
|
|
title: qsTr("Log out")
|
|
|
|
text: CallManager.isOnCall ? qsTr("A call is in progress. Log out?") : qsTr("Are you sure you want to log out?")
|
|
|
|
modality: Qt.WindowModal
|
|
|
|
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
|
2021-11-09 04:57:01 +03:00
|
|
|
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
|
2021-09-30 03:15:25 +03:00
|
|
|
onAccepted: Nheko.logout()
|
|
|
|
}
|