summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual
Commit message (Collapse)AuthorAgeFilesLines
* Visual test updates.Michael Brasser2010-04-1520-1422/+91
|
* fillmode is a static visual test, so only record one frame.Michael Brasser2010-04-141-269/+1
|
* Support recording visual snapshot tests.Michael Brasser2010-04-141-2/+11
|
* Tweak tests to run in parallelAaron Kennedy2010-04-131-0/+3
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-04-1227-33/+131
|\ | | | | | | | | | | Conflicts: src/declarative/graphicsitems/qdeclarativetextinput.cpp src/declarative/graphicsitems/qdeclarativetextinput_p.h
| * Enable other wrapping modes.Martin Jones2010-04-093-3/+28
| | | | | | | | | | | | | | | | WrapAnywhere - Text can be wrapped at any point on a line, even if it occurs in the middle of a word. WrapAtWordBoundaryOrAnywhere - If possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word.
| * TextEdit::wrap changed to TextEdit::wrapMode enumerationMartin Jones2010-04-091-2/+2
| |
| * Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-092-5/+5
| |
| * Update visual test.Michael Brasser2010-04-089-4/+4
| | | | | | | | We've updated our handling of drag threshold in MouseArea.
| * Renamed 'source' property from SpringFollow to 'to'Leonardo Sobral Cunha2010-04-082-8/+8
| |
| * Add SmoothedFollow element to qmlLeonardo Sobral Cunha2010-04-081-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Replace Text::wrap property with Text::wrapMode enumeration.Martin Jones2010-04-082-8/+8
| | | | | | | | wrap remains for a little while, and will produce a warning.
| * Visual test updates.Michael Brasser2010-04-0711-3/+36
| |
* | Add some TextInput properties and methodsAlan Alpert2010-04-1219-189/+4601
|/ | | | | | | | | | | | | | | | | | Adds the properties -passwordCharacter -displayText And the method -moveCursorSelection(int pos) These just provide a QML way to access existing QLineControl functionality, and are necessary to create desktop style LineEdits (the existing TextInput QML API was designed with a focus on touch input LineEdits) Includes tests and documentation. Task-number: QT-321 Reviewed-by: Aaron Kennedy
* Cleanup MouseArea visual tests.Michael Brasser2010-03-3137-0/+18
|
* See if we can get the visual tests working on qws.Michael Brasser2010-03-301-0/+4
|
* Make visual tests run on windowsMartin Jones2010-03-301-1/+2
|
* Finished file rename of qdeclarative easefollow to smoothedanimationLeonardo Sobral Cunha2010-03-309-0/+0
|
* Change and rename qml EaseFollow to SmoothedAnimationLeonardo Sobral Cunha2010-03-302-8/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Visual test fixes.Michael Brasser2010-03-295-4/+4
|
* Add missing pro file.Michael Brasser2010-03-291-0/+7
|
* Run a subset of 'stable' visual tests.Michael Brasser2010-03-281-2/+10
|
* Rename visual test to qmlvisual.Michael Brasser2010-03-28675-0/+138051