/* * Copyright 2007 Glenn Ergeerts * Copyright 2012 Glenn Ergeerts * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2, or * (at your option) any later version. * * 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 "bookmarksrunner.h" #include "browser.h" #include #include #include #include #include #include #include #include #include #include "bookmarkmatch.h" #include "browserfactory.h" #include "bookmarksrunner_defs.h" BookmarksRunner::BookmarksRunner( QObject* parent, const QVariantList &args ) : Plasma::AbstractRunner(parent, args), m_browser(0), m_browserFactory(new BrowserFactory(this)) { Q_UNUSED(args) kDebug(kdbg_code) << "Creating BookmarksRunner"; setObjectName( QLatin1String("Bookmarks" )); addSyntax(Plasma::RunnerSyntax(":q:", i18n("Finds web browser bookmarks matching :q:."))); setDefaultSyntax(Plasma::RunnerSyntax(i18nc("list of all web browser bookmarks", "bookmarks"), i18n("List all web browser bookmarks"))); connect(this, SIGNAL(prepare()), this, SLOT(prep())); } BookmarksRunner::~BookmarksRunner() { } void BookmarksRunner::prep() { m_browser = m_browserFactory->find(findBrowserName(), this); connect(this, SIGNAL(teardown()), dynamic_cast(m_browser), SLOT(teardown())); m_browser->prepare(); } void BookmarksRunner::match(Plasma::RunnerContext &context) { if(! m_browser) return; const QString term = context.query(); if ((term.length() < 3) && (!context.singleRunnerQueryMode())) { return; } bool allBookmarks = term.compare(i18nc("list of all konqueror bookmarks", "bookmarks"), Qt::CaseInsensitive) == 0; QList matches = m_browser->match(term, allBookmarks); foreach(BookmarkMatch match, matches) { if(!context.isValid()) return; context.addMatch(term, match.asQueryMatch(this)); } } QString BookmarksRunner::findBrowserName() { //HACK find the default browser KConfigGroup config(KSharedConfig::openConfig("kdeglobals"), QLatin1String("General") ); QString exec = config.readPathEntry(QLatin1String("BrowserApplication"), QString()); kDebug(kdbg_code) << "Found exec string: " << exec; if (exec.isEmpty()) { KService::Ptr service = KMimeTypeTrader::self()->preferredService("text/html"); if (service) { exec = service->exec(); } } kDebug(kdbg_code) << "KRunner::Bookmarks: found executable " << exec << " as default browser"; return exec; } void BookmarksRunner::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &action) { Q_UNUSED(context); const QString term = action.data().toString(); // transforms URLs like "kde.org" to "http://kde.org" const KUrl url = KUrl::fromUserInput(term); KToolInvocation::invokeBrowser(url.url()); } QMimeData * BookmarksRunner::mimeDataForMatch(const Plasma::QueryMatch * match) { QMimeData * result = new QMimeData(); QList urls; urls << QUrl(match->data().toString()); result->setUrls(urls); result->setText(match->data().toString()); return result; } #include "moc_bookmarksrunner.cpp"