Abstract base class for all script handlers.
More...
#include <RScriptHandler.h>
|
virtual void | abort ()=0 |
|
virtual void | autostart (const QString &autostartFile=RDEFAULT_QSTRING, const QStringList &arguments=RDEFAULT_QSTRINGLIST) |
| Looks up and initializes the autostart script(s) available for this script handler.
|
|
virtual void | createActionApplicationLevel (const QString &scriptFile, RGuiAction *guiAction)=0 |
|
template<class T > |
void | createActionApplicationLevelT (const QString &scriptFile, RGuiAction *guiAction) |
| Creates a new application level action by instantiating class T.
|
|
virtual void | createActionDocumentLevel (const QString &scriptFile, RGuiAction *guiAction, RDocumentInterface *documentInterface=NULL)=0 |
| Creates a script based action for this script handler.
|
|
template<class T > |
void | createActionDocumentLevelT (const QString &scriptFile, RGuiAction *guiAction, RDocumentInterface *documentInterface) |
| Creates a new document level action by instantiating class T and attaching the action to the document interface of the currently active document.
|
|
virtual RFileImporterAdapter * | createFileImporter (const QString &className, RDocument &document)=0 |
| Creates a file importer from the given class name and for the given document.
|
|
virtual void | doScript (const QString &scriptFile, const QStringList &arguments=RDEFAULT_QSTRINGLIST)=0 |
| Runs the given script file.
|
|
virtual QVariant | eval (const QString &script, const QString &fileName=RDEFAULT_QSTRING)=0 |
| Evaluates the given script code.
|
|
virtual QVariant | evalGlobal (const QString &script, const QString &fileName=RDEFAULT_QSTRING)=0 |
| Evaluates the given script code in a global context.
|
|
virtual QList< QString > | getSupportedFileExtensions ()=0 |
|
virtual bool | hasUncaughtExceptions ()=0 |
|
virtual void | init (bool main=false) |
|
virtual bool | isRunning ()=0 |
|
| RScriptHandler () |
|
virtual | ~RScriptHandler () |
|
Abstract base class for all script handlers.
- Scriptable:\nThis class is available in script environments.\n
◆ RScriptHandler()
RScriptHandler::RScriptHandler |
( |
| ) |
|
|
inline |
◆ ~RScriptHandler()
virtual RScriptHandler::~RScriptHandler |
( |
| ) |
|
|
inlinevirtual |
◆ abort()
virtual void RScriptHandler::abort |
( |
| ) |
|
|
pure virtual |
◆ autostart()
Looks up and initializes the autostart script(s) available for this script handler.
This method calls initScript for all files with a supported file extension (see getSupportedFileExtensions).
◆ createActionApplicationLevel()
virtual void RScriptHandler::createActionApplicationLevel |
( |
const QString & | scriptFile, |
|
|
RGuiAction * | guiAction ) |
|
pure virtual |
◆ createActionApplicationLevelT()
template<class T >
void RScriptHandler::createActionApplicationLevelT |
( |
const QString & | scriptFile, |
|
|
RGuiAction * | guiAction ) |
|
inline |
Creates a new application level action by instantiating class T.
Application level actions typically do not effect any documents. Application level actions cannot be attached to a document interface or anywhere else, so the action is instantiated, beginEvent is called and then the action is terminated immediately (finishEvent is called).
- Non-Scriptable:\nThis function is not available in script environments.\n
◆ createActionDocumentLevel()
Creates a script based action for this script handler.
◆ createActionDocumentLevelT()
Creates a new document level action by instantiating class T and attaching the action to the document interface of the currently active document.
Document level actions typically effect only the current document. Document level actions stay active until they are explicitly finished.
- Non-Scriptable:\nThis function is not available in script environments.\n
◆ createFileImporter()
virtual RFileImporterAdapter * RScriptHandler::createFileImporter |
( |
const QString & | className, |
|
|
RDocument & | document ) |
|
pure virtual |
Creates a file importer from the given class name and for the given document.
◆ doScript()
Runs the given script file.
◆ eval()
Evaluates the given script code.
◆ evalGlobal()
Evaluates the given script code in a global context.
◆ getSupportedFileExtensions()
virtual QList< QString > RScriptHandler::getSupportedFileExtensions |
( |
| ) |
|
|
pure virtual |
- Returns
- The file extensions of script files that are supported by this script handler.
◆ hasUncaughtExceptions()
virtual bool RScriptHandler::hasUncaughtExceptions |
( |
| ) |
|
|
pure virtual |
◆ init()
void RScriptHandler::init |
( |
bool | main = false | ) |
|
|
virtual |
◆ isRunning()
virtual bool RScriptHandler::isRunning |
( |
| ) |
|
|
pure virtual |
- Returns
- true if the script handle currently is running a script, false otherwise.
◆ triggerActionApplicationLevel()
void RScriptHandler::triggerActionApplicationLevel |
( |
const QString & | scriptFile, |
|
|
RGuiAction * | guiAction = NULL ) |
|
static |
Runs the given script file as application level action.
◆ autostartScriptName
QString RScriptHandler::autostartScriptName = "autostart" |
|
staticprotected |
Copyright (c) 2011-2018 by Andrew Mustun.
All rights reserved.
This file is part of the QCAD project.
QCAD is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
QCAD 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 General Public License along with QCAD.
The documentation for this class was generated from the following files: