Plasma
notificationsengine.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef NOTIFICATIONSENGINE_H
00022 #define NOTIFICATIONSENGINE_H
00023
00024 #include <Plasma/DataEngine>
00025
00026 class QSignalMapper;
00027 class QTimer;
00028
00033 class NotificationsEngine : public Plasma::DataEngine
00034 {
00035 Q_OBJECT
00036
00037 public:
00038 NotificationsEngine( QObject* parent, const QVariantList& args );
00039 ~NotificationsEngine();
00040
00041 virtual void init();
00042
00047 uint Notify(const QString &app_name, uint replaces_id, const QString &event_id, const QString &app_icon, const QString &summary, const QString &body, const QStringList &actions, const QVariantMap &hints, int timeout);
00048
00049 void CloseNotification( uint id );
00050
00051 Plasma::Service* serviceForSource(const QString& source);
00052
00053 signals:
00054 void NotificationClosed( uint id, uint reason );
00055 void ActionInvoked( uint id, const QString& actionKey );
00056
00057 private:
00062 uint m_nextId;
00063
00064 friend class NotificationAction;
00065 };
00066
00067 #endif