+ contrib/hbqt/qtscript
+ contrib/hbqt/qtscript/doc
+ contrib/hbqt/qtscript/doc/en
+ contrib/hbqt/qtscript/hbqt_init.cpp
+ contrib/hbqt/qtscript/hbqtscript.ch
+ contrib/hbqt/qtscript/hbqtscript.hbc
+ contrib/hbqt/qtscript/hbqtscript.hbm
+ contrib/hbqt/qtscript/hbqtscript.hbp
+ contrib/hbqt/qtscript/hbqtscript.hbx
+ contrib/hbqt/qtscript/hbqtscripts.hbp
+ contrib/hbqt/qtscript/qth
+ contrib/hbqt/qtscript/qth/filelist.hbm
+ contrib/hbqt/qtscript/qth/QScriptable.qth
+ contrib/hbqt/qtscript/qth/QScriptClass.qth
+ contrib/hbqt/qtscript/qth/QScriptClassPropertyIterator.qth
+ contrib/hbqt/qtscript/qth/QScriptContext.qth
+ contrib/hbqt/qtscript/qth/QScriptContextInfo.qth
+ contrib/hbqt/qtscript/qth/QScriptEngine.qth
+ contrib/hbqt/qtscript/qth/QScriptEngineAgent.qth
+ contrib/hbqt/qtscript/qth/QScriptExtensionPlugin.qth
+ contrib/hbqt/qtscript/qth/QScriptProgram.qth
+ contrib/hbqt/qtscript/qth/QScriptString.qth
+ contrib/hbqt/qtscript/qth/QScriptSyntaxCheckResult.qth
+ contrib/hbqt/qtscript/qth/QScriptValue.qth
+ contrib/hbqt/qtscript/qth/QScriptValueIterator.qth
+ Added: Qt's QtScript Module specific classes.
68 lines
1.3 KiB
Plaintext
68 lines
1.3 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Qt wrapper generator control file
|
|
*
|
|
* Copyright 2009-2012 Pritpal Bedi <bedipritpal@hotmail.com>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* See COPYING for licensing terms.
|
|
*/
|
|
|
|
<CLASS>
|
|
|
|
Inherit =
|
|
QObject =
|
|
Version =
|
|
|
|
</CLASS>
|
|
|
|
|
|
<CODE>
|
|
#include <QtScript/QScriptContext>
|
|
|
|
|
|
/*
|
|
* ~QScriptContext ()
|
|
*/
|
|
HB_FUNC( QT_QSCRIPTCONTEXT )
|
|
{
|
|
}
|
|
</CODE>
|
|
|
|
<ENUMS>
|
|
enum Error { ReferenceError, SyntaxError, TypeError, RangeError, URIError, UnknownError }
|
|
enum ExecutionState { NormalState, ExceptionState }
|
|
</ENUMS>
|
|
|
|
|
|
<PROTOS>
|
|
QScriptValue activationObject () const
|
|
QScriptValue argument ( int index ) const
|
|
int argumentCount () const
|
|
QScriptValue argumentsObject () const
|
|
QStringList backtrace () const
|
|
QScriptValue callee () const
|
|
QScriptEngine * engine () const
|
|
bool isCalledAsConstructor () const
|
|
QScriptContext * parentContext () const
|
|
void setActivationObject ( const QScriptValue & activation )
|
|
void setThisObject ( const QScriptValue & thisObject )
|
|
ExecutionState state () const
|
|
QScriptValue thisObject () const
|
|
QScriptValue throwError ( Error error, const QString & text )
|
|
QScriptValue throwError ( const QString & text )
|
|
QScriptValue throwValue ( const QScriptValue & value )
|
|
QString toString () const
|
|
</PROTOS>
|
|
|
|
|
|
<SLOTS>
|
|
|
|
</SLOTS>
|
|
|
|
<SIGNALS>
|
|
</SIGNALS>
|