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  · 

QQmlListProperty Class

The QQmlListProperty class allows applications to expose list-like properties to QML. More...

 #include <QQmlListProperty>

This class was introduced in Qt 5.0.

Public Types

typedef AppendFunction
typedef AtFunction
typedef ClearFunction
typedef CountFunction

Public Functions

QQmlListProperty(QObject * object, QList<T *> & list)
QQmlListProperty(QObject * object, void * data, AppendFunction append, CountFunction count = 0, AtFunction at = 0, ClearFunction clear = 0)
bool operator==(const QQmlListProperty & other) const

Detailed Description

The QQmlListProperty class allows applications to expose list-like properties to QML.

QML has many list properties, where more than one object value can be assigned. The use of a list property from QML looks like this:

 FruitBasket {
     fruit: [
         Apple {},
         Orange{},
         Banana{}
     ]
 }

The QQmlListProperty encapsulates a group of function pointers that represet the set of actions QML can perform on the list - adding items, retrieving items and clearing the list. In the future, additional operations may be supported. All list properties must implement the append operation, but the rest are optional.

To provide a list property, a C++ class must implement the operation callbacks, and then return an appropriate QQmlListProperty value from the property getter. List properties should have no setter. In the example above, the Q_PROPERTY() declarative will look like this:

 Q_PROPERTY(QQmlListProperty<Fruit> fruit READ fruit);

QML list properties are typesafe - in this case Fruit is a QObject type that Apple, Orange and Banana all derive from.

The QtQuick 1 version of this class is named QDeclarativeListProperty.

Note: QQmlListProperty can only be used for lists of QObject-derived object pointers.

See also Object and List Property Types.

Member Type Documentation

typedef QQmlListProperty::AppendFunction

Synonym for void (*)(QQmlListProperty<T> *property, T *value).

Append the value to the list property.

typedef QQmlListProperty::AtFunction

Synonym for T *(*)(QQmlListProperty<T> *property, int index).

Return the element at position index in the list property.

typedef QQmlListProperty::ClearFunction

Synonym for void (*)(QQmlListProperty<T> *property).

Clear the list property.

typedef QQmlListProperty::CountFunction

Synonym for int (*)(QQmlListProperty<T> *property).

Return the number of elements in the list property.

Member Function Documentation

QQmlListProperty::QQmlListProperty(QObject * object, QList<T *> & list)

Convenience constructor for making a QQmlListProperty value from an existing QList list. The list reference must remain valid for as long as object exists. object must be provided.

Generally this constructor should not be used in production code, as a writable QList violates QML's memory management rules. However, this constructor can very useful while prototyping.

QQmlListProperty::QQmlListProperty(QObject * object, void * data, AppendFunction append, CountFunction count = 0, AtFunction at = 0, ClearFunction clear = 0)

Construct a QQmlListProperty from a set of operation functions. An opaque data handle may be passed which can be accessed from within the operation functions. The list property remains valid while object exists.

The append operation is compulsory and must be provided, while the count, at and clear methods are optional.

bool QQmlListProperty::operator==(const QQmlListProperty & other) const

Returns true if this QQmlListProperty is equal to other, otherwise false.

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