summaryrefslogtreecommitdiff
path: root/src/notificationadaptor.cpp
blob: 42798316f9fe45a60e13b0d8408bd8a4d8e27142 (plain)
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
/*
 * This file was generated by qdbusxml2cpp version 0.7
 * Command line was: qdbusxml2cpp -c NotificationAdaptor -a notificationadaptor.cpp org.freedesktop.Notifications.xml
 *
 * qdbusxml2cpp is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
 *
 * This is an auto-generated file.
 * This file may have been hand-edited. Look for HAND-EDIT comments
 * before re-generating it.
 */

#include "notificationadaptor.h"

/*
 * Implementation of adaptor class NotificationAdaptor
 */

NotificationAdaptor::NotificationAdaptor(QObject *parent)
    : QDBusAbstractAdaptor(parent)
{
}

uint NotificationAdaptor::Notify(const QString &app_name, uint replaces_id, const QString &app_icon, const QString &summary, const QString &body, const QStringList &actions, const QVariantHash &hints, int expire_timeout)
{
    // handle method call org.freedesktop.Notifications.Notify
	static_cast<NotificationMonitor*>(parent())->handleNotification(app_name, replaces_id, app_icon, summary, body, actions, hints, expire_timeout);
}