summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativevisualitemmodel.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
| * qdoc fixesYann Bodson2010-05-061-1/+1
| |
* | Avoid warnings as delegates with bindings to parent are created and destroyed.Martin Jones2010-05-061-0/+8
|/ | | | Task-number: QTBUG-10359
* QList<QObject*> models now update their properties when they change.Martin Jones2010-05-051-2/+6
| | | | Task-number: QTBUG-10348
* When a model delegate is released, remove it from the scene immediately.Martin Jones2010-04-301-4/+3
| | | | Task-number: QTBUG-10289
* Don't "adjust" the z value of a delegate that has been cached.Martin Jones2010-04-271-6/+24
| | | | Task-number: QTBUG-10131
* Rename QDeclarativeExpression::value() to evaluate().Michael Brasser2010-04-221-3/+3
| | | | | QDeclarativeExpression can be used to evaluate any sort of expression, not just those returning a value.
* Add hasModelChildren property to delegates with QAbstractItemModel model type.Martin Jones2010-04-211-36/+65
| | | | | | | | 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
* Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-191-1/+1
| | | | QTBUG-9726
* Improve warning for non-Item delegates.Martin Jones2010-04-161-2/+12
| | | | Task-number: QTBUG-9682
* Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeDataAaron Kennedy2010-04-151-2/+2
|
* Reduce warnings at shutdownAaron Kennedy2010-04-141-1/+1
| | | | | | QTBUG-9799 Reviewed-by: Alexis Menard
* Improve efficiency of model dataChanged.Martin Jones2010-04-131-7/+8
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* Revert "Add QListModelInterface::modelReset() signal and emit this in"Bea Lam2010-04-081-2/+0
| | | | | | | | | | | This reverts commit 973cfce37fcdd1ce330f237eaa76930db55a73f6. Need more consideration before adding modelReset(). For example if item insertion/removal is supposed to trigger animations through added/removed signals, they won't be triggered if only the modelReset() signal is emitted. Also if we add modelReset(), it should also be implemented for ListModel to make sure it is implemented by all subclasses of QListModelInterface and to test the impact of this on the view classes.
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-071-0/+2
|\
| * Add QListModelInterface::modelReset() signal and emit this inBea Lam2010-04-071-0/+2
| | | | | | | | XmlListModel when all data has changed.
* | Keep track of the item count to avoid calling model->count() during batched ↵Martin Jones2010-04-071-0/+4
|/ | | | changes
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-1/+1
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Don't crash if an out of bounds model index is accessed.Martin Jones2010-03-191-0/+2
| | | | Task-number: QTBUG-9184
* Replace QDeclarativeContext::addDefaultObject() -> setContextObject()Aaron Kennedy2010-03-111-3/+3
| | | | It is faster and easier to use to just support a single context object.
* clearFocus() before setParentItem(0) on an item with focus.Martin Jones2010-03-081-0/+2
|
* More renaming: MouseRegion -> MouseAreaYann Bodson2010-03-031-5/+5
|
* Add accessor operations to VisualItemModel::childrenAaron Kennedy2010-03-021-1/+10
|
* Fix warning.Michael Brasser2010-03-021-1/+0
|
* Minor optimization.Michael Brasser2010-03-021-2/+3
|
* Use setOpacity(0.) rather than setVisible() to avoid positioner relayout.Martin Jones2010-03-011-1/+1
|
* Document PackageMartin Jones2010-02-251-0/+27
|
* React to QAbstractItemModel::modelReset() signal.Martin Jones2010-02-251-0/+8
| | | | Task-number: QTBUG-8494
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+1256
QDeclarativeXXX.