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  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QQmlScriptString Class

The QQmlScriptString class encapsulates a script and its context. More...

 #include <QQmlScriptString>

This class was introduced in Qt 4.7.

Public Functions

QQmlScriptString()
QQmlScriptString(const QQmlScriptString & other)
QQmlContext * context() const
QObject * scopeObject() const
QString script() const
void setContext(QQmlContext * context)
void setScopeObject(QObject * object)
void setScript(const QString & script)
QQmlScriptString & operator=(const QQmlScriptString & other)

Detailed Description

The QQmlScriptString class encapsulates a script and its context.

QQmlScriptString is used to create QObject properties that accept a script "assignment" from QML.

Normally, the following QML would result in a binding being established for the script property; i.e. script would be assigned the value obtained from running myObj.value = Math.max(myValue, 100)

 MyType {
     script: myObj.value = Math.max(myValue, 100)
 }

If instead the property had a type of QQmlScriptString, the script itself -- myObj.value = Math.max(myValue, 100) -- would be passed to the script property and the class could choose how to handle it. Typically, the class will evaluate the script at some later time using a QQmlExpression.

 QQmlExpression expr(scriptString);
 expr.evaluate();

See also QQmlExpression.

Member Function Documentation

QQmlScriptString::QQmlScriptString()

Constructs an empty instance.

QQmlScriptString::QQmlScriptString(const QQmlScriptString & other)

Copies other.

QQmlContext * QQmlScriptString::context() const

Returns the context for the script.

See also setContext().

QObject * QQmlScriptString::scopeObject() const

Returns the scope object for the script.

See also setScopeObject().

QString QQmlScriptString::script() const

Returns the script text.

See also setScript().

void QQmlScriptString::setContext(QQmlContext * context)

Sets the context for the script.

See also context().

void QQmlScriptString::setScopeObject(QObject * object)

Sets the scope object for the script.

See also scopeObject().

void QQmlScriptString::setScript(const QString & script)

Sets the script text.

See also script().

QQmlScriptString & QQmlScriptString::operator=(const QQmlScriptString & other)

Assigns other to this.

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 5.0-snapshot
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