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