nheko/resources/qml/voip/ScreenShare.qml

170 lines
4.6 KiB
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
2021-02-18 21:55:29 +01:00
import "../"
import QtQuick 2.9
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import im.nheko 1.0
Popup {
modal: true
// only set the anchors on Qt 5.12 or higher
// see https://doc.qt.io/qt-5/qml-qtquick-controls2-popup.html#anchors.centerIn-prop
Component.onCompleted: {
if (anchors)
anchors.centerIn = parent;
frameRateCombo.currentIndex = frameRateCombo.find(Settings.screenShareFrameRate);
}
2021-05-13 08:23:56 +02:00
palette: Nheko.colors
2021-02-18 21:55:29 +01:00
ColumnLayout {
Label {
2021-02-21 22:30:10 +01:00
Layout.topMargin: 16
Layout.bottomMargin: 16
Layout.leftMargin: 8
Layout.rightMargin: 8
2021-02-18 21:55:29 +01:00
Layout.alignment: Qt.AlignLeft
text: qsTr("Share desktop with %1?").arg(room.roomName)
2021-05-13 08:23:56 +02:00
color: Nheko.colors.windowText
2021-02-18 21:55:29 +01:00
}
RowLayout {
Layout.leftMargin: 8
Layout.rightMargin: 8
Layout.bottomMargin: 8
Label {
Layout.alignment: Qt.AlignLeft
text: qsTr("Window:")
2021-05-13 08:23:56 +02:00
color: Nheko.colors.windowText
}
ComboBox {
id: windowCombo
Layout.fillWidth: true
model: CallManager.windowList()
}
}
RowLayout {
Layout.leftMargin: 8
Layout.rightMargin: 8
Layout.bottomMargin: 8
2021-02-18 21:55:29 +01:00
Label {
Layout.alignment: Qt.AlignLeft
text: qsTr("Frame rate:")
2021-05-13 08:23:56 +02:00
color: Nheko.colors.windowText
2021-02-18 21:55:29 +01:00
}
ComboBox {
id: frameRateCombo
Layout.fillWidth: true
2021-02-18 21:55:29 +01:00
model: ["25", "20", "15", "10", "5", "2", "1"]
}
}
2021-02-25 20:45:59 +01:00
GridLayout {
columns: 2
rowSpacing: 10
Layout.margins: 8
2021-02-25 20:45:59 +01:00
MatrixText {
text: qsTr("Include your camera picture-in-picture")
}
2021-02-25 20:45:59 +01:00
ToggleButton {
id: pipCheckBox
2021-02-18 21:55:29 +01:00
2021-02-25 20:45:59 +01:00
enabled: CallManager.cameras.length > 0
checked: Settings.screenSharePiP
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 21:55:29 +01:00
2021-02-25 20:45:59 +01: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-18 21:55:29 +01:00
RowLayout {
Layout.margins: 8
Item {
Layout.fillWidth: true
}
Button {
text: qsTr("Share")
2021-11-14 02:23:10 +01:00
icon.source: "qrc:/icons/icons/ui/screen-share.svg"
2021-02-18 21:55:29 +01:00
onClicked: {
if (buttonLayout.validateMic()) {
Settings.microphone = micCombo.currentText;
if (pipCheckBox.checked)
Settings.camera = cameraCombo.currentText;
2021-02-18 21:55:29 +01:00
Settings.screenShareFrameRate = frameRateCombo.currentText;
Settings.screenSharePiP = pipCheckBox.checked;
2021-02-18 21:55:29 +01:00
Settings.screenShareRemoteVideo = remoteVideoCheckBox.checked;
Settings.screenShareHideCursor = hideCursorCheckBox.checked;
2021-07-17 22:56:56 +02:00
CallManager.sendInvite(room.roomId, CallType.SCREEN, windowCombo.currentIndex);
2021-02-18 21:55:29 +01:00
close();
}
}
}
2021-02-25 18:00:55 +01:00
Button {
text: qsTr("Preview")
onClicked: {
CallManager.previewWindow(windowCombo.currentIndex);
}
}
2021-02-18 21:55:29 +01:00
Button {
text: qsTr("Cancel")
onClicked: {
close();
}
}
}
}
background: Rectangle {
2021-05-13 08:23:56 +02:00
color: Nheko.colors.window
border.color: Nheko.colors.windowText
2021-02-18 21:55:29 +01:00
}
}