You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.9 KiB
75 lines
2.9 KiB
/* |
|
* 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 <klocalizedstring.h> |
|
|
|
#include <QDebug> |
|
|
|
void NotificationAction::start() |
|
{ |
|
//qDebug() << "Trying to perform the action " << operationName() << " on " << destination(); |
|
//qDebug() << "actionId: " << parameters()["actionId"].toString(); |
|
//qDebug() << "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") { |
|
//qDebug() << "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 "notificationaction.moc" |
|
|
|
|