summary refs log tree commit diff
path: root/src/dialogs/PlaceCall.h
blob: b4de1428c9ca18aab6c058e2e71bd475d15b67cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include <QWidget>

class QPushButton;
class QString;

namespace dialogs {

class PlaceCall : public QWidget
{
        Q_OBJECT

public:
        PlaceCall(const QString &callee, const QString &displayName, QWidget *parent = nullptr);

signals:
        void voice();
        void video();
        void cancel();

private:
        QPushButton *voiceBtn_;
        QPushButton *videoBtn_;
        QPushButton *cancelBtn_;
};

}