summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/push-notifications/notificationpopup.h
blob: cf53ded4534dafbb5b6df068c263341dd6b1a57b (plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#pragma once

#include <QHBoxLayout>
#include <QLabel>
#include <QMouseEvent>
#include <QPushButton>
#include <QSpacerItem>
#include <QTimer>
#include <QVBoxLayout>
#include <QWebEngineNotification>

#include <memory>

class NotificationPopup : public QWidget
{
    Q_OBJECT

    QLabel m_icon, m_title, m_message;
    std::unique_ptr<QWebEngineNotification> notification;

public:
    NotificationPopup(QWidget *parent) : QWidget(parent)
    {
        setWindowFlags(Qt::ToolTip);
        auto rootLayout = new QHBoxLayout(this);

        rootLayout->addWidget(&m_icon);

        auto bodyLayout = new QVBoxLayout;
        rootLayout->addLayout(bodyLayout);

        auto titleLayout = new QHBoxLayout;
        bodyLayout->addLayout(titleLayout);

        titleLayout->addWidget(&m_title);
        titleLayout->addItem(new QSpacerItem(0, 0, QSizePolicy::Expanding));

        auto close = new QPushButton(tr("Close"));
        titleLayout->addWidget(close);
        connect(close, &QPushButton::clicked, this, &NotificationPopup::onClosed);

        bodyLayout->addWidget(&m_message);
        adjustSize();
    }

    void present(std::unique_ptr<QWebEngineNotification> &newNotification)
    {
        if (notification) {
            notification->close();
            notification.reset();
        }

        notification.swap(newNotification);

        m_title.setText("<b>" + notification->title() + "</b>");
        m_message.setText(notification->message());
        m_icon.setPixmap(QPixmap(":/icon.png").scaledToHeight(m_icon.height()));

        show();
        notification->show();

        connect(notification.get(), &QWebEngineNotification::closed, this,
                &NotificationPopup::onClosed);
        QTimer::singleShot(10000, notification.get(), [&]() { onClosed(); });

        // position our popup in the right corner of its parent widget
        move(parentWidget()->mapToGlobal(parentWidget()->rect().bottomRight()
                                         - QPoint(width() + 10, height() + 10)));
    }

protected slots:
    void onClosed()
    {
        hide();
        notification->close();
        notification.reset();
    }

protected:
    void mouseReleaseEvent(QMouseEvent *event) override
    {
        QWidget::mouseReleaseEvent(event);
        if (notification && event->button() == Qt::LeftButton) {
            notification->click();
            onClosed();
        }
    }
};