kde-workspace/plasma/dataengines/notifications/notificationaction.cpp
Ivailo Monev efbde9e504 plasma: organize sub-directories
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-12-24 22:48:47 +02:00

73 lines
2.9 KiB
C++

/*
* Copyright © 2008 Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2 as
* published by the Free Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "notificationaction.h"
#include "notificationsengine.h"
#include <kdebug.h>
void NotificationAction::start()
{
//kDebug() << "Trying to perform the action " << operationName() << " on " << destination();
//kDebug() << "actionId: " << parameters()["actionId"].toString();
//kDebug() << "params: " << parameters();
if (!m_engine) {
setErrorText(i18n("The notification dataEngine is not set."));
setError(-1);
emitResult();
return;
}
const QStringList dest = destination().split(' ');
uint id = 0;
if (dest.count() > 1 && !dest[1].toInt()) {
setErrorText(i18n("Invalid destination: %1", destination()));
setError(-2);
emitResult();
return;
} else if (dest.count() > 1) {
id = dest[1].toUInt();
}
if (operationName() == "invokeAction") {
//kDebug() << "invoking action on " << id;
emit m_engine->ActionInvoked(id, parameters()["actionId"].toString());
} else if (operationName() == "userClosed") {
//userClosedNotification deletes the job, so we have to invoke it queued, in this case emitResult() can be called
m_engine->metaObject()->invokeMethod(m_engine, "userClosedNotification", Qt::QueuedConnection, Q_ARG(uint, id));
} else if (operationName() == "createNotification") {
int rv = m_engine->createNotification(parameters().value("appName").toString(),
parameters().value("appIcon").toString(),
parameters().value("summary").toString(),
parameters().value("body").toString(),
parameters().value("timeout").toInt(),
false,
QString()
);
setResult(rv);
} else if (operationName() == "configureNotification") {
m_engine->configureNotification(parameters()["appRealName"].toString());
}
emitResult();
}
#include "moc_notificationaction.cpp"