summary refs log tree commit diff
path: root/src/dialogs/AcceptCall.h
diff options
context:
space:
mode:
authortrilene <trilene@runbox.com>2020-12-17 11:25:32 -0500
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-07 14:04:21 +0100
commit7124024977ccb237547b88b6a96a50ac6838c354 (patch)
treef5a6ca7b69444413b3c806667e72584d40e36689 /src/dialogs/AcceptCall.h
parentMove call-related properties to CallManager (diff)
downloadnheko-7124024977ccb237547b88b6a96a50ac6838c354.tar.xz
Make call invites less intrusive
Diffstat (limited to 'src/dialogs/AcceptCall.h')
-rw-r--r--src/dialogs/AcceptCall.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/dialogs/AcceptCall.h b/src/dialogs/AcceptCall.h
deleted file mode 100644

index 76ca7ae1..00000000 --- a/src/dialogs/AcceptCall.h +++ /dev/null
@@ -1,39 +0,0 @@ -#pragma once - -#include <string> -#include <vector> - -#include <QWidget> - -class QComboBox; -class QPushButton; -class QString; - -namespace dialogs { - -class AcceptCall : public QWidget -{ - Q_OBJECT - -public: - AcceptCall(const QString &caller, - const QString &displayName, - const QString &roomName, - const QString &avatarUrl, - bool isVideo, - QWidget *parent = nullptr); - -signals: - void accept(); - void reject(); - -private: - QPushButton *acceptBtn_ = nullptr; - QPushButton *rejectBtn_ = nullptr; - QComboBox *microphoneCombo_ = nullptr; - QComboBox *cameraCombo_ = nullptr; - std::vector<std::string> microphones_; - std::vector<std::string> cameras_; -}; - -}