summary refs log tree commit diff
path: root/src/dialogs/PlaceCall.h
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2020-10-30 03:21:14 +0100
committerGitHub <noreply@github.com>2020-10-30 03:21:14 +0100
commitb64e6e9cd59c97f3e4f88c08d6c13f2574921d80 (patch)
tree5e2ee4ecaf8523bc006e47bad7f277b0e21eee0f /src/dialogs/PlaceCall.h
parentFix clipboard image pasting crash on macos (diff)
parentUnused variable (diff)
downloadnheko-b64e6e9cd59c97f3e4f88c08d6c13f2574921d80.tar.xz
Merge pull request #311 from trilene/webrtc-video
Support video calls
Diffstat (limited to 'src/dialogs/PlaceCall.h')
-rw-r--r--src/dialogs/PlaceCall.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/dialogs/PlaceCall.h b/src/dialogs/PlaceCall.h

index e178afc4..e042258f 100644 --- a/src/dialogs/PlaceCall.h +++ b/src/dialogs/PlaceCall.h
@@ -6,6 +6,7 @@ #include <QSharedPointer> #include <QWidget> +class QComboBox; class QPushButton; class QString; class UserSettings; @@ -26,11 +27,18 @@ public: signals: void voice(); + void video(); void cancel(); private: - QPushButton *voiceBtn_; - QPushButton *cancelBtn_; - std::vector<std::string> audioDevices_; + 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_; }; + }