3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 10:15:54 +00:00
2022-04-02 18:24:21 +05:00

85 lines
2.3 KiB
C++

/*
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 &notification);
QHash<QString, QString> m_activeNotifications;
QList<NotificationInhibiton *> m_inhibitions;
friend class NotificationAction;
};
Q_DECLARE_METATYPE(NotificationInhibitonPtr);