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.
101 lines
3.1 KiB
101 lines
3.1 KiB
/* |
|
* Copyright 2009 Chani Armitage <chani@kde.org> |
|
* |
|
* 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 "activityjob.h" |
|
|
|
#include <kactivities/controller.h> |
|
#include <QDebug> |
|
#include <KLocalizedString> |
|
|
|
#include <QDBusConnection> |
|
#include <QDBusMessage> |
|
|
|
ActivityJob::ActivityJob(KActivities::Controller *controller, const QString &id, const QString &operation, QMap<QString, QVariant> ¶meters, QObject *parent) : |
|
ServiceJob(parent->objectName(), operation, parameters, parent), |
|
m_activityController(controller), |
|
m_id(id) |
|
{ |
|
} |
|
|
|
ActivityJob::~ActivityJob() |
|
{ |
|
} |
|
|
|
void ActivityJob::start() |
|
{ |
|
const QString operation = operationName(); |
|
if (operation == "add") { |
|
//I wonder how well plasma will handle this... |
|
QString name = parameters()["Name"].toString(); |
|
if (name.isEmpty()) { |
|
name = i18n("unnamed"); |
|
} |
|
const QString activityId = m_activityController->addActivity(name); |
|
setResult(activityId); |
|
return; |
|
} |
|
if (operation == "remove") { |
|
QString id = parameters()["Id"].toString(); |
|
m_activityController->removeActivity(id); |
|
setResult(true); |
|
return; |
|
} |
|
|
|
//m_id is needed for the rest |
|
if (m_id.isEmpty()) { |
|
setResult(false); |
|
return; |
|
} |
|
if (operation == "setCurrent") { |
|
m_activityController->setCurrentActivity(m_id); |
|
setResult(true); |
|
return; |
|
} |
|
if (operation == "stop") { |
|
m_activityController->stopActivity(m_id); |
|
setResult(true); |
|
return; |
|
} |
|
if (operation == "start") { |
|
m_activityController->startActivity(m_id); |
|
setResult(true); |
|
return; |
|
} |
|
if (operation == "setName") { |
|
m_activityController->setActivityName(m_id, parameters()["Name"].toString()); |
|
setResult(true); |
|
return; |
|
} |
|
if (operation == "setIcon") { |
|
m_activityController->setActivityIcon(m_id, parameters()["Icon"].toString()); |
|
setResult(true); |
|
return; |
|
} |
|
if (operation == "toggleActivityManager") { |
|
QDBusMessage message = QDBusMessage::createMethodCall("org.kde.plasmashell", |
|
"/PlasmaShell", |
|
"org.kde.PlasmaShell", |
|
"toggleActivityManager"); |
|
QDBusConnection::sessionBus().call(message, QDBus::NoBlock); |
|
setResult(true); |
|
return; |
|
} |
|
setResult(false); |
|
} |
|
|
|
|
|
|