Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Tous les espaces de nom  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QScriptContext Class Reference
[QtScript module]

The QScriptContext class represents a Qt Script function invocation. More...

 #include <QScriptContext>

This class was introduced in Qt 4.3.

Public Types

  • enum Error { ReferenceError, SyntaxError, TypeError, RangeError, URIError, UnknownError }
  • enum ExecutionState { NormalState, ExceptionState }

Public Functions


Detailed Description

The QScriptContext class represents a Qt Script function invocation.

A QScriptContext provides access to the `this' object and arguments passed to a script function. You typically want to access this information when you're writing a native (C++) function (see QScriptEngine::newFunction()) that will be called from script code. For example, when the script code

 foo(20.5, "hello", new Object())

is evaluated, a QScriptContext will be created, and the context will carry the arguments as QScriptValues; in this particular case, the arguments will be one QScriptValue containing the number 20.5, a second QScriptValue containing the string "hello", and a third QScriptValue containing a Qt Script object.

Use argumentCount() to get the number of arguments passed to the function, and argument() to get an argument at a certain index.

Use thisObject() to get the `this' object associated with the function call, and setThisObject() to set the `this' object.

Use isCalledAsConstructor() to determine if the function was called as a constructor (e.g. "new foo()" (as constructor) or just "foo()").

Use throwValue() or throwError() to throw an exception.

Use callee() to obtain the QScriptValue that represents the function being called.

Use parentContext() to get a pointer to the context that precedes this context in the activation stack.

Use engine() to obtain a pointer to the QScriptEngine that this context resides in.

Use backtrace() to get a human-readable backtrace associated with this context. This can be useful for debugging purposes when implementing native functions.

See also QScriptEngine::newFunction() and QScriptable.


Member Type Documentation

enum QScriptContext::Error

This enum specifies types of error.

ConstantValueDescription
QScriptContext::ReferenceError1A reference error.
QScriptContext::SyntaxError2A syntax error.
QScriptContext::TypeError3A type error.
QScriptContext::RangeError4A range error.
QScriptContext::URIError5A URI error.
QScriptContext::UnknownError0An unknown error.

enum QScriptContext::ExecutionState

This enum specifies the execution state of the context.

ConstantValueDescription
QScriptContext::NormalState0The context is in a normal state.
QScriptContext::ExceptionState1The context is in an exceptional state.


Member Function Documentation

QScriptContext::~QScriptContext ()

Destroys this QScriptContext.

QScriptValue QScriptContext::activationObject () const

Returns the activation object of this QScriptContext. The activation object provides access to the local variables associated with this context.

See also setActivationObject(), argument(), and argumentsObject().

QScriptValue QScriptContext::argument ( int index ) const

Returns the function argument at the given index.

If index >= argumentCount(), a QScriptValue of the primitive type Undefined is returned.

See also argumentCount().

int QScriptContext::argumentCount () const

Returns the number of arguments passed to the function in this invocation.

Note that the argument count can be different from the formal number of arguments (the length property of callee()).

See also argument().

QScriptValue QScriptContext::argumentsObject () const

Returns the arguments object of this QScriptContext.

The arguments object has properties callee (equal to callee()) and length (equal to argumentCount()), and properties 0, 1, ..., argumentCount() - 1 that provide access to the argument values. Initially, property P (0 <= P < argumentCount()) has the same value as argument(P). In the case when P is less than the number of formal parameters of the function, P shares its value with the corresponding property of the activation object (activationObject()). This means that changing this property changes the corresponding property of the activation object and vice versa.

See also argument() and activationObject().

QStringList QScriptContext::backtrace () const

Returns a human-readable backtrace of this QScriptContext.

Each line is of the form <function-name>(<arguments>)@<file-name>:<line-number>.

See also QScriptEngine::uncaughtExceptionBacktrace().

QScriptValue QScriptContext::callee () const

Returns the callee. The callee is the function object that this QScriptContext represents an invocation of.

QScriptEngine * QScriptContext::engine () const

Returns the QScriptEngine that this QScriptContext belongs to.

bool QScriptContext::isCalledAsConstructor () const

Returns true if the function was called as a constructor (e.g. "new foo()"); otherwise returns false.

When a function is called as constructor, the thisObject() contains the newly constructed object to be initialized.

QScriptContext * QScriptContext::parentContext () const

Returns the parent context of this QScriptContext.

void QScriptContext::setActivationObject ( const QScriptValue & activation )

Sets the activation object of this QScriptContext to be the given activation.

See also activationObject().

void QScriptContext::setThisObject ( const QScriptValue & thisObject )

Sets the `this' object associated with this QScriptContext to be thisObject.

See also thisObject().

ExecutionState QScriptContext::state () const

Returns the execution state of this QScriptContext.

QScriptValue QScriptContext::thisObject () const

Returns the `this' object associated with this QScriptContext.

See also setThisObject().

QScriptValue QScriptContext::throwError ( Error error, const QString & text )

Throws an error with the given text. Returns the created error object.

The text will be stored in the message property of the error object.

See also throwValue() and state().

QScriptValue QScriptContext::throwError ( const QString & text )

This is an overloaded member function, provided for convenience.

Throws an error with the given text. Returns the created error object.

See also throwValue() and state().

QScriptValue QScriptContext::throwValue ( const QScriptValue & value )

Throws an exception with the given value. Returns the value thrown (the same as the argument).

See also throwError() and state().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 85
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 20
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le Qt Labs au hasard

Logo

La théorie des chaînes

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.3
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web