aboutsummaryrefslogtreecommitdiff
path: root/src/notificationpopup.h
blob: 3a765e0e03bb21b2c19a4f1dcb22a595f2741c29 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#ifndef NOTIFICATIONPOPUP_H
#define NOTIFICATIONPOPUP_H

#pragma once

#include "widgets/scrolltext/scrolltext.h"
#include <QApplication>
#include <QDebug>
#include <QDesktopWidget>
#include <QHBoxLayout>
#include <QLabel>
#include <QMouseEvent>
#include <QPropertyAnimation>
#include <QPushButton>
#include <QScreen>
#include <QSettings>
#include <QSpacerItem>
#include <QTimer>
#include <QVBoxLayout>
#include <QWebEngineNotification>

#include <memory>

class NotificationPopup : public QWidget {
  Q_OBJECT

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

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(int screenNumber, QString title, QString message,
               const QPixmap image) {
    m_title.setText("<b>" + title + "</b>");
    m_message.setText(message);
    m_icon.setPixmap(
        image.scaledToHeight(m_icon.height(), Qt::SmoothTransformation));
    this->adjustSize();

    QTimer::singleShot(settings.value("notificationTimeOut", 9000).toInt(),
                       this, [=]() { onClosed(); });

    animateIn(screenNumber);
  }

  void present(int screenNumber,
               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::fromImage(notification->icon())
                         .scaledToHeight(m_icon.height()));

    notification->show();
    this->adjustSize();

    connect(notification.get(), &QWebEngineNotification::closed, this,
            &NotificationPopup::onClosed);
    QTimer::singleShot(settings.value("notificationTimeOut", 9000).toInt(),
                       notification.get(), [&]() { onClosed(); });

    animateIn(screenNumber);
  }

protected slots:

  void animateIn(int screenNumber) {
    QRect screenRect =
        QGuiApplication::screens().at(screenNumber)->availableGeometry();
    int x = (screenRect.x() + screenRect.width() - 20) - this->width();
    int y = 40;
    QPropertyAnimation *a = new QPropertyAnimation(this, "pos");
    a->setDuration(200);
    a->setStartValue(QApplication::desktop()->mapToGlobal(QPoint(x - 10, y)));
    a->setEndValue(QApplication::desktop()->mapToGlobal(QPoint(x, y)));
    a->setEasingCurve(QEasingCurve::InCubic);
    a->start(QPropertyAnimation::DeleteWhenStopped);
    this->show();
  }

  void onClosed() {
    auto x = this->pos().x();
    auto y = this->pos().y();
    QPropertyAnimation *a = new QPropertyAnimation(this, "pos");
    a->setDuration(150);
    a->setStartValue(QApplication::desktop()->mapToGlobal(QPoint(x, y)));
    a->setEndValue(QApplication::desktop()->mapToGlobal(
        QPoint(x, -(this->height() + 20))));
    a->setEasingCurve(QEasingCurve::Linear);

    connect(a, &QPropertyAnimation::finished, this, [=]() {
      if (notification) {
        notification->close();
        notification.reset();
      }
      this->close();
    });
    a->start(QPropertyAnimation::DeleteWhenStopped);
  }

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

#endif // NOTIFICATIONPOPUP_H