summary refs log tree commit diff
path: root/src/dialogs/PlaceCall.cpp
blob: c5c78f94059ece043cf1ea87c080d290d9467471 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <QLabel>
#include <QPushButton>
#include <QString>
#include <QVBoxLayout>

#include "Config.h"
#include "Utils.h"
#include "dialogs/PlaceCall.h"
#include "ui/Avatar.h"

namespace dialogs {

PlaceCall::PlaceCall(
    const QString &callee,
    const QString &displayName,
    const QString &roomName,
    const QString &avatarUrl,
    QWidget *parent) : QWidget(parent)
{
        setAutoFillBackground(true);
        setWindowFlags(Qt::Tool | Qt::WindowStaysOnTopHint);
        setWindowModality(Qt::WindowModal);
        setAttribute(Qt::WA_DeleteOnClose, true);

        auto layout = new QVBoxLayout(this);
        layout->setSpacing(conf::modals::WIDGET_SPACING);
        layout->setMargin(conf::modals::WIDGET_MARGIN);

        auto buttonLayout = new QHBoxLayout(this);
        buttonLayout->setSpacing(15);
        buttonLayout->setMargin(0);

        QFont f;
        f.setPointSizeF(f.pointSizeF());
        auto avatar = new Avatar(this, QFontMetrics(f).height() * 3);
        if (!avatarUrl.isEmpty())
          avatar->setImage(avatarUrl);
        else
          avatar->setLetter(utils::firstChar(roomName));

        voiceBtn_ = new QPushButton(tr("Voice Call"), this);
        voiceBtn_->setDefault(true);
        //videoBtn_  = new QPushButton(tr("Video Call"), this);
        cancelBtn_ = new QPushButton(tr("Cancel"), this);

        buttonLayout->addStretch(1);
        buttonLayout->addWidget(avatar);
        buttonLayout->addWidget(voiceBtn_);
        //buttonLayout->addWidget(videoBtn_);
        buttonLayout->addWidget(cancelBtn_);

        QString name = displayName.isEmpty() ? callee : displayName;
        QLabel *label = new QLabel("Place a call to " + name + "?", this);

        layout->addWidget(label);
        layout->addLayout(buttonLayout);

        connect(voiceBtn_, &QPushButton::clicked, this, [this]() {
                emit voice();
                emit close();
        });
        /*connect(videoBtn_, &QPushButton::clicked, this, [this]() {
                emit video();
                emit close();
        });*/
        connect(cancelBtn_, &QPushButton::clicked, this, [this]() {
                emit cancel();
                emit close();
        });
}

}