The QDeclarativeListReference class allows the manipulation of QDeclarativeListProperty properties. More...
#include <QDeclarativeListReference>
This class was introduced in Qt 4.7.
QDeclarativeListReference () | |
QDeclarativeListReference ( QObject * object, const char * property, QDeclarativeEngine * engine = 0 ) | |
bool | append ( QObject * object ) const |
QObject * | at ( int index ) const |
bool | canAppend () const |
bool | canAt () const |
bool | canClear () const |
bool | canCount () const |
bool | clear () const |
int | count () const |
bool | isValid () const |
const QMetaObject * | listElementType () const |
QObject * | object () const |
The QDeclarativeListReference class allows the manipulation of QDeclarativeListProperty properties.
QDeclarativeListReference allows C++ programs to read from, and assign values to a QML list property in a simple and type safe way. A QDeclarativeListReference can be created by passing an object and property name or through a QDeclarativeProperty instance. These two are equivalant:
QDeclarativeListReference ref1(object, "children"); QDeclarativeProperty ref2(object, "children"); QDeclarativeListReference ref2 = qvariant_cast<QDeclarativeListReference>(ref2.read());
Not all QML list properties support all operations. A set of methods, canAppend(), canAt(), canClear() and canCount() allow programs to query whether an operation is supported on a given property.
QML list properties are typesafe. Only QObject's that derive from the correct base class can be assigned to the list. The listElementType() method can be used to query the QMetaObject of the QObject type supported. Attempting to add objects of the incorrect type to a list property will fail.
Like with normal lists, when accessing a list element by index, it is the callers responsibility to ensure that it does not request an out of range element using the count() method before calling at().
Constructs an invalid instance.
Constructs a QDeclarativeListReference for object's property. If property is not a list property, an invalid QDeclarativeListReference is created. If object is destroyed after the reference is constructed, it will automatically become invalid. That is, it is safe to hold QDeclarativeListReference instances even after object is deleted.
Passing engine is required to access some QML created list properties. If in doubt, and an engine is available, pass it.
Appends object to the list. Returns true if the operation succeeded, otherwise false.
See also canAppend().
Returns the list element at index, or 0 if the operation failed.
See also canAt().
Returns true if the list property can be appended to, otherwise false. Returns false if the reference is invalid.
See also append().
Returns true if the list property can queried by index, otherwise false. Returns false if the reference is invalid.
See also at().
Returns true if the list property can be cleared, otherwise false. Returns false if the reference is invalid.
See also clear().
Returns true if the list property can be queried for its element count, otherwise false. Returns false if the reference is invalid.
See also count().
Clears the list. Returns true if the operation succeeded, otherwise false.
See also canClear().
Returns the number of objects in the list, or 0 if the operation failed.
Returns true if the instance refers to a valid list property, otherwise false.
Returns the QMetaObject for the elements stored in the list property. Returns 0 if the reference is invalid.
The QMetaObject can be used ahead of time to determine whether a given instance can be added to a list.
Returns the list property's object. Returns 0 if the reference is invalid.
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.