2023-02-21 23:48:49 +01:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-09-24 03:18:48 +02:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-11-05 23:04:20 +01:00
|
|
|
import Qt.labs.platform 1.1 as P
|
2023-10-26 16:43:09 +02:00
|
|
|
import QtQuick
|
|
|
|
import im.nheko
|
2021-09-24 03:18:48 +02:00
|
|
|
|
2021-11-05 23:04:20 +01:00
|
|
|
P.MessageDialog {
|
2021-09-24 03:18:48 +02:00
|
|
|
id: leaveRoomRoot
|
|
|
|
|
|
|
|
required property string roomId
|
2022-03-30 23:38:38 +02:00
|
|
|
property string reason: ""
|
2021-09-24 03:18:48 +02:00
|
|
|
|
|
|
|
title: qsTr("Leave room")
|
|
|
|
text: qsTr("Are you sure you want to leave?")
|
|
|
|
modality: Qt.ApplicationModal
|
2021-11-05 23:04:20 +01:00
|
|
|
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
|
2022-10-14 15:49:05 +02:00
|
|
|
onAccepted: {
|
|
|
|
|
|
|
|
if (CallManager.haveCallInvite) {
|
|
|
|
callManager.rejectInvite();
|
|
|
|
} else if (CallManager.isOnCall) {
|
|
|
|
CallManager.hangUp();
|
|
|
|
}
|
|
|
|
Rooms.leave(roomId, reason)
|
|
|
|
}
|
|
|
|
|
2021-09-24 03:18:48 +02:00
|
|
|
}
|