mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
32 lines
1018 B
Plaintext
32 lines
1018 B
Plaintext
class QgsPythonRunner
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgspythonrunner.h>
|
|
%End
|
|
public:
|
|
|
|
/** Returns true if the runner has an instance
|
|
(and thus is able to run commands) */
|
|
static bool isValid();
|
|
|
|
/** Execute a python statement */
|
|
static bool run( const QString& command, const QString& messageOnError = QString() );
|
|
|
|
/** Eval a python statement */
|
|
static bool eval( const QString& command, QString& result /Out/ );
|
|
|
|
/** Assign an instance of python runner so that run() can be used.
|
|
This method should be called during app initialization.
|
|
Takes ownership of the object, deletes previous instance. */
|
|
static void setInstance( QgsPythonRunner* runner /Transfer/ );
|
|
|
|
protected:
|
|
/** Protected constructor: can be instantiated only from children */
|
|
QgsPythonRunner();
|
|
virtual ~QgsPythonRunner();
|
|
|
|
virtual bool runCommand( QString command, QString messageOnError = QString() ) = 0;
|
|
|
|
virtual bool evalCommand( QString command, QString& result ) = 0;
|
|
};
|