Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ResizeMode support for QGraphicsWidgets created with QDeclarativeView | Joona Petrell | 2010-04-16 | 1 | -0/+1 |
| | | | | | Task-number: QTBUG-8814 Reviewed-by: alexis | ||||
* | Rename "sql" test so autotester doesn't get confused. | Warwick Allison | 2010-04-15 | 1 | -1/+1 |
| | |||||
* | Add running of examples to quality gate. | Warwick Allison | 2010-04-08 | 1 | -1/+2 |
| | | | | Fix broken examples too. | ||||
* | Add SmoothedFollow element to qml | Leonardo Sobral Cunha | 2010-04-08 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | The SmoothedFollow is the same as the old EaseFollow, so it's not an animation, but its main use case is to be used as a property value source to automatically follow the 'to' property, as in the example below. Rectangle { color: "green" width: 60; height: 60; SmoothedFollow on x { to: rect1.x - 5; velocity: 200 } SmoothedFollow on y { to: rect1.y - 5; velocity: 200 } } This element shares the internal implementation with SmoothedAnimation, both providing the same easing function, but with SmoothedFollow it's easier to set a start value to animate intially and then start to follow, while SmoothedAnimation is still convenient for using inside Behaviors and Transitions. Reviewed-by: Michael Brasser | ||||
* | Move basic focusscope examples into auto tests. | Yann Bodson | 2010-03-30 | 1 | -0/+1 |
| | |||||
* | Finished file rename of qdeclarative easefollow to smoothedanimation | Leonardo Sobral Cunha | 2010-03-30 | 1 | -1/+1 |
| | |||||
* | Run a subset of 'stable' visual tests. | Michael Brasser | 2010-03-28 | 1 | -1/+2 |
| | |||||
* | Fixed inconsistent test naming. | Rohan McGovern | 2010-03-22 | 1 | -1/+1 |
| | | | | TARGET and test class name should always match. | ||||
* | Remove test in .pro file also | Alan Alpert | 2010-03-16 | 1 | -1/+0 |
| | |||||
* | Remove NumberFormatter and DateTimeFormatter. | Michael Brasser | 2010-03-05 | 1 | -2/+0 |
| | | | | | | | Functions have been added to QML's global Qt object for date/time formatting. Number formatting will not be supported for 4.7. Task-number: QT-2821 | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Bea Lam | 2010-03-03 | 1 | -0/+1 |
|\ | |||||
| * | Empty URL test | Aaron Kennedy | 2010-03-02 | 1 | -0/+1 |
| | | |||||
* | | Add WorkerScript docs and tests. | Bea Lam | 2010-03-03 | 1 | -0/+1 |
| | | | | | | | | Task-number: QT-2807 | ||||
* | | Forgot to add qworkerlistmodel test dir to declarative.pro | Bea Lam | 2010-03-02 | 1 | -0/+1 |
|/ | |||||
* | Fixed qdeclarativeconnection test. | Rohan McGovern | 2010-02-26 | 1 | -1/+1 |
| | | | | .pro file name must match directory name. | ||||
* | Rename files to follow class name. | Warwick Allison | 2010-02-26 | 1 | -1/+1 |
| | | | | Task-number: QT-2822 | ||||
* | Rename QDeclarativeMetaProperty -> QDeclarativeProperty | Aaron Kennedy | 2010-02-25 | 1 | -1/+1 |
| | | | | There's nothing meta about our properties. | ||||
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 1 | -55/+55 |
| | | | | QDeclarativeXXX. | ||||
* | Fix illegal access in QmlStyledText and add auto tests | Martin Jones | 2010-02-23 | 1 | -0/+1 |
| | |||||
* | Rename qmllist autotest to qmllistreference | Aaron Kennedy | 2010-02-23 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Warwick Allison | 2010-02-23 | 1 | -2/+1 |
|\ | |||||
| * | Replace QmlList* and QList* support with a single QmlListProperty type | Aaron Kennedy | 2010-02-22 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | As a value type QmlListProperty doesn't consume any memory in the object. It also has a companion QmlListReference class that is part of the public API for C++ developers to interact with that also manages memory issues that existed with previous solutions (if the containing QObject was destroyed it left a dangling pointer). | ||||
| * | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 1 | -1/+1 |
| | | |||||
* | | run qmlmoduleplugin test | Warwick Allison | 2010-02-23 | 1 | -0/+1 |
|/ | |||||
* | Add missing NOTIFY signals to various QML item class properties | Joona Petrell | 2010-02-17 | 1 | -0/+1 |
| | | | | Reviewed-by: Aaron Kennedy | ||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Martin Jones | 2010-02-16 | 1 | -1/+4 |
|\ | |||||
| * | Make tests compile without webkit | Aaron Kennedy | 2010-02-15 | 1 | -1/+4 |
| | | |||||
* | | Add QmlImageProvider to allow asynchronous access to images. | Martin Jones | 2010-02-16 | 1 | -0/+1 |
|/ | | | | | | | | | Setting an image source to image://providerid/imageid will pass the request for imageid to the provider registered for providerid. QmlImageProvider::request() is run in a low priority thread, so the main thread is not blocked while the image is loaded/rendered. Reviewed-by: Aaron Kennedy | ||||
* | Adds qml prefix to all declarative autotests | Leonardo Sobral Cunha | 2010-02-11 | 1 | -10/+10 |
| | |||||
* | Removed the tests/auto/declarative/visual(&examples) from .pro | Leonardo Sobral Cunha | 2010-02-11 | 1 | -2/+0 |
| | |||||
* | Remove pathview test. | Martin Jones | 2010-02-10 | 1 | -1/+0 |
| | |||||
* | Test fixes. | Michael Brasser | 2010-02-05 | 1 | -1/+1 |
| | |||||
* | Add Image test to .pro | Martin Jones | 2009-11-19 | 1 | -0/+1 |
| | |||||
* | Rename repeater -> qmlgraphicsrepeater | Martin Jones | 2009-11-18 | 1 | -1/+1 |
| | |||||
* | Accidentally removed some entries from declarative.pro | Bea Lam | 2009-11-17 | 1 | -1/+3 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Bea Lam | 2009-11-17 | 1 | -0/+1 |
|\ | | | | | | | into kinetic-declarativeui | ||||
| * | Merge branch 'kinetic-declarativeui' of ↵ | Aaron Kennedy | 2009-11-17 | 1 | -0/+1 |
| |\ | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | | QmlInstruction autotest | Aaron Kennedy | 2009-11-17 | 1 | -0/+1 |
| | | | |||||
* | | | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Bea Lam | 2009-11-17 | 1 | -0/+1 |
|\ \ \ | | |/ | |/| | | | | into kinetic-declarativeui | ||||
| * | | graphicswidgets basic autotest | Yann Bodson | 2009-11-17 | 1 | -0/+1 |
| |/ | |||||
* | | Move debugger tests out of debugger/ subdir | Bea Lam | 2009-11-17 | 1 | -3/+4 |
|/ | |||||
* | QmlEngine tests | Aaron Kennedy | 2009-11-16 | 1 | -0/+1 |
| | |||||
* | EaseFollow autotests | Yann Bodson | 2009-11-12 | 1 | -0/+1 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Yann Bodson | 2009-11-11 | 1 | -4/+5 |
|\ | | | | | | | | | | | | | into kinetic-declarativeui Conflicts: src/declarative/graphicsitems/qmlgraphicsanimatedimage.cpp | ||||
| * | Add qmllistmodel | Warwick Allison | 2009-11-11 | 1 | -4/+5 |
| | | |||||
* | | basic PathView autotests | Yann Bodson | 2009-11-11 | 1 | -0/+1 |
|/ | |||||
* | SpringFollow autotest | Yann Bodson | 2009-11-10 | 1 | -0/+1 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Martin Jones | 2009-11-10 | 1 | -1/+1 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Bea Lam | 2009-11-10 | 1 | -1/+5 |
| |\ | | | | | | | | | | into kinetic-declarativeui | ||||
| * | | Add QmlDebugClient and QmlDebugService tests and move debugger-related | Bea Lam | 2009-11-10 | 1 | -1/+1 |
| | | | | | | | | | | | | tests to debugger subdir. |