summary refs log tree commit diff
path: root/src/dialogs/PlaceCall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dialogs/PlaceCall.h')
-rw-r--r--src/dialogs/PlaceCall.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/dialogs/PlaceCall.h b/src/dialogs/PlaceCall.h
deleted file mode 100644

index e042258f..00000000 --- a/src/dialogs/PlaceCall.h +++ /dev/null
@@ -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_; -}; - -}