2013-08-20 12:55:03 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-08-20 12:55:03 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-08-20 12:55:03 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NOTIFICATIONSDBUSINTERFACE_H
|
|
|
|
#define NOTIFICATIONSDBUSINTERFACE_H
|
|
|
|
|
|
|
|
#include <QDBusAbstractAdaptor>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2013-09-26 23:01:59 +01:00
|
|
|
#include <QDir>
|
2018-01-16 19:31:05 +00:00
|
|
|
#include <QPointer>
|
2013-08-20 12:55:03 +01:00
|
|
|
|
|
|
|
#include "notification.h"
|
|
|
|
|
2014-07-01 00:23:21 +01:00
|
|
|
class KdeConnectPlugin;
|
|
|
|
class Device;
|
|
|
|
|
2013-08-20 12:55:03 +01:00
|
|
|
class NotificationsDbusInterface
|
|
|
|
: public QDBusAbstractAdaptor
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.notifications")
|
|
|
|
|
|
|
|
public:
|
2014-06-14 19:35:00 +01:00
|
|
|
explicit NotificationsDbusInterface(KdeConnectPlugin* plugin);
|
2016-06-20 08:05:02 +01:00
|
|
|
~NotificationsDbusInterface() override;
|
2013-08-20 12:55:03 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
void processPacket(const NetworkPacket& np);
|
2015-06-15 02:59:53 +01:00
|
|
|
void clearNotifications();
|
2015-10-17 23:32:13 +01:00
|
|
|
void dismissRequested(const QString& notification);
|
2017-05-31 14:33:21 +01:00
|
|
|
void replyRequested(Notification* noti);
|
2015-09-10 15:36:03 +01:00
|
|
|
void addNotification(Notification* noti);
|
2013-08-20 12:55:03 +01:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
Q_SCRIPTABLE QStringList activeNotifications();
|
2017-05-31 14:33:21 +01:00
|
|
|
Q_SCRIPTABLE void sendReply(const QString& replyId, const QString& message);
|
2019-02-08 22:47:41 +00:00
|
|
|
Q_SCRIPTABLE void sendAction(const QString& key, const QString& action);
|
2013-08-20 12:55:03 +01:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
2013-08-21 17:25:44 +01:00
|
|
|
Q_SCRIPTABLE void notificationPosted(const QString& publicId);
|
|
|
|
Q_SCRIPTABLE void notificationRemoved(const QString& publicId);
|
2017-11-06 03:12:16 +00:00
|
|
|
Q_SCRIPTABLE void notificationUpdated(const QString& publicId);
|
2016-04-05 23:25:12 +01:00
|
|
|
Q_SCRIPTABLE void allNotificationsRemoved();
|
2013-08-20 12:55:03 +01:00
|
|
|
|
|
|
|
private /*methods*/:
|
2017-09-03 20:39:44 +01:00
|
|
|
void removeNotification(const QString& internalId);
|
2018-12-11 17:23:06 +00:00
|
|
|
QString newId(); //Generates successive identifiers to use as public ids
|
2018-03-24 20:28:35 +00:00
|
|
|
void notificationReady();
|
2013-08-20 12:55:03 +01:00
|
|
|
|
|
|
|
private /*attributes*/:
|
2017-09-03 20:39:44 +01:00
|
|
|
const Device* m_device;
|
|
|
|
KdeConnectPlugin* m_plugin;
|
2018-01-16 19:31:05 +00:00
|
|
|
QHash<QString, QPointer<Notification>> m_notifications;
|
2017-09-03 20:39:44 +01:00
|
|
|
QHash<QString, QString> m_internalIdToPublicId;
|
|
|
|
int m_lastId;
|
2013-08-20 12:55:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|