add more spacing
[personal-kdebase.git] / workspace / plasma / dataengines / notifications / notificationaction.cpp
blob056384112d37f3e6d4f9a4b88b9b079f9213897e
1 /*
2 * Copyright © 2008 Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Library General Public License version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details
13 * You should have received a copy of the GNU Library General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #include "notificationaction.h"
20 #include "notificationsengine.h"
22 #include <kdebug.h>
24 void NotificationAction::start()
26 kDebug() << "Trying to perform the action " << operationName() << " on " << destination();
27 kDebug() << "actionId: " << parameters()["actionId"].toString();
29 if (!m_engine) {
30 setErrorText(i18n("The notification dataEngine is not set."));
31 setError(-1);
32 emitResult();
33 return;
36 if (operationName() == "invokeAction") {
37 const QStringList dest = destination().split(" ");
39 if (dest.count() > 1 && !dest[1].toInt()) {
40 setErrorText(i18n("Invalid destination: ", destination()));
41 setError(-2);
42 emitResult();
43 return;
46 kDebug() << "firing";
47 emit m_engine->ActionInvoked(dest[1].toUInt(), parameters()["actionId"].toString());
50 emitResult();
53 #include "notificationaction.moc"