2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2021-05-11 17:55:25 +00:00
|
|
|
|
|
|
|
#ifndef NOTIFICATIONCLIENT_H
|
|
|
|
#define NOTIFICATIONCLIENT_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
//! [Qt Notification Class]
|
|
|
|
class NotificationClient : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit NotificationClient(QObject *parent = 0);
|
|
|
|
|
|
|
|
void setNotification(const QString ¬ification);
|
|
|
|
QString notification() const;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void notificationChanged();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void updateAndroidNotification();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_notification;
|
|
|
|
};
|
|
|
|
//! [Qt Notification Class]
|
|
|
|
#endif // NOTIFICATIONCLIENT_H
|