mirror of https://github.com/Nheko-Reborn/nheko
parent
459c59901e
commit
07ac7b7e85
@ -0,0 +1,107 @@ |
||||
import QtQuick 2.3 |
||||
import QtQuick.Controls 2.3 |
||||
import QtQuick.Dialogs 1.3 |
||||
import QtQuick.Layouts 1.2 |
||||
import im.nheko 1.0 |
||||
import "../" |
||||
|
||||
ApplicationWindow { |
||||
|
||||
flags: Qt.Dialog |
||||
modality: Qt.ApplicationModal |
||||
palette: colors |
||||
width: columnLayout.implicitWidth |
||||
height: columnLayout.implicitHeight |
||||
|
||||
MessageDialog { |
||||
id: warningDialog |
||||
icon: StandardIcon.Warning |
||||
} |
||||
|
||||
ColumnLayout { |
||||
|
||||
id: columnLayout |
||||
spacing: 16 |
||||
|
||||
RowLayout { |
||||
|
||||
Layout.topMargin: 16 |
||||
Layout.leftMargin: 8 |
||||
|
||||
Label { |
||||
font.pointSize: fontMetrics.font.pointSize * 1.1 |
||||
text: "Place a call to " + TimelineManager.timeline.roomName + "?" |
||||
} |
||||
|
||||
Item { |
||||
Layout.fillWidth: true |
||||
} |
||||
} |
||||
|
||||
RowLayout { |
||||
|
||||
id: rowLayout |
||||
Layout.leftMargin: 8 |
||||
Layout.rightMargin: 8 |
||||
Layout.bottomMargin: 16 |
||||
spacing: 16 |
||||
|
||||
function validateMic() { |
||||
if (CallManager.mics.length == 0) { |
||||
warningDialog.text = "No microphone found."; |
||||
warningDialog.open(); |
||||
return false; |
||||
} |
||||
else if (!CallManager.mics.includes(Settings.microphone)) { |
||||
warningDialog.text = "Unknown microphone: " + Settings.microphone; |
||||
warningDialog.open(); |
||||
return false; |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
Avatar { |
||||
width: avatarSize |
||||
height: avatarSize |
||||
url: TimelineManager.timeline.roomAvatarUrl.replace("mxc://", "image://MxcImage/") |
||||
displayName: TimelineManager.timeline.roomName |
||||
} |
||||
|
||||
Button { |
||||
text: qsTr("Voice") |
||||
icon.source: "qrc:/icons/icons/ui/place-call.png" |
||||
onClicked: { |
||||
if (rowLayout.validateMic()) { |
||||
CallManager.sendInvite(TimelineManager.timeline.roomId(), false); |
||||
close(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
Button { |
||||
visible: CallManager.cameras.length > 0 |
||||
text: qsTr("Video") |
||||
icon.source: "qrc:/icons/icons/ui/video-call.png" |
||||
onClicked: { |
||||
if (rowLayout.validateMic()) { |
||||
if (!CallManager.cameras.includes(Settings.camera)) { |
||||
warningDialog.text = "Unknown camera: " + Settings.camera; |
||||
warningDialog.open(); |
||||
return; |
||||
} |
||||
CallManager.sendInvite(TimelineManager.timeline.roomId(), true); |
||||
close(); |
||||
} |
||||
} |
||||
} |
||||
|
||||
Button { |
||||
palette: colors |
||||
text: qsTr("Cancel") |
||||
onClicked: { |
||||
close(); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,131 +0,0 @@ |
||||
#include <QComboBox> |
||||
#include <QLabel> |
||||
#include <QPushButton> |
||||
#include <QString> |
||||
#include <QVBoxLayout> |
||||
|
||||
#include "ChatPage.h" |
||||
#include "Config.h" |
||||
#include "UserSettingsPage.h" |
||||
#include "Utils.h" |
||||
#include "WebRTCSession.h" |
||||
#include "dialogs/PlaceCall.h" |
||||
#include "ui/Avatar.h" |
||||
|
||||
namespace dialogs { |
||||
|
||||
PlaceCall::PlaceCall(const QString &callee, |
||||
const QString &displayName, |
||||
const QString &roomName, |
||||
const QString &avatarUrl, |
||||
QSharedPointer<UserSettings> settings, |
||||
QWidget *parent) |
||||
: QWidget(parent) |
||||
{ |
||||
std::string errorMessage; |
||||
WebRTCSession *session = &WebRTCSession::instance(); |
||||
if (!session->havePlugins(false, &errorMessage)) { |
||||
emit ChatPage::instance()->showNotification(QString::fromStdString(errorMessage)); |
||||
emit close(); |
||||
return; |
||||
} |
||||
session->refreshDevices(); |
||||
microphones_ = session->getDeviceNames(false, settings->microphone().toStdString()); |
||||
if (microphones_.empty()) { |
||||
emit ChatPage::instance()->showNotification(tr("No microphone found.")); |
||||
emit close(); |
||||
return; |
||||
} |
||||
cameras_ = session->getDeviceNames(true, settings->camera().toStdString()); |
||||
|
||||
setAutoFillBackground(true); |
||||
setWindowFlags(Qt::Tool | Qt::WindowStaysOnTopHint); |
||||
setWindowModality(Qt::WindowModal); |
||||
setAttribute(Qt::WA_DeleteOnClose, true); |
||||
|
||||
auto layout = new QVBoxLayout(this); |
||||
layout->setSpacing(conf::modals::WIDGET_SPACING); |
||||
layout->setMargin(conf::modals::WIDGET_MARGIN); |
||||
|
||||
auto buttonLayout = new QHBoxLayout; |
||||
buttonLayout->setSpacing(15); |
||||
buttonLayout->setMargin(0); |
||||
|
||||
QFont f; |
||||
f.setPointSizeF(f.pointSizeF()); |
||||
auto avatar = new Avatar(this, QFontMetrics(f).height() * 3); |
||||
if (!avatarUrl.isEmpty()) |
||||
avatar->setImage(avatarUrl); |
||||
else |
||||
avatar->setLetter(utils::firstChar(roomName)); |
||||
|
||||
voiceBtn_ = new QPushButton(tr("Voice"), this); |
||||
voiceBtn_->setIcon(QIcon(":/icons/icons/ui/place-call.png")); |
||||
voiceBtn_->setIconSize(QSize(iconSize_, iconSize_)); |
||||
voiceBtn_->setDefault(true); |
||||
|
||||
if (!cameras_.empty()) { |
||||
videoBtn_ = new QPushButton(tr("Video"), this); |
||||
videoBtn_->setIcon(QIcon(":/icons/icons/ui/video-call.png")); |
||||
videoBtn_->setIconSize(QSize(iconSize_, iconSize_)); |
||||
} |
||||
cancelBtn_ = new QPushButton(tr("Cancel"), this); |
||||
|
||||
buttonLayout->addWidget(avatar); |
||||
buttonLayout->addStretch(); |
||||
buttonLayout->addWidget(voiceBtn_); |
||||
if (videoBtn_) |
||||
buttonLayout->addWidget(videoBtn_); |
||||
buttonLayout->addWidget(cancelBtn_); |
||||
|
||||
QString name = displayName.isEmpty() ? callee : displayName; |
||||
QLabel *label = new QLabel(tr("Place a call to ") + name + "?", this); |
||||
|
||||
microphoneCombo_ = new QComboBox(this); |
||||
for (const auto &m : microphones_) |
||||
microphoneCombo_->addItem(QIcon(":/icons/icons/ui/microphone-unmute.png"), |
||||
QString::fromStdString(m)); |
||||
|
||||
if (videoBtn_) { |
||||
cameraCombo_ = new QComboBox(this); |
||||
for (const auto &c : cameras_) |
||||
cameraCombo_->addItem(QIcon(":/icons/icons/ui/video-call.png"), |
||||
QString::fromStdString(c)); |
||||
} |
||||
|
||||
layout->addWidget(label); |
||||
layout->addLayout(buttonLayout); |
||||
layout->addStretch(); |
||||
layout->addWidget(microphoneCombo_); |
||||
if (videoBtn_) |
||||
layout->addWidget(cameraCombo_); |
||||
|
||||
connect(voiceBtn_, &QPushButton::clicked, this, [this, settings]() { |
||||
settings->setMicrophone( |
||||
QString::fromStdString(microphones_[microphoneCombo_->currentIndex()])); |
||||
emit voice(); |
||||
emit close(); |
||||
}); |
||||
if (videoBtn_) |
||||
connect(videoBtn_, &QPushButton::clicked, this, [this, settings, session]() { |
||||
std::string error; |
||||
if (!session->havePlugins(true, &error)) { |
||||
emit ChatPage::instance()->showNotification( |
||||
QString::fromStdString(error)); |
||||
emit close(); |
||||
return; |
||||
} |
||||
settings->setMicrophone( |
||||
QString::fromStdString(microphones_[microphoneCombo_->currentIndex()])); |
||||
settings->setCamera( |
||||
QString::fromStdString(cameras_[cameraCombo_->currentIndex()])); |
||||
emit video(); |
||||
emit close(); |
||||
}); |
||||
connect(cancelBtn_, &QPushButton::clicked, this, [this]() { |
||||
emit cancel(); |
||||
emit close(); |
||||
}); |
||||
} |
||||
|
||||
} |
@ -1,44 +0,0 @@ |
||||
#pragma once |
||||
|
||||
#include <string> |
||||
#include <vector> |
||||
|
||||
#include <QSharedPointer> |
||||
#include <QWidget> |
||||
|
||||
class QComboBox; |
||||
class QPushButton; |
||||
class QString; |
||||
class UserSettings; |
||||
|
||||
namespace dialogs { |
||||
|
||||
class PlaceCall : public QWidget |
||||
{ |
||||
Q_OBJECT |
||||
|
||||
public: |
||||
PlaceCall(const QString &callee, |
||||
const QString &displayName, |
||||
const QString &roomName, |
||||
const QString &avatarUrl, |
||||
QSharedPointer<UserSettings> settings, |
||||
QWidget *parent = nullptr); |
||||
|
||||
signals: |
||||
void voice(); |
||||
void video(); |
||||
void cancel(); |
||||
|
||||
private: |
||||
const int iconSize_ = 18; |
||||
QPushButton *voiceBtn_ = nullptr; |
||||
QPushButton *videoBtn_ = nullptr; |
||||
QPushButton *cancelBtn_ = nullptr; |
||||
QComboBox *microphoneCombo_ = nullptr; |
||||
QComboBox *cameraCombo_ = nullptr; |
||||
std::vector<std::string> microphones_; |
||||
std::vector<std::string> cameras_; |
||||
}; |
||||
|
||||
} |
Loading…
Reference in new issue