summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativevisualitemmodel_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* Update sections if model content changes.Martin Jones2010-10-121-0/+4
| | | | | | | | We didn't handle the section property changing, e.g. due to asynchronous model. Task-number: QT-4093 Reviewed-by: Aaron Kennedy
* Improve test coverage for declarative module.Michael Brasser2010-10-041-2/+1
| | | | Add additional autotests, and remove unreachable functions.
* Handle layoutChanged() properly in QML views.Martin Jones2010-08-261-0/+1
| | | | | | Update all visible items when layoutChanged() is emitted. Task-number: QTBUG-13146
* QDeclarativeVisualItemModel code cleanup.Michael Brasser2010-08-241-3/+0
| | | | | | | Remove unused function. Set abstract item model to 0 after disconnecting, in line with the other model types. Reviewed-by: Martin Jones
* Don't export declarative private classesMartin Jones2010-07-011-3/+3
| | | | | Those required by creator are still exported. Everything else is no longer exported.
* Remove 'XXX Experimental' from VisualItemModel/VisualDataModel andBea Lam2010-06-101-5/+0
| | | | Package
* Don't store the role-property map for each individual item.Martin Jones2010-05-111-3/+3
| | | | | | | | C++ models share a single metaobject type, so we don't need to create role-property mappings for each individual item. Also warn on attempt to modify a role that the model is unaware of (part of QTBUG-10457)
* Don't "adjust" the z value of a delegate that has been cached.Martin Jones2010-04-271-0/+3
| | | | Task-number: QTBUG-10131
* Add hasModelChildren property to delegates with QAbstractItemModel model type.Martin Jones2010-04-211-3/+6
| | | | | | | | Also add some helper function to VisualDataModel: - VisualDataModel::modelIndex(int) returns a QModelIndex which can be assigned to VisualDataModel::rootIndex - VisualDataModel::parentModelIndex() returns a QModelIndex which can be assigned to VisualDataModel::rootIndex
* React to QAbstractItemModel::modelReset() signal.Martin Jones2010-02-251-0/+2
| | | | Task-number: QTBUG-8494
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+253
QDeclarativeXXX.