2007-02-28 01:41:09 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 Aaron Seigo <aseigo@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 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.
|
|
|
|
*/
|
|
|
|
|
2007-05-21 16:28:03 +02:00
|
|
|
#include "abstractrunner.h"
|
|
|
|
|
2007-02-28 04:55:22 +01:00
|
|
|
#include <QAction>
|
2007-02-28 01:41:09 +01:00
|
|
|
#include <KActionCollection>
|
2007-03-02 01:06:52 +01:00
|
|
|
#include <KServiceTypeTrader>
|
2007-02-28 01:41:09 +01:00
|
|
|
|
2007-03-02 06:27:33 +01:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
class AbstractRunner::Private
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
|
|
|
public:
|
2007-03-20 18:37:44 +01:00
|
|
|
Private( AbstractRunner* runner ) :
|
2007-02-28 04:55:22 +01:00
|
|
|
exactMatch( 0 ),
|
|
|
|
actions( new KActionCollection( runner ) )
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
2007-07-18 21:09:41 +02:00
|
|
|
delete exactMatch;
|
|
|
|
actions->clear();
|
2007-02-28 01:41:09 +01:00
|
|
|
}
|
|
|
|
|
2007-02-28 04:55:22 +01:00
|
|
|
QAction* exactMatch;
|
2007-02-28 01:41:09 +01:00
|
|
|
KActionCollection* actions;
|
2007-02-28 04:55:22 +01:00
|
|
|
// FIXME: it's a bit lame to keep a copy of the term in each runner
|
|
|
|
QString term;
|
2007-02-28 01:41:09 +01:00
|
|
|
};
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
AbstractRunner::AbstractRunner( QObject* parent )
|
2007-05-21 16:28:03 +02:00
|
|
|
: QObject( parent ),
|
|
|
|
d( new Private( this ) )
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
AbstractRunner::~AbstractRunner()
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
bool AbstractRunner::hasOptions()
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
QWidget* AbstractRunner::options()
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
QAction* AbstractRunner::exactMatch( )
|
2007-03-05 01:07:21 +01:00
|
|
|
{
|
|
|
|
return d->exactMatch;
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
QAction* AbstractRunner::exactMatch( const QString& term )
|
2007-02-28 04:55:22 +01:00
|
|
|
{
|
|
|
|
delete d->exactMatch;
|
|
|
|
d->term.clear();
|
|
|
|
|
|
|
|
d->exactMatch = accepts( term );
|
|
|
|
if ( d->exactMatch ) {
|
|
|
|
d->term = term;
|
|
|
|
connect( d->exactMatch, SIGNAL( triggered() ),
|
|
|
|
this, SLOT( runExactMatch() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return d->exactMatch;
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
KActionCollection* AbstractRunner::matches( const QString& term, int max, int offset )
|
2007-02-28 01:41:09 +01:00
|
|
|
{
|
|
|
|
d->actions->clear();
|
|
|
|
fillMatches( d->actions, term, max, offset );
|
|
|
|
return d->actions;
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
void AbstractRunner::fillMatches( KActionCollection* matches,
|
2007-02-28 01:41:09 +01:00
|
|
|
const QString& term,
|
|
|
|
int max, int offset )
|
|
|
|
{
|
2007-02-28 04:55:22 +01:00
|
|
|
Q_UNUSED( matches );
|
2007-02-28 01:41:09 +01:00
|
|
|
Q_UNUSED( term );
|
|
|
|
Q_UNUSED( max );
|
|
|
|
Q_UNUSED( offset );
|
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
void AbstractRunner::runExactMatch()
|
2007-02-28 04:55:22 +01:00
|
|
|
{
|
2007-07-18 21:09:41 +02:00
|
|
|
if (!d->exactMatch) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
exec(d->exactMatch, d->term);
|
2007-02-28 04:55:22 +01:00
|
|
|
}
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
AbstractRunner::List AbstractRunner::loadRunners( QWidget* parent )
|
2007-03-02 01:06:52 +01:00
|
|
|
{
|
|
|
|
List runners;
|
|
|
|
KService::List offers = KServiceTypeTrader::self()->query( "KRunner/Runner" );
|
|
|
|
foreach ( KService::Ptr service, offers ) {
|
2007-03-20 18:37:44 +01:00
|
|
|
AbstractRunner* runner = KService::createInstance<AbstractRunner>( service, parent );
|
2007-03-02 01:06:52 +01:00
|
|
|
if ( runner ) {
|
|
|
|
kDebug() << "loaded runner : " << service->name() << endl ;
|
|
|
|
runners.append( runner );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
kDebug() << "failed to load runner : " << service->name() << endl ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return runners;
|
|
|
|
}
|
|
|
|
|
2007-03-02 06:27:33 +01:00
|
|
|
} // Plasma namespace
|
|
|
|
|
2007-03-20 18:37:44 +01:00
|
|
|
#include "abstractrunner.moc"
|