summary refs log tree commit diff
path: root/src/dialogs/AcceptCall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dialogs/AcceptCall.h')
-rw-r--r--src/dialogs/AcceptCall.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/dialogs/AcceptCall.h b/src/dialogs/AcceptCall.h

index 5db8fcfa..00616c53 100644 --- a/src/dialogs/AcceptCall.h +++ b/src/dialogs/AcceptCall.h
@@ -6,6 +6,7 @@ #include <QSharedPointer> #include <QWidget> +class QComboBox; class QPushButton; class QString; class UserSettings; @@ -22,6 +23,7 @@ public: const QString &roomName, const QString &avatarUrl, QSharedPointer<UserSettings> settings, + bool isVideo, QWidget *parent = nullptr); signals: @@ -29,8 +31,12 @@ signals: void reject(); private: - QPushButton *acceptBtn_; - QPushButton *rejectBtn_; - std::vector<std::string> audioDevices_; + QPushButton *acceptBtn_ = nullptr; + QPushButton *rejectBtn_ = nullptr; + QComboBox *microphoneCombo_ = nullptr; + QComboBox *cameraCombo_ = nullptr; + std::vector<std::string> microphones_; + std::vector<std::string> cameras_; }; + }