2008-01-25 01:04:03 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2007 by 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 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLASMA_RUNNERSCRIPT_H
|
|
|
|
#define PLASMA_RUNNERSCRIPT_H
|
|
|
|
|
2008-03-14 00:35:06 +01:00
|
|
|
#include <KDE/KGenericFactory>
|
2008-02-26 06:07:15 +01:00
|
|
|
|
2008-01-25 01:04:03 +01:00
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
#include <plasma/scripting/scriptengine.h>
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class AbstractRunner;
|
2008-02-04 05:41:40 +01:00
|
|
|
class SearchContext;
|
|
|
|
class SearchMatch;
|
2008-01-25 01:04:03 +01:00
|
|
|
|
|
|
|
class PLASMA_EXPORT RunnerScript : public ScriptEngine
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor for a RunnerScript.
|
|
|
|
* Subclasses should not attempt to access the Plasma::AbstractRunner
|
|
|
|
* associated with this RunnerScript in the constructor. All
|
|
|
|
* such set up that requires the AbstractRunner itself should be done
|
|
|
|
* in the init() method.
|
|
|
|
*/
|
|
|
|
explicit RunnerScript(QObject *parent = 0);
|
|
|
|
~RunnerScript();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the Plasma::AbstractRunner associated with this RunnerScript
|
|
|
|
*/
|
|
|
|
void setRunner(AbstractRunner *runner);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Plasma::AbstractRunner associated with this script component
|
|
|
|
*/
|
|
|
|
AbstractRunner* runner() const;
|
|
|
|
|
2008-02-04 05:41:40 +01:00
|
|
|
/**
|
|
|
|
* Called when the script should create SearchMatch instances through
|
|
|
|
* SearchContext::addInformationalMatch, SearchContext::addExactMatch, and
|
|
|
|
* SearchContext::addPossibleMatch.
|
|
|
|
*/
|
2008-02-24 20:57:50 +01:00
|
|
|
virtual void match(Plasma::SearchContext *search);
|
2008-02-04 05:41:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called whenever an exact or possible match associated with this
|
|
|
|
* runner is triggered.
|
|
|
|
*/
|
2008-02-24 19:23:21 +01:00
|
|
|
virtual void exec(const Plasma::SearchContext *search, const Plasma::SearchMatch *action);
|
2008-02-04 05:41:40 +01:00
|
|
|
|
2008-01-25 01:04:03 +01:00
|
|
|
private:
|
|
|
|
class Private;
|
|
|
|
Private * const d;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define K_EXPORT_PLASMA_RUNNERSCRIPTENGINE(libname, classname) \
|
|
|
|
K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
|
|
|
|
K_EXPORT_PLUGIN(factory("plasma_runnerscriptengine_" #libname))
|
|
|
|
|
|
|
|
} //Plasma namespace
|
|
|
|
|
|
|
|
#endif
|