/* * Copyright (C) 2009 Aaron Seigo * * 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 "plasma-desktop-runner.h" #include #include #include #include #include #include #include #include static const QString s_plasmaService = "org.kde.plasma-desktop"; PlasmaDesktopRunner::PlasmaDesktopRunner(QObject *parent, const QVariantList &args) : Plasma::AbstractRunner(parent, args), m_desktopConsoleKeyword(i18nc("Note this is a KRunner keyword", "desktop console")), m_enabled(false) { setObjectName( QLatin1String("Plasma-Desktop" )); setIgnoredTypes(Plasma::RunnerContext::FileSystem | Plasma::RunnerContext::NetworkLocation | Plasma::RunnerContext::Help); QDBusServiceWatcher *watcher = new QDBusServiceWatcher(s_plasmaService, QDBusConnection::sessionBus(), QDBusServiceWatcher::WatchForOwnerChange, this); connect(watcher, SIGNAL(serviceOwnerChanged(QString,QString,QString)), this, SLOT(checkAvailability(QString,QString,QString))); checkAvailability(QString(), QString(), QString()); } PlasmaDesktopRunner::~PlasmaDesktopRunner() { } void PlasmaDesktopRunner::match(Plasma::RunnerContext &context) { if (m_enabled && context.query().startsWith(m_desktopConsoleKeyword, Qt::CaseInsensitive)) { Plasma::QueryMatch match(this); match.setId("plasma-desktop-console"); match.setType(Plasma::QueryMatch::ExactMatch); match.setIcon(KIcon("plasma")); match.setText(i18n("Open Plasma desktop interactive console")); match.setRelevance(1.0); context.addMatch(context.query(), match); } } void PlasmaDesktopRunner::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &match) { Q_UNUSED(match) if (m_enabled) { QDBusMessage message; QString query = context.query(); if (query.compare(m_desktopConsoleKeyword, Qt::CaseInsensitive) == 0) { message = QDBusMessage::createMethodCall(s_plasmaService, "/MainApplication", QString(), "showInteractiveConsole"); } else if (query.startsWith(m_desktopConsoleKeyword)) { message = QDBusMessage::createMethodCall(s_plasmaService, "/MainApplication", QString(), "loadScriptInInteractiveConsole"); query.replace(m_desktopConsoleKeyword, QString(), Qt::CaseInsensitive); QList args; args << query; message.setArguments(args); } QDBusConnection::sessionBus().asyncCall(message); } } void PlasmaDesktopRunner::checkAvailability(const QString &name, const QString &oldOwner, const QString &newOwner) { Q_UNUSED(oldOwner) bool enabled = false; if (name.isEmpty()) { enabled = QDBusConnection::sessionBus().interface()->isServiceRegistered(s_plasmaService).value(); } else { enabled = !newOwner.isEmpty(); } if (m_enabled != enabled) { m_enabled = enabled; if (m_enabled) { addSyntax(Plasma::RunnerSyntax(m_desktopConsoleKeyword, i18n("Opens the Plasma desktop interactive console " "with a file path to a script on disk."))); addSyntax(Plasma::RunnerSyntax(i18nc("Note this is a KRunner keyword", "desktop console :q:"), i18n("Opens the Plasma desktop interactive console " "with a file path to a script on disk."))); } else { setSyntaxes(QList()); } } } #include "moc_plasma-desktop-runner.cpp"