/* * Copyright (C) 2006 Aaron Seigo * Copyright (C) 2010 Marco Martin * * 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 "windowedwidgetsrunner.h" #include #include #include #include #include #include WindowedWidgetsRunner::WindowedWidgetsRunner(QObject *parent, const QVariantList &args) : Plasma::AbstractRunner(parent, args) { Q_UNUSED(args) setObjectName( QLatin1String("WindowedWidgets" )); setPriority(AbstractRunner::HighestPriority); addSyntax(Plasma::RunnerSyntax(":q:", i18n("Finds Plasma widgets whose name or description match :q:"))); addSyntax(Plasma::RunnerSyntax(i18nc("Note this is a KRunner keyword", "mobile applications"), i18n("list all Plasma widgets that can run as standalone applications"))); } void WindowedWidgetsRunner::match(Plasma::RunnerContext &context) { const QString term = context.query(); if (term.length() < 3) { return; } QList matches; foreach (const KPluginInfo &info, Plasma::Applet::listAppletInfo()) { KService::Ptr service = info.service(); if ((service->name().contains(term, Qt::CaseInsensitive) || service->genericName().contains(term, Qt::CaseInsensitive) || service->comment().contains(term, Qt::CaseInsensitive)) || service->categories().contains(term, Qt::CaseInsensitive) || term.startsWith(i18nc("Note this is a KRunner keyword", "mobile applications"))) { Plasma::QueryMatch match(this); setupMatch(service, match); if (service->name().compare(term, Qt::CaseInsensitive) == 0) { match.setRelevance(1); } else { match.setRelevance(0.7); } matches << match; kDebug() << service; } } if (!context.isValid()) { return; } context.addMatches(matches); } void WindowedWidgetsRunner::run(const Plasma::QueryMatch &match) { KService::Ptr service = KService::serviceByStorageId(match.data().toString()); if (service) { QProcess::startDetached("plasma-windowed", QStringList() << service->property("X-KDE-PluginInfo-Name", QVariant::String).toString()); } } QMimeData* WindowedWidgetsRunner::mimeDataForMatch(const Plasma::QueryMatch &match) { KService::Ptr service = KService::serviceByStorageId(match.data().toString()); if (service) { QMimeData *data = new QMimeData(); data->setData("text/x-plasmoidservicename", service->property("X-KDE-PluginInfo-Name", QVariant::String).toString().toUtf8()); return data; } return nullptr; } void WindowedWidgetsRunner::setupMatch(const KService::Ptr &service, Plasma::QueryMatch &match) { const QString name = service->name(); match.setText(name); match.setData(service->storageId()); if (!service->genericName().isEmpty() && service->genericName() != name) { match.setSubtext(service->genericName()); } else if (!service->comment().isEmpty()) { match.setSubtext(service->comment()); } if (!service->icon().isEmpty()) { match.setIcon(KIcon(service->icon())); } } #include "moc_windowedwidgetsrunner.cpp"