Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Labs (experimental) Gesture support. | Warwick Allison | 2010-04-06 | 1 | -1/+2 |
| | | | | By popular demand. | ||||
* | Improve Transform docs. | Martin Jones | 2010-04-01 | 1 | -0/+1 |
| | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-04-01 | 4 | -221/+255 |
|\ | |||||
| * | Make QML 'hello world' tutorial less confusing. | Yann Bodson | 2010-04-01 | 1 | -3/+3 |
| | | | | | | | | Task-number: QTBUG-9384 | ||||
| * | Doc improvements, fixes | Bea Lam | 2010-04-01 | 1 | -172/+241 |
| | | |||||
| * | Remove references to deleted qmldebugger. | Bea Lam | 2010-04-01 | 2 | -46/+11 |
| | | |||||
* | | Add media elements to the QML Elements docs. | Martin Jones | 2010-04-01 | 1 | -9/+12 |
|/ | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-04-01 | 1 | -4/+0 |
|\ | |||||
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-04-01 | 1 | -1/+1 |
| |\ | |||||
| * | | Remove effects from element list. | Martin Jones | 2010-04-01 | 1 | -4/+0 |
| | | | |||||
* | | | import "." first - i.e. override it by everything else. | Warwick Allison | 2010-04-01 | 1 | -2/+4 |
| |/ |/| | | | | | Otherwise, simple things break, like having "image.qml" on a case-insensitive file system. | ||||
* | | doc - fix sellingp | Warwick Allison | 2010-04-01 | 1 | -1/+1 |
|/ | |||||
* | Change and rename qml EaseFollow to SmoothedAnimation | Leonardo Sobral Cunha | 2010-03-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QDeclarativeSmoothedAnimation inherits from QDeclarativeNumberAnimation, as a consequence SmoothedAnimation can be used inside Behaviors and as PropertySourceValues, like any other animation. The old EaseFollow properties changed to comply with the other declarative animations ('source' changed to 'to'), so now 'to' changes are not automatically 'followed' anymore. You can achieve the following behavior by putting a SmoothedAnimation inside a Behavior of a property that is bound to another, as the following example: If you want to follow an hypothetical rect1, you should do now: Rectangle { color: "green" width: 60; height: 60; x: rect1.x - 5; y: rect1.y - 5; Behavior on x { SmoothedAnimation { velocity: 200 } } Behavior on y { SmoothedAnimation { velocity: 200 } } } SmoothedAnimation also supports animating multiple target(s)/property(ies) in the transition case. When a QDeclarativeSmoothedAnimation is restarted, it will match the QDeclarativeProperty which were being animated and transfer the corresponding track velocity to the new starting animations. QSmoothedAnimation is an uncontrolled animation, duration == -1. The duration is set as -1 to avoid consecutive animation state changes stop()/start(). This is particularly useful when using QSmoothAnimation to 'follow' another property, which is also being animated (change the 'to' property every tick). Reviewed-by: Michael Brasser | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-03-29 | 2 | -1/+2 |
|\ | |||||
| * | Doc | Aaron Kennedy | 2010-03-29 | 1 | -1/+1 |
| | | | | | | | | QTBUG-9273 | ||||
| * | Relayout items when Flow size changes. | Martin Jones | 2010-03-29 | 1 | -0/+1 |
| | | | | | | | | | | | | Also add Flow tests. Task-number: QTBUG-9421 | ||||
* | | doc | Warwick Allison | 2010-03-29 | 1 | -4/+70 |
|/ | | | | Task-number: QTBUG-9459 QTBUG-9458 | ||||
* | Doc. | Michael Brasser | 2010-03-29 | 1 | -0/+5 |
| | |||||
* | Doc | Aaron Kennedy | 2010-03-29 | 1 | -2/+1 |
| | |||||
* | Import path detail. | Warwick Allison | 2010-03-29 | 1 | -1/+8 |
| | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-03-29 | 9 | -21/+24 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/examples.qdoc doc/src/declarative/focus.qdoc doc/src/declarative/modules.qdoc doc/src/declarative/network.qdoc doc/src/declarative/qdeclarativedebugging.qdoc doc/src/declarative/qdeclarativei18n.qdoc doc/src/declarative/qmlruntime.qdoc doc/src/declarative/tutorial.qdoc tests/auto/declarative/qdeclarativeimage/tst_qdeclarativeimage.cpp | ||||
| * | Doc fixes | Bea Lam | 2010-03-29 | 1 | -5/+13 |
| | | |||||
| * | Remove references to qmlviewer in docs. | Bea Lam | 2010-03-29 | 8 | -23/+18 |
| | | |||||
| * | Fix doc link | Bea Lam | 2010-03-29 | 1 | -1/+1 |
| | | |||||
* | | doc: qmlviewer -> qml runtime | Warwick Allison | 2010-03-29 | 7 | -18/+18 |
| | | |||||
* | | doc | Warwick Allison | 2010-03-29 | 1 | -130/+66 |
|/ | | | | Clean up structure and remove duplication. | ||||
* | Doc Augmentation | Alan Alpert | 2010-03-26 | 1 | -0/+13 |
| | | | | Task-number: QTBUG-9396 | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-03-26 | 5 | -56/+54 |
|\ | |||||
| * | Document Particles module import. | Martin Jones | 2010-03-26 | 1 | -1/+0 |
| | | |||||
| * | Merge remote branch 'main/4.7' into 4.7 | Morten Johan Sørvig | 2010-03-25 | 11 | -333/+415 |
| |\ | | | | | | | | | | | | | | | | Conflicts: demos/declarative/minehunt/minehunt.cpp src/declarative/qml/qdeclarativecompiler.cpp | ||||
| * | | doc: Fixed all the remaining qdoc errors. For now. | Martin Smith | 2010-03-24 | 4 | -55/+54 |
| | | | |||||
* | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-03-25 | 5 | -247/+299 |
|\ \ \ | | |/ | |/| | |||||
| * | | Qt.Infinite -> Animation.Infinite | Michael Brasser | 2010-03-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops. | ||||
| * | | Replace Animation's repeat property with loops. | Michael Brasser | 2010-03-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | 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. | ||||
| * | | Doc | Aaron Kennedy | 2010-03-24 | 1 | -0/+1 |
| | | | |||||
| * | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Aaron Kennedy | 2010-03-24 | 2 | -0/+91 |
| |\ \ | |||||
| | * | | Document QML security considerations. | Warwick Allison | 2010-03-24 | 2 | -0/+91 |
| | | | | |||||
| * | | | Doc | Aaron Kennedy | 2010-03-24 | 1 | -246/+206 |
| |/ / | |||||
* | | | Add an initial attempt at docs on the new runtime and imports. | Alan Alpert | 2010-03-25 | 3 | -61/+161 |
|/ / | |||||
* | | Remove ParentAction. | Michael Brasser | 2010-03-23 | 1 | -1/+0 |
| | | | | | | | | It has been replaced with ParentAnimation. | ||||
* | | Doc | Aaron Kennedy | 2010-03-23 | 7 | -87/+111 |
| | | |||||
* | | Fix local type lookup | mae | 2010-03-19 | 1 | -0/+7 |
|/ | | | | | | This change removes the hacky final baseUrl+TypeName+".qml" lookup. In order to still support internal files in remote modules, a new qmldir keyword "internal" is introduced. | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-03-16 | 1 | -1/+0 |
|\ | |||||
| * | Doc fixes. | Bea Lam | 2010-03-16 | 1 | -1/+0 |
| | | |||||
* | | Update more animation on property value source docs. | Martin Jones | 2010-03-16 | 2 | -16/+18 |
|/ | |||||
* | Little more doc on QabstractItemModel and QML. | Martin Jones | 2010-03-15 | 1 | -3/+17 |
| | |||||
* | Remove Qt.closestAngle(). | Michael Brasser | 2010-03-12 | 1 | -12/+0 |
| | | | | This functionality is now built in to RotationAnimation. | ||||
* | Add AnchorAnimation for animating AnchorChanges. | Michael Brasser | 2010-03-11 | 1 | -0/+1 |
| | | | | Task-number: QT-2825 | ||||
* | Document - and use - the qmlRegisterXXX template functions | mae | 2010-03-10 | 3 | -31/+83 |
| | | | | This commit removes the obsolete QML_REGISTER_TYPE macros. | ||||
* | Fix typo in docs | Alan Alpert | 2010-03-09 | 1 | -1/+1 |
| | | | | QStringList::appenf is private API, and shouldn't show up in docs. |