mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
140 lines
4.6 KiB
C++
140 lines
4.6 KiB
C++
/*
|
|
* Copyright 2008 Sebastian Kügler <sebas@kde.org>
|
|
*
|
|
* 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 "katesessions.h"
|
|
|
|
|
|
#include <KDebug>
|
|
#include <KDirWatch>
|
|
#include <KStandardDirs>
|
|
#include <KToolInvocation>
|
|
#include <KIcon>
|
|
#include <KConfig>
|
|
#include <KConfigGroup>
|
|
#include <KUrl>
|
|
#include <KStringHandler>
|
|
#include <QFile>
|
|
|
|
static bool katesessions_runner_compare_sessions(const QString &s1, const QString &s2)
|
|
{
|
|
return KStringHandler::naturalCompare(s1,s2) == -1;
|
|
}
|
|
|
|
KateSessions::KateSessions(QObject *parent, const QVariantList& args)
|
|
: Plasma::AbstractRunner(parent, args)
|
|
{
|
|
setObjectName(QLatin1String("Kate Sessions"));
|
|
setIgnoredTypes(
|
|
Plasma::RunnerContext::File | Plasma::RunnerContext::Directory | Plasma::RunnerContext::NetworkLocation
|
|
);
|
|
|
|
Plasma::RunnerSyntax s(QLatin1String(":q:"), i18n("Finds Kate sessions matching :q:."));
|
|
s.addExampleQuery(QLatin1String("kate :q:"));
|
|
addSyntax(s);
|
|
|
|
addSyntax(Plasma::RunnerSyntax(QLatin1String("kate"), i18n("Lists all the Kate editor sessions in your account.")));
|
|
}
|
|
|
|
void KateSessions::match(Plasma::RunnerContext &context)
|
|
{
|
|
QString term = context.query();
|
|
if (term.length() < 3) {
|
|
return;
|
|
}
|
|
|
|
// Switch kate session: -u
|
|
// Should we add a match for this option or would that clutter the matches too much?
|
|
QStringList sessions;
|
|
const QStringList list = KGlobal::dirs()->findAllResources(
|
|
"data", QLatin1String("kate/sessions/*.katesession"), KStandardDirs::NoDuplicates
|
|
);
|
|
KUrl url;
|
|
foreach (const QString &it, list) {
|
|
#if 0
|
|
KConfig _config( it, KConfig::SimpleConfig );
|
|
KConfigGroup config(&_config, "General" );
|
|
QString name = config.readEntry( "Name" );
|
|
#endif
|
|
url.setPath(it);
|
|
QString name = url.fileName();
|
|
name = QUrl::fromPercentEncoding(QFile::encodeName(url.fileName()));
|
|
name.chop(12); // .katesession == 12
|
|
sessions.append(name);
|
|
}
|
|
qSort(sessions.begin(),sessions.end(), katesessions_runner_compare_sessions);
|
|
|
|
bool listAll = false;
|
|
|
|
if (term.startsWith(QLatin1String("kate"), Qt::CaseInsensitive)) {
|
|
if (term.trimmed().compare(QLatin1String("kate"), Qt::CaseInsensitive) == 0) {
|
|
listAll = true;
|
|
term.clear();
|
|
} else if (term.at(4) == QLatin1Char(' ') ) {
|
|
term.remove(QLatin1String("kate"), Qt::CaseInsensitive);
|
|
term = term.trimmed();
|
|
} else {
|
|
term.clear();
|
|
}
|
|
}
|
|
|
|
if (term.isEmpty() && !listAll) {
|
|
return;
|
|
}
|
|
|
|
foreach (const QString &session, sessions) {
|
|
if (!context.isValid()) {
|
|
return;
|
|
}
|
|
|
|
if (listAll || (!term.isEmpty() && session.contains(term, Qt::CaseInsensitive))) {
|
|
Plasma::QueryMatch match(this);
|
|
if (listAll) {
|
|
// All sessions listed, but with a low priority
|
|
match.setRelevance(0.8);
|
|
} else {
|
|
if (session.compare(term, Qt::CaseInsensitive) == 0) {
|
|
// parameter to kate matches session exactly, bump it up!
|
|
match.setRelevance(1.0);
|
|
} else {
|
|
// fuzzy match of the session in "kate $session"
|
|
match.setRelevance(0.8);
|
|
}
|
|
}
|
|
match.setIcon(KIcon(QLatin1String("kate")));
|
|
match.setData(session);
|
|
match.setText(session);
|
|
match.setSubtext(i18n("Open Kate Session"));
|
|
context.addMatch(match);
|
|
}
|
|
}
|
|
}
|
|
|
|
void KateSessions::run(const Plasma::QueryMatch &match)
|
|
{
|
|
QString session = match.data().toString();
|
|
kDebug() << "Open Kate Session " << session;
|
|
|
|
if (!session.isEmpty()) {
|
|
QStringList args;
|
|
args << QLatin1String("--start") << session << QLatin1String("-n");
|
|
KToolInvocation::self()->startProgram(QLatin1String("kate"), args);
|
|
}
|
|
}
|
|
|
|
#include "moc_katesessions.cpp"
|