2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: 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
|
|
|
|
|
2021-02-18 23:55:29 +03:00
|
|
|
import "../"
|
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtQuick.Layouts 1.2
|
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Popup {
|
|
|
|
modal: true
|
|
|
|
|
2022-03-10 22:42:12 +03:00
|
|
|
anchors.centerIn: parent;
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
2021-02-18 23:55:29 +03:00
|
|
|
frameRateCombo.currentIndex = frameRateCombo.find(Settings.screenShareFrameRate);
|
|
|
|
}
|
2021-05-13 09:23:56 +03:00
|
|
|
palette: Nheko.colors
|
2021-02-18 23:55:29 +03:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
Label {
|
2021-02-22 00:30:10 +03:00
|
|
|
Layout.topMargin: 16
|
|
|
|
Layout.bottomMargin: 16
|
|
|
|
Layout.leftMargin: 8
|
|
|
|
Layout.rightMargin: 8
|
2021-02-18 23:55:29 +03:00
|
|
|
Layout.alignment: Qt.AlignLeft
|
2021-05-28 23:14:59 +03:00
|
|
|
text: qsTr("Share desktop with %1?").arg(room.roomName)
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.windowText
|
2021-02-18 23:55:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.leftMargin: 8
|
|
|
|
Layout.rightMargin: 8
|
2021-02-25 01:07:01 +03:00
|
|
|
Layout.bottomMargin: 8
|
|
|
|
|
|
|
|
Label {
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
text: qsTr("Window:")
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.windowText
|
2021-02-25 01:07:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: windowCombo
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
model: CallManager.windowList()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.leftMargin: 8
|
|
|
|
Layout.rightMargin: 8
|
|
|
|
Layout.bottomMargin: 8
|
2021-02-18 23:55:29 +03:00
|
|
|
|
|
|
|
Label {
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
text: qsTr("Frame rate:")
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.windowText
|
2021-02-18 23:55:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: frameRateCombo
|
|
|
|
|
2021-02-25 01:07:01 +03:00
|
|
|
Layout.fillWidth: true
|
2021-02-18 23:55:29 +03:00
|
|
|
model: ["25", "20", "15", "10", "5", "2", "1"]
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-02-25 22:45:59 +03:00
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
|
|
|
rowSpacing: 10
|
|
|
|
Layout.margins: 8
|
2021-02-20 19:26:53 +03:00
|
|
|
|
2021-02-25 22:45:59 +03:00
|
|
|
MatrixText {
|
|
|
|
text: qsTr("Include your camera picture-in-picture")
|
|
|
|
}
|
2021-02-20 19:26:53 +03:00
|
|
|
|
2021-02-25 22:45:59 +03:00
|
|
|
ToggleButton {
|
|
|
|
id: pipCheckBox
|
2021-02-18 23:55:29 +03:00
|
|
|
|
2021-02-25 22:45:59 +03:00
|
|
|
enabled: CallManager.cameras.length > 0
|
2022-03-13 22:40:09 +03:00
|
|
|
checked: CallManager.cameras.length > 0 && Settings.screenSharePiP
|
2021-02-25 22:45:59 +03:00
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
MatrixText {
|
|
|
|
text: qsTr("Request remote camera")
|
|
|
|
ToolTip.text: qsTr("View your callee's camera like a regular video call")
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
}
|
2021-02-18 23:55:29 +03:00
|
|
|
|
2021-02-25 22:45:59 +03:00
|
|
|
ToggleButton {
|
|
|
|
id: remoteVideoCheckBox
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
checked: Settings.screenShareRemoteVideo
|
|
|
|
ToolTip.text: qsTr("View your callee's camera like a regular video call")
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
}
|
|
|
|
|
|
|
|
MatrixText {
|
|
|
|
text: qsTr("Hide mouse cursor")
|
|
|
|
}
|
|
|
|
|
|
|
|
ToggleButton {
|
|
|
|
id: hideCursorCheckBox
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
checked: Settings.screenShareHideCursor
|
|
|
|
}
|
2021-02-19 00:53:30 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-02-18 23:55:29 +03:00
|
|
|
RowLayout {
|
|
|
|
Layout.margins: 8
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: qsTr("Share")
|
2021-11-14 04:23:10 +03:00
|
|
|
icon.source: "qrc:/icons/icons/ui/screen-share.svg"
|
2022-03-13 22:40:09 +03:00
|
|
|
|
2021-02-18 23:55:29 +03:00
|
|
|
onClicked: {
|
2022-03-13 22:40:09 +03:00
|
|
|
Settings.screenShareFrameRate = frameRateCombo.currentText;
|
|
|
|
Settings.screenSharePiP = pipCheckBox.checked;
|
|
|
|
Settings.screenShareRemoteVideo = remoteVideoCheckBox.checked;
|
|
|
|
Settings.screenShareHideCursor = hideCursorCheckBox.checked;
|
|
|
|
|
|
|
|
CallManager.sendInvite(room.roomId, CallType.SCREEN, windowCombo.currentIndex);
|
|
|
|
close();
|
2021-02-18 23:55:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-25 20:00:55 +03:00
|
|
|
Button {
|
|
|
|
text: qsTr("Preview")
|
|
|
|
onClicked: {
|
|
|
|
CallManager.previewWindow(windowCombo.currentIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-18 23:55:29 +03:00
|
|
|
Button {
|
|
|
|
text: qsTr("Cancel")
|
|
|
|
onClicked: {
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
background: Rectangle {
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.window
|
|
|
|
border.color: Nheko.colors.windowText
|
2021-02-18 23:55:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|