summaryrefslogtreecommitdiffstats
path: root/scriptrunner.h
diff options
context:
space:
mode:
authorNicolas Arnaud-Cormos <nicolas@kdab.com>2012-02-04 17:34:48 +0100
committerNicolas Arnaud-Cormos <nicolas@kdab.com>2012-02-04 17:34:48 +0100
commit5e6b3d3a1d10587f4b7ac74e8806aecf06d5ba30 (patch)
tree202c3856ac2a1dbc79033d5967ea168be281dc92 /scriptrunner.h
Initialize the Scripting plugin
Diffstat (limited to 'scriptrunner.h')
-rw-r--r--scriptrunner.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/scriptrunner.h b/scriptrunner.h
new file mode 100644
index 0000000..31d32cb
--- /dev/null
+++ b/scriptrunner.h
@@ -0,0 +1,73 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (C) 2011 Kläralvdalens Datakonsult AB, a KDAB Group company.
+**
+** Contact: Kläralvdalens Datakonsult AB (info@kdab.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at info@qt.nokia.com.
+**
+**************************************************************************/
+
+#ifndef SCRIPTRUNNER_H
+#define SCRIPTRUNNER_H
+
+#include <QtCore/QObject>
+#include <QtCore/QString>
+#include <QtCore/QSharedPointer>
+#include <QtScript/QScriptEngine>
+
+namespace Scripting {
+namespace Internal {
+
+/* Script Runner.
+ * Provide a script engine and a way to run scripts.
+ * The script engine is initialized with interfaces.
+ */
+class ScriptRunner : public QObject
+{
+ Q_OBJECT
+public:
+ typedef QSharedPointer<QScriptEngine> QScriptEnginePtr;
+
+ explicit ScriptRunner(QObject *parent = 0);
+ virtual ~ScriptRunner();
+
+ // Run a script
+ bool runScript(const QString &sourceCode, const QString fileName=QString());
+
+ QScriptEnginePtr scriptEngine() { return ensureEngineInitialized(); }
+
+private:
+ QScriptEnginePtr ensureEngineInitialized();
+ void registerGlobal(QObject *object, const QString &name);
+
+private:
+ QScriptEnginePtr m_engine;
+};
+
+} // namespace Internal
+} // namespace Scripting
+
+#endif // SCRIPTMANAGER_H