2021-01-12 04:17:00 +01:00
|
|
|
import QtQuick 2.10
|
2020-12-20 15:37:22 +01:00
|
|
|
import QtQuick.Controls 2.3
|
2021-01-12 04:17:00 +01:00
|
|
|
import QtQuick.Layouts 1.10
|
2020-12-20 15:37:22 +01:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2020-12-30 21:03:07 +01:00
|
|
|
Popup {
|
|
|
|
modal: true
|
|
|
|
anchors.centerIn: parent
|
2021-01-06 23:15:43 +01:00
|
|
|
palette: colors
|
2020-12-20 15:37:22 +01:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 16
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
spacing: 8
|
2020-12-30 21:03:07 +01:00
|
|
|
Layout.topMargin: 8
|
|
|
|
Layout.leftMargin: 8
|
|
|
|
Layout.rightMargin: 8
|
2020-12-20 15:37:22 +01:00
|
|
|
|
2020-12-30 21:03:07 +01:00
|
|
|
RowLayout {
|
2020-12-20 15:37:22 +01:00
|
|
|
Image {
|
|
|
|
Layout.preferredWidth: 22
|
|
|
|
Layout.preferredHeight: 22
|
2021-01-06 23:15:43 +01:00
|
|
|
source: "image://colorimage/:/icons/icons/ui/microphone-unmute.png?" + colors.windowText
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: micCombo
|
2021-01-11 23:51:39 +01:00
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
Layout.fillWidth: true
|
|
|
|
model: CallManager.mics
|
|
|
|
}
|
2021-01-11 23:51:39 +01:00
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
2020-12-30 21:03:07 +01:00
|
|
|
visible: CallManager.isVideo && CallManager.cameras.length > 0
|
2020-12-20 15:37:22 +01:00
|
|
|
|
|
|
|
Image {
|
|
|
|
Layout.preferredWidth: 22
|
|
|
|
Layout.preferredHeight: 22
|
2021-01-06 23:15:43 +01:00
|
|
|
source: "image://colorimage/:/icons/icons/ui/video-call.png?" + colors.windowText
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: cameraCombo
|
2021-01-11 23:51:39 +01:00
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
Layout.fillWidth: true
|
|
|
|
model: CallManager.cameras
|
|
|
|
}
|
2021-01-11 23:51:39 +01:00
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
2021-01-11 23:51:39 +01:00
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
|
|
|
|
2020-12-30 21:03:07 +01:00
|
|
|
DialogButtonBox {
|
|
|
|
Layout.leftMargin: 128
|
|
|
|
standardButtons: DialogButtonBox.Ok | DialogButtonBox.Cancel
|
2021-01-11 23:51:39 +01:00
|
|
|
onAccepted: {
|
|
|
|
Settings.microphone = micCombo.currentText;
|
|
|
|
if (cameraCombo.visible)
|
|
|
|
Settings.camera = cameraCombo.currentText;
|
2020-12-20 15:37:22 +01:00
|
|
|
|
2020-12-30 21:03:07 +01:00
|
|
|
close();
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
2020-12-30 21:03:07 +01:00
|
|
|
onRejected: {
|
|
|
|
close();
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
|
|
|
}
|
2021-01-11 23:51:39 +01:00
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|
2021-01-11 23:51:39 +01:00
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: colors.window
|
|
|
|
border.color: colors.windowText
|
|
|
|
}
|
|
|
|
|
2020-12-20 15:37:22 +01:00
|
|
|
}
|