kde-workspace/plasma/dataengines/places/placeservice.cpp
Ivailo Monev 07b66f4edf plasma: adjust to Plasma::Service changes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-02 07:02:43 +03:00

80 lines
2.7 KiB
C++

/*
* Copyright 2008 Alex Merry <alex.merry@kdemail.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
#include "placeservice.h"
#include "jobs.h"
#include <KDebug>
PlaceService::PlaceService(QObject* parent,
KFilePlacesModel* model,
QModelIndex index)
: Plasma::Service(parent),
m_model(model),
m_index(index)
{
setName("org.kde.places");
setOperationNames(
QStringList()
<< "Update"
<< "Add"
// FIXME: no move, cos we don't have drag-n-drop. Can we fake it?
<< "Remove"
<< "Hide"
<< "Show"
<< "Setup Device"
<< "Teardown Device"
);
if (m_index.isValid()) {
Q_ASSERT(m_index.model() == model);
setDestination(QString::number(m_index.row()));
kDebug() << "Created a place service for" << destination();
} else {
kDebug() << "Created a dead place service";
}
}
Plasma::ServiceJob* PlaceService::createJob(const QString& operation,
const QMap<QString,QVariant>& parameters)
{
kDebug() << "Job" << operation << "with arguments" << parameters << "requested";
if (operation == "Add") {
return new AddEditPlaceJob(m_model, m_index, parameters, this);
} else if (operation == "Edit") {
return new AddEditPlaceJob(m_model, QModelIndex(), parameters, this);
} else if (operation == "Remove") {
return new RemovePlaceJob(m_model, m_index, this);
} else if (operation == "Hide") {
return new ShowPlaceJob(m_model, m_index, false, this);
} else if (operation == "Show") {
return new ShowPlaceJob(m_model, m_index, true, this);
} else if (operation == "Setup Device") {
return new SetupDeviceJob(m_model, m_index, this);
} else if (operation == "Teardown Device") {
return new TeardownDeviceJob(m_model, m_index, this);
} else {
// FIXME: BAD! No!
return 0;
}
}
#include "moc_placeservice.cpp"
// vim: sw=4 sts=4 et tw=100