matrixion/resources/qml/voip/CallDevices.qml

89 lines
2.2 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.9
2020-12-20 17:37:22 +03:00
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
2020-12-20 17:37:22 +03:00
import im.nheko 1.0
2020-12-30 23:03:07 +03:00
Popup {
modal: true
2021-05-13 09:23:56 +03:00
palette: Nheko.colors
// 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;
2021-01-17 06:05:02 +03:00
}
2020-12-20 17:37:22 +03:00
ColumnLayout {
spacing: 16
ColumnLayout {
spacing: 8
2020-12-30 23:03:07 +03:00
Layout.topMargin: 8
Layout.leftMargin: 8
Layout.rightMargin: 8
2020-12-20 17:37:22 +03:00
2020-12-30 23:03:07 +03:00
RowLayout {
2020-12-20 17:37:22 +03:00
Image {
Layout.preferredWidth: 22
Layout.preferredHeight: 22
2021-11-14 04:23:10 +03:00
source: "image://colorimage/:/icons/icons/ui/microphone-unmute.svg?" + Nheko.colors.windowText
2020-12-20 17:37:22 +03:00
}
ComboBox {
id: micCombo
2021-01-12 01:51:39 +03:00
2020-12-20 17:37:22 +03:00
Layout.fillWidth: true
model: CallManager.mics
}
2021-01-12 01:51:39 +03:00
2020-12-20 17:37:22 +03:00
}
RowLayout {
2021-02-18 23:55:29 +03:00
visible: CallManager.callType == CallType.VIDEO && CallManager.cameras.length > 0
2020-12-20 17:37:22 +03:00
Image {
Layout.preferredWidth: 22
Layout.preferredHeight: 22
2021-11-14 04:23:10 +03:00
source: "image://colorimage/:/icons/icons/ui/video-call.svg?" + Nheko.colors.windowText
2020-12-20 17:37:22 +03:00
}
ComboBox {
id: cameraCombo
2021-01-12 01:51:39 +03:00
2020-12-20 17:37:22 +03:00
Layout.fillWidth: true
model: CallManager.cameras
}
2021-01-12 01:51:39 +03:00
2020-12-20 17:37:22 +03:00
}
2021-01-12 01:51:39 +03:00
2020-12-20 17:37:22 +03:00
}
2020-12-30 23:03:07 +03:00
DialogButtonBox {
Layout.leftMargin: 128
standardButtons: DialogButtonBox.Ok | DialogButtonBox.Cancel
2021-01-12 01:51:39 +03:00
onAccepted: {
Settings.microphone = micCombo.currentText;
if (cameraCombo.visible)
Settings.camera = cameraCombo.currentText;
2020-12-20 17:37:22 +03:00
2020-12-30 23:03:07 +03:00
close();
2020-12-20 17:37:22 +03:00
}
2020-12-30 23:03:07 +03:00
onRejected: {
close();
2020-12-20 17:37:22 +03:00
}
}
2021-01-12 01:51:39 +03:00
2020-12-20 17:37:22 +03:00
}
2021-01-12 01:51:39 +03:00
background: Rectangle {
2021-05-13 09:23:56 +03:00
color: Nheko.colors.window
border.color: Nheko.colors.windowText
2021-01-12 01:51:39 +03:00
}
2020-12-20 17:37:22 +03:00
}