matrixion/resources/qml/dialogs/LeaveRoomDialog.qml
2023-10-30 22:17:28 -04:00

28 lines
673 B
QML

// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
import Qt.labs.platform 1.1 as P
import QtQuick
import im.nheko
P.MessageDialog {
id: leaveRoomRoot
property string reason: ""
required property string roomId
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
modality: Qt.ApplicationModal
text: qsTr("Are you sure you want to leave?")
title: qsTr("Leave room")
onAccepted: {
if (CallManager.haveCallInvite) {
callManager.rejectInvite();
} else if (CallManager.isOnCall) {
CallManager.hangUp();
}
Rooms.leave(roomId, reason);
}
}