summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative
Commit message (Collapse)AuthorAgeFilesLines
* Labs (experimental) Gesture support.Warwick Allison2010-04-061-1/+2
| | | | By popular demand.
* Improve Transform docs.Martin Jones2010-04-011-0/+1
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-014-221/+255
|\
| * Make QML 'hello world' tutorial less confusing.Yann Bodson2010-04-011-3/+3
| | | | | | | | Task-number: QTBUG-9384
| * Doc improvements, fixesBea Lam2010-04-011-172/+241
| |
| * Remove references to deleted qmldebugger.Bea Lam2010-04-012-46/+11
| |
* | Add media elements to the QML Elements docs.Martin Jones2010-04-011-9/+12
|/
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-011-4/+0
|\
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-011-1/+1
| |\
| * | Remove effects from element list.Martin Jones2010-04-011-4/+0
| | |
* | | import "." first - i.e. override it by everything else.Warwick Allison2010-04-011-2/+4
| |/ |/| | | | | Otherwise, simple things break, like having "image.qml" on a case-insensitive file system.
* | doc - fix sellingpWarwick Allison2010-04-011-1/+1
|/
* Change and rename qml EaseFollow to SmoothedAnimationLeonardo Sobral Cunha2010-03-301-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.7Warwick Allison2010-03-292-1/+2
|\
| * DocAaron Kennedy2010-03-291-1/+1
| | | | | | | | QTBUG-9273
| * Relayout items when Flow size changes.Martin Jones2010-03-291-0/+1
| | | | | | | | | | | | Also add Flow tests. Task-number: QTBUG-9421
* | docWarwick Allison2010-03-291-4/+70
|/ | | | Task-number: QTBUG-9459 QTBUG-9458
* Doc.Michael Brasser2010-03-291-0/+5
|
* DocAaron Kennedy2010-03-291-2/+1
|
* Import path detail.Warwick Allison2010-03-291-1/+8
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-03-299-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 fixesBea Lam2010-03-291-5/+13
| |
| * Remove references to qmlviewer in docs.Bea Lam2010-03-298-23/+18
| |
| * Fix doc linkBea Lam2010-03-291-1/+1
| |
* | doc: qmlviewer -> qml runtimeWarwick Allison2010-03-297-18/+18
| |
* | docWarwick Allison2010-03-291-130/+66
|/ | | | Clean up structure and remove duplication.
* Doc AugmentationAlan Alpert2010-03-261-0/+13
| | | | Task-number: QTBUG-9396
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-03-265-56/+54
|\
| * Document Particles module import.Martin Jones2010-03-261-1/+0
| |
| * Merge remote branch 'main/4.7' into 4.7Morten Johan Sørvig2010-03-2511-333/+415
| |\ | | | | | | | | | | | | | | | Conflicts: demos/declarative/minehunt/minehunt.cpp src/declarative/qml/qdeclarativecompiler.cpp
| * | doc: Fixed all the remaining qdoc errors. For now.Martin Smith2010-03-244-55/+54
| | |
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-03-255-247/+299
|\ \ \ | | |/ | |/|
| * | Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-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 Brasser2010-03-251-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.
| * | DocAaron Kennedy2010-03-241-0/+1
| | |
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-03-242-0/+91
| |\ \
| | * | Document QML security considerations.Warwick Allison2010-03-242-0/+91
| | | |
| * | | DocAaron Kennedy2010-03-241-246/+206
| |/ /
* | | Add an initial attempt at docs on the new runtime and imports.Alan Alpert2010-03-253-61/+161
|/ /
* | Remove ParentAction.Michael Brasser2010-03-231-1/+0
| | | | | | | | It has been replaced with ParentAnimation.
* | DocAaron Kennedy2010-03-237-87/+111
| |
* | Fix local type lookupmae2010-03-191-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.7Martin Jones2010-03-161-1/+0
|\
| * Doc fixes.Bea Lam2010-03-161-1/+0
| |
* | Update more animation on property value source docs.Martin Jones2010-03-162-16/+18
|/
* Little more doc on QabstractItemModel and QML.Martin Jones2010-03-151-3/+17
|
* Remove Qt.closestAngle().Michael Brasser2010-03-121-12/+0
| | | | This functionality is now built in to RotationAnimation.
* Add AnchorAnimation for animating AnchorChanges.Michael Brasser2010-03-111-0/+1
| | | | Task-number: QT-2825
* Document - and use - the qmlRegisterXXX template functionsmae2010-03-103-31/+83
| | | | This commit removes the obsolete QML_REGISTER_TYPE macros.
* Fix typo in docsAlan Alpert2010-03-091-1/+1
| | | | QStringList::appenf is private API, and shouldn't show up in docs.