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.
120 lines
3.9 KiB
120 lines
3.9 KiB
/* |
|
* Copyright (C) 2006 Aaron Seigo <aseigo@kde.org> |
|
* Copyright (C) 2010 Marco Martin <notmart@gmail.com> |
|
* |
|
* 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 <QProcess> |
|
|
|
#include <QIcon> |
|
#include <QMimeData> |
|
|
|
#include <QDebug> |
|
#include <KLocalizedString> |
|
#include <KService> |
|
|
|
#include <Plasma/Applet> |
|
#include <Plasma/PluginLoader> |
|
|
|
K_EXPORT_PLASMA_RUNNER_WITH_JSON(WindowedWidgetsRunner, "plasma-runner-windowedwidgets.json") |
|
|
|
WindowedWidgetsRunner::WindowedWidgetsRunner(QObject *parent, const QVariantList &args) |
|
: Plasma::AbstractRunner(parent, args) |
|
{ |
|
setObjectName(QStringLiteral("WindowedWidgets")); |
|
setPriority(AbstractRunner::HighestPriority); |
|
|
|
addSyntax(Plasma::RunnerSyntax(QStringLiteral(":q:"), i18n("Finds Plasma widgets whose name or description match :q:"))); |
|
setDefaultSyntax(Plasma::RunnerSyntax(i18nc("Note this is a KRunner keyword", "mobile applications"), i18n("list all Plasma widgets that can run as standalone applications"))); |
|
} |
|
|
|
WindowedWidgetsRunner::~WindowedWidgetsRunner() |
|
{ |
|
} |
|
|
|
void WindowedWidgetsRunner::match(Plasma::RunnerContext &context) |
|
{ |
|
const QString term = context.query(); |
|
|
|
if (!context.singleRunnerQueryMode() && term.length() < 3) { |
|
return; |
|
} |
|
|
|
QList<Plasma::QueryMatch> matches; |
|
|
|
const auto &listMetadata = Plasma::PluginLoader::self()->listAppletMetaData(QString()); |
|
for (const KPluginMetaData &md : listMetadata) { |
|
if (!md.isValid()) { |
|
continue; |
|
} |
|
|
|
if (((md.name().contains(term, Qt::CaseInsensitive) || |
|
md.value(QLatin1String("GenericName")).contains(term, Qt::CaseInsensitive) || |
|
md.description().contains(term, Qt::CaseInsensitive)) || |
|
md.category().contains(term, Qt::CaseInsensitive) || |
|
term.startsWith(i18nc("Note this is a KRunner keyword", "mobile applications"))) && |
|
!md.rawData().value(QStringLiteral("NoDisplay")).toBool()) { |
|
|
|
if (!md.rawData().value(QStringLiteral("X-Plasma-StandAloneApp")).toBool()) { |
|
continue; |
|
} |
|
|
|
Plasma::QueryMatch match(this); |
|
setupMatch(md, match); |
|
if (md.name().compare(term, Qt::CaseInsensitive) == 0) { |
|
match.setType(Plasma::QueryMatch::ExactMatch); |
|
match.setRelevance(1); |
|
} else { |
|
match.setType(Plasma::QueryMatch::PossibleMatch); |
|
match.setRelevance(0.7); |
|
} |
|
matches << match; |
|
} |
|
} |
|
|
|
if (!context.isValid()) { |
|
return; |
|
} |
|
|
|
context.addMatches(matches); |
|
} |
|
|
|
void WindowedWidgetsRunner::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &match) |
|
{ |
|
Q_UNUSED(context); |
|
QProcess::startDetached(QStringLiteral("plasmawindowed"), {match.data().toString()}); |
|
} |
|
|
|
void WindowedWidgetsRunner::setupMatch(const KPluginMetaData &md, Plasma::QueryMatch &match) |
|
{ |
|
match.setText(md.name()); |
|
match.setSubtext(md.description()); |
|
match.setIconName(md.iconName()); |
|
match.setData(md.pluginId()); |
|
} |
|
|
|
QMimeData * WindowedWidgetsRunner::mimeDataForMatch(const Plasma::QueryMatch &match) |
|
{ |
|
QMimeData *data = new QMimeData(); |
|
data->setData(QStringLiteral("text/x-plasmoidservicename"), match.data().toString().toUtf8()); |
|
return data; |
|
} |
|
|
|
|
|
#include "windowedwidgetsrunner.moc" |
|
|
|
|