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
|
/*
SPDX-FileCopyrightText: 2008 Dmitry Suzdalev <dimsuz@gmail.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#pragma once
#include <Plasma/DataEngine>
#include <QHash>
#include <QSet>
namespace NotificationManager
{
class Notification;
}
struct NotificationInhibiton {
QString hint;
QString value;
};
typedef QSharedPointer<NotificationInhibiton> NotificationInhibitonPtr;
/**
* Engine which provides data sources for notifications.
* Each notification is represented by one source.
*/
class NotificationsEngine : public Plasma::DataEngine
{
Q_OBJECT
public:
NotificationsEngine(QObject *parent, const QVariantList &args);
~NotificationsEngine() override;
virtual void init();
/**
* This function implements part of Notifications DBus interface.
* Once called, will add notification source to the engine
*/
uint Notify(const QString &app_name,
uint replaces_id,
const QString &app_icon,
const QString &summary,
const QString &body,
const QStringList &actions,
const QVariantMap &hints,
int timeout);
Plasma::Service *serviceForSource(const QString &source) override;
int createNotification(const QString &appName,
const QString &appIcon,
const QString &summary,
const QString &body,
int timeout,
const QStringList &actions,
const QVariantMap &hints);
void configureNotification(const QString &appName, const QString &eventId = QString());
/*
* Block all notification where a given notification hint matches a given value.
*
* Inhibition is dropped when dereferenced.
*/
NotificationInhibitonPtr createInhibition(const QString &hint, const QString &value);
public Q_SLOTS:
void removeNotification(uint id, uint closeReason);
private:
void notificationAdded(const NotificationManager::Notification ¬ification);
QHash<QString, QString> m_activeNotifications;
QList<NotificationInhibiton *> m_inhibitions;
friend class NotificationAction;
};
Q_DECLARE_METATYPE(NotificationInhibitonPtr);
|