Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move basic focusscope examples into auto tests. | Yann Bodson | 2010-03-30 | 8 | -0/+613 |
| | |||||
* | Correctly construct boolean JSValue's | Aaron Kennedy | 2010-03-30 | 2 | -0/+38 |
| | | | | Task-number: QTBUG-9205 | ||||
* | WorkerScript was receiving events after deletion and trying to process | Bea Lam | 2010-03-30 | 1 | -7/+4 |
| | | | | these events. | ||||
* | Make visual tests run on windows | Martin Jones | 2010-03-30 | 1 | -1/+2 |
| | |||||
* | Finished file rename of qdeclarative easefollow to smoothedanimation | Leonardo Sobral Cunha | 2010-03-30 | 17 | -19/+19 |
| | |||||
* | Change and rename qml EaseFollow to SmoothedAnimation | Leonardo Sobral Cunha | 2010-03-30 | 9 | -31/+160 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Fix qdeclarativedom::loadDynamicProperty test | Aaron Kennedy | 2010-03-30 | 1 | -6/+4 |
| | |||||
* | Pass test. | Warwick Allison | 2010-03-29 | 1 | -0/+14 |
| | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-03-29 | 7 | -4/+103 |
|\ | |||||
| * | Visual test fixes. | Michael Brasser | 2010-03-29 | 5 | -4/+4 |
| | | |||||
| * | Relayout items when Flow size changes. | Martin Jones | 2010-03-29 | 2 | -0/+99 |
| | | | | | | | | | | | | Also add Flow tests. Task-number: QTBUG-9421 | ||||
* | | test error code too | Warwick Allison | 2010-03-29 | 1 | -3/+5 |
|/ | |||||
* | Remove "variant" QML properties | Aaron Kennedy | 2010-03-29 | 2 | -2/+0 |
| | | | | "property var a" works just as well | ||||
* | Fix crash in QDeclarativePropertyMap. | Michael Brasser | 2010-03-29 | 1 | -0/+16 |
| | | | | Task-number: QTBUG-9439 | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-03-29 | 2 | -1/+10 |
|\ | |||||
| * | Add missing pro file. | Michael Brasser | 2010-03-29 | 1 | -0/+7 |
| | | |||||
| * | Don't emit QDeclarativePropertyMap::valueChanged() before the value has | Michael Brasser | 2010-03-29 | 1 | -1/+3 |
| | | | | | | | | | | | | changed. Task-number: QTBUG-9386 | ||||
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-03-29 | 690 | -238/+387 |
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | Fix svg and big image auto tests on win32. | Martin Jones | 2010-03-29 | 3 | -2/+8 |
| | | |||||
| * | Run a subset of 'stable' visual tests. | Michael Brasser | 2010-03-28 | 2 | -3/+12 |
| | | |||||
| * | Rename visual test to qmlvisual. | Michael Brasser | 2010-03-28 | 676 | -24/+17 |
| | | |||||
| * | Syntax and other small fixes for the visual tests. | Michael Brasser | 2010-03-28 | 21 | -177/+192 |
| | | |||||
| * | Autotest tweaks. | Michael Brasser | 2010-03-28 | 5 | -2/+45 |
| | | |||||
| * | Don't set status to Ready until model has been created (currently this | Bea Lam | 2010-03-28 | 1 | -11/+86 |
| | | | | | | | | | | | | | | | | | | | | is set as soon as XML data is downloaded, so there is no notification when model is actually ready to be used). This also fixes data() to not crash if it is called before the model is ready. Task-number: QTBUG-7835 | ||||
| * | Fix qdeclarativeimage autotest on the mac. | Yann Bodson | 2010-03-28 | 3 | -2/+9 |
| | | |||||
* | | doc | Warwick Allison | 2010-03-28 | 1 | -0/+3 |
|/ | |||||
* | QTBUG-9367 has been fixed. Expect pass. | Warwick Allison | 2010-03-28 | 1 | -1/+0 |
| | |||||
* | Source resizing for QDeclarativeImageProvider too. | Warwick Allison | 2010-03-28 | 1 | -10/+20 |
| | | | | (fixes test too) | ||||
* | Installed imports are no longer searched relative to caller. | Warwick Allison | 2010-03-28 | 1 | -0/+1 |
| | | | | (quoted URL is for that) | ||||
* | Recompute the source location of regexp literals. | Roberto Raggi | 2010-03-26 | 1 | -1/+1 |
| | | | | Task-number: QTBUG-9367 | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-03-26 | 5 | -12/+16 |
|\ | |||||
| * | Added highlight ranges/modes to PathView | Martin Jones | 2010-03-26 | 5 | -12/+16 |
| | | | | | | | | Task-number: QT-319 | ||||
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-03-26 | 14 | -17/+209 |
|\ \ | |/ | |||||
| * | Test and fix order of transform application. | Warwick Allison | 2010-03-26 | 1 | -4/+10 |
| | | | | | | | | Remove Translate.z since Qt cannot sensibly support it yet. | ||||
| * | Test transforms. | Warwick Allison | 2010-03-26 | 1 | -0/+21 |
| | | |||||
| * | sourceWidth/sourceHeight -> sourceSize | Warwick Allison | 2010-03-26 | 1 | -4/+3 |
| | | |||||
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Warwick Allison | 2010-03-26 | 6 | -8/+27 |
| |\ | |||||
| | * | Update test. | Michael Brasser | 2010-03-26 | 1 | -3/+1 |
| | | | |||||
| | * | Add autotest for QTBUG-9367. | Michael Brasser | 2010-03-26 | 3 | -0/+23 |
| | | | |||||
| | * | Remove Q prefix from the validators. | Michael Brasser | 2010-03-26 | 2 | -5/+3 |
| | | | |||||
| * | | Control of image rendered size (esp. SVG). | Warwick Allison | 2010-03-26 | 6 | -8/+112 |
| |/ | | | | | | | | | | | | | Add Translate transform. Image::sourceWidth and Image::sourceHeight read/write properties. Task-number: QTBUG-8984 | ||||
| * | Fix where data() is called before xml is loaded. Also add status tests. | Bea Lam | 2010-03-25 | 1 | -0/+43 |
| | | |||||
| * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt into 4.7 | Martin Jones | 2010-03-25 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | Conflicts: src/declarative/graphicsitems/qdeclarativeitem.cpp | ||||
| | * | Use QTRY_COMPARE after QTest::qWaitForWindowShown() | Kent Hansen | 2010-03-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Apparently it's possible that the window has been shown but haven't received a paint event yet. | ||||
* | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-03-25 | 41 | -113/+217 |
|\ \ \ | |/ / | |||||
| * | | Begin dragging PathView up to the level (quality and functionality) of other ↵ | Martin Jones | 2010-03-25 | 3 | -7/+22 |
| | | | | | | | | | | | | | | | | | | views. Task-number: QT-319 | ||||
| * | | Auto-test fix. | Alexis Menard | 2010-03-25 | 1 | -8/+2 |
| | | | | | | | | | | | | | | | | | | Also fix a connect in QDeclarativeItem. Reviewed-by:TrustMe | ||||
| * | | Update AnchorChanges to use more natural form for setting anchors. | Michael Brasser | 2010-03-25 | 7 | -38/+39 |
| |/ | | | | | | | | | | | | | 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). | ||||
| * | Qt.Infinite -> Animation.Infinite | Michael Brasser | 2010-03-25 | 17 | -18/+18 |
| | | | | | | | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops. | ||||
| * | Skip tests for now | Bea Lam | 2010-03-25 | 1 | -0/+4 |
| | |