summaryrefslogtreecommitdiffstats
path: root/src/declarative
Commit message (Collapse)AuthorAgeFilesLines
* Optimize QML "parent" property accessAaron Kennedy2010-03-254-16/+91
| | | | | For properties that are as important as "parent", QML cannot afford the overhead of a signal/slot connection.
* Begin dragging PathView up to the level (quality and functionality) of other ↵Martin Jones2010-03-253-302/+389
| | | | | | views. Task-number: QT-319
* Auto-test fix.Alexis Menard2010-03-251-2/+2
| | | | | | Also fix a connect in QDeclarativeItem. Reviewed-by:TrustMe
* Build Fix and port to new width and height propertiesAlexis Menard2010-03-255-8/+8
| | | | Reviewed-by:Martin Jones
* Port Flickable and Flipable to support QGraphicsObject.Alexis Menard2010-03-254-20/+21
| | | | | | Replacing QDeclarativeItem* members by QGraphicsObject*. Build fix too. Reviewed-by:akennedy
* Protect the QDeclarativeListProperty used in QGraphicsItem with ifdefAlexis Menard2010-03-251-0/+4
| | | | | | Then it fixes the build Reviewed-by:TrustMe
* Fix the build due to new properties in QGraphicsObject.Alexis Menard2010-03-252-6/+5
| | | | Reviewed-by:Martin Jones
* Remove the children property from QDeclarativeItem.Alexis Menard2010-03-253-113/+93
| | | | | | | | | This commit remove the children property from QDeclarativeItem because it's now in QGraphicsObject. This commit also get rid of width and height properties to use the one in QGraphicsObject. Task-number:QT-2757 Reviewed-by:akennedy
* Update AnchorChanges to use more natural form for setting anchors.Michael Brasser2010-03-254-192/+408
| | | | | | | Instead of specifying left, right, etc directly, we keep the regular syntax and specify anchors.left, anchors.right, etc. Also get rid of the hacky "reset" string property and use undefined to reset (like PropertyChanges).
* Pen is not a creatable type.Michael Brasser2010-03-251-1/+1
|
* Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-257-12/+48
| | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops.
* Doc fix.Michael Brasser2010-03-253-3/+3
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-03-2510-38/+81
|\
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-03-257-34/+50
| |\
| | * Replace Animation's repeat property with loops.Michael Brasser2010-03-257-34/+50
| | | | | | | | | | | | | | | You can now loop a fixed number of times as well as forever. The old repeat behavior (loop forever) can be acheived with loops: Qt.Infinite.
| * | Ensure currentIndex is updated when items inserted before currentIndexMartin Jones2010-03-252-4/+30
| | | | | | | | | | | | | | | | | | Was occurring when items inserted but no items had been created yet. Task-number: QTBUG-9313
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-03-243-2/+12
| |\ \
| * | | Compile with qtnamespaceMartin Jones2010-03-241-1/+2
| | | |
* | | | Remove faulty assert - the precondition is checked for correctly later onAaron Kennedy2010-03-251-2/+1
| |_|/ |/| | | | | | | | Task-number: QTBUG-9336
* | | Fix compile in namespace.Michael Brasser2010-03-241-2/+2
| |/ |/|
* | Merge remote branch 'origin/4.7' into HEADThiago Macieira2010-03-242-2/+2
|\ \ | | | | | | | | | | | | Conflicts: src/declarative/qml/qdeclarativecompiler.cpp
| * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-03-233-3/+3
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Fix warnings in the declarative module compile fix for mingw (also removes some warnings) Sort indicators displayed incorrectly in GTK style
| | * | Fix warnings in the declarative moduleThierry Bastian2010-03-233-3/+3
| | | |
| * | | This file does not existThomas Zander2010-03-221-2/+1
| |/ /
* | | Disallow the implicit QDeclarativeGuardedContextData copy constructorAaron Kennedy2010-03-241-0/+10
| |/ |/| | | | | Task-number: QTBUG-9312
* | Fix leak.Michael Brasser2010-03-241-1/+2
| |
* | StateChangeScript doc.Michael Brasser2010-03-241-2/+24
| |
* | A StateChangeScript should never be run when leaving the state.Michael Brasser2010-03-242-5/+11
| | | | | | | | | | For a Transition running in reverse, stop ScriptAction from running any StateSchageScripts.
* | ScriptAction doc.Michael Brasser2010-03-241-0/+31
| |
* | Rename stateChangeScriptName to scriptName.Michael Brasser2010-03-243-3/+4
| |
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-03-2414-115/+185
|\ \
| * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-03-2411-92/+175
| |\ \
| | * | Fix abort in flipableLeonardo Sobral Cunha2010-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Flipable was calling updateSceneTransformFromParent, but this can only called when the the parent's scene transform is guaranteed to be updated, which is not the case in flipable. Task-number: QTBUG-8474 Reviewed-by: bnilsen
| | * | Add object ids to the metadata provided in debugger classes.Bea Lam2010-03-248-8/+52
| | | |
| | * | Properly use one thread for all instances of XmlListModel.Bea Lam2010-03-242-83/+122
| | | | | | | | | | | | | | | | Task-number: QT-2831
| * | | Revert 95aa8c8fc76e2309a629b05994a2677b0887140b.Warwick Allison2010-03-246-55/+0
| |/ /
| * | Make compile.Michael Brasser2010-03-241-1/+1
| | |
| * | Output all Loader errors.Michael Brasser2010-03-241-0/+2
| | | | | | | | | | | | | | | Previously we were not outputting those that occurred on component->create().
| * | Fix Loader leak when loading a non-QGraphicsObject object.Michael Brasser2010-03-241-1/+5
| | |
| * | Use setParent_NoEvent in Loader and benchmark Loader performance.Michael Brasser2010-03-241-2/+3
| | |
| * | Animation construction optimization.Michael Brasser2010-03-241-1/+1
| | | | | | | | | | | | Use setParent_NoEvent when parenting to group.
| * | Origin safety testing for imported resources.Warwick Allison2010-03-245-13/+48
| | | | | | | | | | | | | | | Extends upon 95aa8c8fc76e2309a629b05994a2677b0887140b. Still under discussion.
* | | Fix flicking views at boundary with StricthighlighRangeMartin Jones2010-03-242-37/+49
| | | | | | | | | | | | Task-number: QTBUG-9256
* | | Doc: ids start with lowercaseMartin Jones2010-03-241-9/+9
|/ /
* | Fix warning.Michael Brasser2010-03-231-1/+1
| |
* | Changing the alignment property should trigger a repaint.Alexis Menard2010-03-231-0/+1
| | | | | | | | | | | | | | Just clear the cache when the property changes. Task-number:QTBUG-8155 Reviewed-by:Yann Bodson
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-03-239-272/+58
|\ \
| * | Change default RotationAnimation direction.Michael Brasser2010-03-232-7/+8
| | | | | | | | | | | | | | | | | | Shortest as default too often led to unintuitive behavior. For example, RotationAnimation { from: 0; to: 360 } will not animate at all. Numerical gives the least surprising results.
| * | Add missing NOTIFYs.Michael Brasser2010-03-234-7/+41
| | | | | | | | | | | | Task-number: QTBUG-8816
| * | Remove ParentAction.Michael Brasser2010-03-236-256/+7
| | | | | | | | | | | | It has been replaced with ParentAnimation.