2021-03-05 02:35:15 +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-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-12-30 23:03:07 +03:00
|
|
|
import "../"
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.9
|
2020-12-17 19:25:32 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2020-12-17 19:25:32 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Rectangle {
|
2021-01-12 22:22:52 +03:00
|
|
|
visible: CallManager.haveCallInvite && !Settings.mobileMode
|
2020-12-17 19:25:32 +03:00
|
|
|
color: "#2ECC71"
|
|
|
|
implicitHeight: visible ? rowLayout.height + 8 : 0
|
|
|
|
|
2020-12-20 17:37:22 +03:00
|
|
|
Component {
|
|
|
|
id: devicesDialog
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-20 17:37:22 +03:00
|
|
|
CallDevices {
|
|
|
|
}
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-20 17:37:22 +03:00
|
|
|
}
|
|
|
|
|
2020-12-30 23:03:07 +03:00
|
|
|
Component {
|
|
|
|
id: deviceError
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-30 23:03:07 +03:00
|
|
|
DeviceError {
|
|
|
|
}
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-30 23:03:07 +03:00
|
|
|
}
|
|
|
|
|
2020-12-17 19:25:32 +03:00
|
|
|
RowLayout {
|
|
|
|
id: rowLayout
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.leftMargin: 8
|
|
|
|
|
|
|
|
Avatar {
|
2021-05-13 12:32:20 +03:00
|
|
|
width: Nheko.avatarSize
|
|
|
|
height: Nheko.avatarSize
|
2020-12-17 19:25:32 +03:00
|
|
|
url: CallManager.callPartyAvatarUrl.replace("mxc://", "image://MxcImage/")
|
2021-09-05 03:54:02 +03:00
|
|
|
userid: CallManager.callParty
|
|
|
|
displayName: CallManager.callPartyDisplayName
|
2022-01-02 23:46:29 +03:00
|
|
|
onClicked: TimelineManager.openImageOverlay(room, room.avatarUrl(userid), room.data.eventId)
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
2020-12-19 17:32:20 +03:00
|
|
|
Layout.leftMargin: 8
|
2020-12-17 19:25:32 +03:00
|
|
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
2021-09-05 03:54:02 +03:00
|
|
|
text: CallManager.callPartyDisplayName
|
2020-12-30 23:03:07 +03:00
|
|
|
color: "#000000"
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
2020-12-19 17:32:20 +03:00
|
|
|
Layout.leftMargin: 4
|
2020-12-17 19:25:32 +03:00
|
|
|
Layout.preferredWidth: 24
|
|
|
|
Layout.preferredHeight: 24
|
2021-11-14 04:23:10 +03:00
|
|
|
source: CallManager.callType == CallType.VIDEO ? "qrc:/icons/icons/ui/video.svg" : "qrc:/icons/icons/ui/place-call.svg"
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
2021-02-18 23:55:29 +03:00
|
|
|
text: CallManager.callType == CallType.VIDEO ? qsTr("Video Call") : qsTr("Voice Call")
|
2020-12-30 23:03:07 +03:00
|
|
|
color: "#000000"
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2020-12-20 17:37:22 +03:00
|
|
|
ImageButton {
|
2020-12-30 23:03:07 +03:00
|
|
|
Layout.rightMargin: 16
|
|
|
|
width: 20
|
|
|
|
height: 20
|
2020-12-20 17:37:22 +03:00
|
|
|
buttonTextColor: "#000000"
|
2021-11-14 04:23:10 +03:00
|
|
|
image: ":/icons/icons/ui/settings.svg"
|
2020-12-20 17:37:22 +03:00
|
|
|
hoverEnabled: true
|
|
|
|
ToolTip.visible: hovered
|
2020-12-20 18:14:55 +03:00
|
|
|
ToolTip.text: qsTr("Devices")
|
2020-12-20 17:37:22 +03:00
|
|
|
onClicked: {
|
2021-01-12 01:51:39 +03:00
|
|
|
var dialog = devicesDialog.createObject(timelineRoot);
|
|
|
|
dialog.open();
|
2022-02-21 07:01:01 +03:00
|
|
|
timelineRoot.destroyOnClose(dialog);
|
2020-12-20 17:37:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-17 19:25:32 +03:00
|
|
|
Button {
|
2020-12-30 23:03:07 +03:00
|
|
|
Layout.rightMargin: 4
|
2021-11-14 04:23:10 +03:00
|
|
|
icon.source: CallManager.callType == CallType.VIDEO ? "qrc:/icons/icons/ui/video.svg" : "qrc:/icons/icons/ui/place-call.svg"
|
2021-01-15 15:57:19 +03:00
|
|
|
text: qsTr("Accept")
|
2021-05-13 09:23:56 +03:00
|
|
|
palette: Nheko.colors
|
2020-12-17 19:25:32 +03:00
|
|
|
onClicked: {
|
|
|
|
if (CallManager.mics.length == 0) {
|
2020-12-30 23:03:07 +03:00
|
|
|
var dialog = deviceError.createObject(timelineRoot, {
|
|
|
|
"errorString": qsTr("No microphone found."),
|
2021-11-14 04:23:10 +03:00
|
|
|
"image": ":/icons/icons/ui/place-call.svg"
|
2020-12-30 23:03:07 +03:00
|
|
|
});
|
|
|
|
dialog.open();
|
2022-02-21 07:01:01 +03:00
|
|
|
timelineRoot.destroyOnClose(dialog);
|
2021-01-12 01:51:39 +03:00
|
|
|
return ;
|
|
|
|
} else if (!CallManager.mics.includes(Settings.microphone)) {
|
2020-12-30 23:03:07 +03:00
|
|
|
var dialog = deviceError.createObject(timelineRoot, {
|
2021-01-15 15:57:19 +03:00
|
|
|
"errorString": qsTr("Unknown microphone: %1").arg(Settings.microphone),
|
2021-11-14 04:23:10 +03:00
|
|
|
"image": ":/icons/icons/ui/place-call.svg"
|
2020-12-30 23:03:07 +03:00
|
|
|
});
|
|
|
|
dialog.open();
|
2022-02-21 07:01:01 +03:00
|
|
|
timelineRoot.destroyOnClose(dialog);
|
2021-01-12 01:51:39 +03:00
|
|
|
return ;
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
2021-02-18 23:55:29 +03:00
|
|
|
if (CallManager.callType == CallType.VIDEO && CallManager.cameras.length > 0 && !CallManager.cameras.includes(Settings.camera)) {
|
2020-12-30 23:03:07 +03:00
|
|
|
var dialog = deviceError.createObject(timelineRoot, {
|
2021-01-15 15:57:19 +03:00
|
|
|
"errorString": qsTr("Unknown camera: %1").arg(Settings.camera),
|
2021-11-14 04:23:10 +03:00
|
|
|
"image": ":/icons/icons/ui/video.svg"
|
2020-12-30 23:03:07 +03:00
|
|
|
});
|
|
|
|
dialog.open();
|
2022-02-21 07:01:01 +03:00
|
|
|
timelineRoot.destroyOnClose(dialog);
|
2021-01-12 01:51:39 +03:00
|
|
|
return ;
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
|
|
|
CallManager.acceptInvite();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
2020-12-30 23:03:07 +03:00
|
|
|
Layout.rightMargin: 16
|
2021-11-14 04:23:10 +03:00
|
|
|
icon.source: "qrc:/icons/icons/ui/end-call.svg"
|
2021-01-15 15:57:19 +03:00
|
|
|
text: qsTr("Decline")
|
2021-05-13 09:23:56 +03:00
|
|
|
palette: Nheko.colors
|
2020-12-17 19:25:32 +03:00
|
|
|
onClicked: {
|
2022-10-14 16:49:05 +03:00
|
|
|
CallManager.rejectInvite();
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
|
|
|
}
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-17 19:25:32 +03:00
|
|
|
}
|