mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
736 B
31 lines
736 B
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import Qt.labs.platform 1.1 as P
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import im.nheko 1.0
|
|
import "../voip"
|
|
|
|
P.MessageDialog {
|
|
id: leaveRoomRoot
|
|
|
|
required property string roomId
|
|
property string reason: ""
|
|
|
|
title: qsTr("Leave room")
|
|
text: qsTr("Are you sure you want to leave?")
|
|
modality: Qt.ApplicationModal
|
|
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
|
|
onAccepted: {
|
|
|
|
if (CallManager.haveCallInvite) {
|
|
callManager.rejectInvite();
|
|
} else if (CallManager.isOnCall) {
|
|
CallManager.hangUp();
|
|
}
|
|
Rooms.leave(roomId, reason)
|
|
}
|
|
|
|
}
|
|
|