plasma-framework/scriptengine.h
Aaron J. Seigo 385e8d507a add the script locating code as statics to the ScriptEngine class
svn path=/trunk/KDE/kdebase/workspace/; revision=1105277
2013-03-05 17:47:59 +01:00

86 lines
2.7 KiB
C++

/*
* Copyright 2009 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 SCRIPTENGINE
#define SCRIPTENGINE
#include <QScriptEngine>
#include <QScriptValue>
#include "../plasmagenericshell_export.h"
namespace Plasma
{
class Applet;
class Containment;
class Corona;
} // namespace Plasma
class Containment;
class PLASMAGENERICSHELL_EXPORT ScriptEngine : public QScriptEngine
{
Q_OBJECT
public:
ScriptEngine(Plasma::Corona *corona, QObject *parent = 0);
~ScriptEngine();
static QStringList pendingUpdateScripts();
static QStringList defaultLayoutScripts();
void evaluateScript(const QString &script);
static bool isPanel(const Plasma::Containment *c);
QScriptValue wrap(Plasma::Applet *w, QScriptEngine *engine);
virtual QScriptValue wrap(Plasma::Containment *c, QScriptEngine *engine);
QScriptValue wrap(Containment *c, QScriptEngine *engine);
static ScriptEngine *envFor(QScriptEngine *engine);
Q_SIGNALS:
void print(const QString &string);
void printError(const QString &string);
void createPendingPanelViews();
private:
void setupEngine();
// containment accessors
static QScriptValue newActivity(QScriptContext *context, QScriptEngine *engine);
static QScriptValue newPanel(QScriptContext *context, QScriptEngine *engine);
static QScriptValue activityById(QScriptContext *context, QScriptEngine *engine);
static QScriptValue activityForScreen(QScriptContext *context, QScriptEngine *engine);
static QScriptValue panelById(QScriptContext *context, QScriptEngine *engine);
static QScriptValue fileExists(QScriptContext *context, QScriptEngine *engine);
// helpers
static QScriptValue createContainment(const QString &type, const QString &defautPlugin,
QScriptContext *context, QScriptEngine *engine);
private Q_SLOTS:
void exception(const QScriptValue &value);
private:
Plasma::Corona *m_corona;
QScriptValue m_scriptSelf;
};
#endif