diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-04-07 23:48:43 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-04-07 23:53:58 (GMT) |
commit | 2c40b2faac1d9bd941310c0c0e1e0d0fa0033ab5 (patch) | |
tree | e7e9f82288943be858f0a205deafe814324c1f15 | |
parent | 7f1eac149d76f33770f54b20fe7cd27a4e4b09d4 (diff) | |
download | Qt-2c40b2faac1d9bd941310c0c0e1e0d0fa0033ab5.zip Qt-2c40b2faac1d9bd941310c0c0e1e0d0fa0033ab5.tar.gz Qt-2c40b2faac1d9bd941310c0c0e1e0d0fa0033ab5.tar.bz2 |
Update Repeater docs.
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativerepeater.cpp | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativerepeater.cpp b/src/declarative/graphicsitems/qdeclarativerepeater.cpp index e836788..95f6276 100644 --- a/src/declarative/graphicsitems/qdeclarativerepeater.cpp +++ b/src/declarative/graphicsitems/qdeclarativerepeater.cpp @@ -62,10 +62,10 @@ QDeclarativeRepeaterPrivate::~QDeclarativeRepeaterPrivate() /*! \qmlclass Repeater QDeclarativeRepeater - \since 4.7 + \since 4.7 \inherits Item - \brief The Repeater item allows you to repeat a component based on a model. + \brief The Repeater item allows you to repeat an Item-based component using a model. The Repeater item is used when you want to create a large number of similar items. For each entry in the model, an item is instantiated @@ -102,15 +102,24 @@ QDeclarativeRepeaterPrivate::~QDeclarativeRepeaterPrivate() The repeater instance continues to own all items it instantiates, even if they are otherwise manipulated. It is illegal to manually remove an item created by the Repeater. + + \note Repeater is Item-based, and cannot be used to repeat non-Item-derived objects. + For example, it cannot be used to repeat QtObjects. + \badcode + Item { + //XXX illegal. Can't repeat QtObject as it doesn't derive from Item. + Repeater { + model: 10 + QtObject {} + } + } + \endcode */ /*! \internal \class QDeclarativeRepeater \qmlclass Repeater - - XXX Repeater is very conservative in how it instatiates/deletes items. Also - new model entries will not be created and old ones will not be removed. */ /*! |