Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename visual test to qmlvisual. | Michael Brasser | 2010-03-28 | 676 | -138058/+0 |
| | |||||
* | Syntax and other small fixes for the visual tests. | Michael Brasser | 2010-03-28 | 21 | -177/+192 |
| | |||||
* | Update AnchorChanges to use more natural form for setting anchors. | Michael Brasser | 2010-03-25 | 1 | -7/+8 |
| | | | | | | | 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 | 12 | -13/+13 |
| | | | | | 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 | 12 | -13/+13 |
| | | | | | 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. | ||||
* | Rename stateChangeScriptName to scriptName. | Michael Brasser | 2010-03-24 | 1 | -1/+1 |
| | |||||
* | Remove ParentAction. | Michael Brasser | 2010-03-23 | 8 | -1262/+0 |
| | | | | It has been replaced with ParentAnimation. | ||||
* | Add AnchorAnimation for animating AnchorChanges. | Michael Brasser | 2010-03-11 | 12 | -185/+185 |
| | | | | Task-number: QT-2825 | ||||
* | ParentAnimation docs + test. | Michael Brasser | 2010-03-05 | 8 | -0/+1721 |
| | | | | Task-number: QTBUG-8612 | ||||
* | Move WebView to an extension plugin. | Warwick Allison | 2010-03-02 | 13 | -0/+13 |
| | | | | | | | | Using WebView now requires: import org.webkit 1.0 Task-number: QT-2995 | ||||
* | Renamed Flickable viewportXXX properties contentXXX | Martin Jones | 2010-02-26 | 2 | -2/+2 |
| | | | | A viewport is the thing you look through, not what you look at. | ||||
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 325 | -10/+10 |
| | | | | QDeclarativeXXX. | ||||
* | Updates all qml examples/demos to use the easing curve value type syntax | Leonardo Sobral Cunha | 2010-02-23 | 10 | -60/+60 |
| | |||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 16 | -29/+29 |
| | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt | Martin Jones | 2010-02-18 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mkspecs/linux-g++-x11egl/qplatformdefs.h src/declarative/qml/qmldom.h src/declarative/util/qmlview.cpp src/declarative/util/qmlview.h tools/qdoc3/cppcodemarker.cpp tools/qmldebugger/standalone/canvasframerate.cpp tools/qmldebugger/standalone/engine.cpp tools/qmldebugger/standalone/expressionquerywidget.cpp tools/qmldebugger/standalone/expressionquerywidget.h tools/qmldebugger/standalone/objectpropertiesview.cpp tools/qmldebugger/standalone/objectpropertiesview.h tools/qmldebugger/standalone/objecttree.cpp tools/qmldebugger/standalone/qmldebugger.cpp tools/qmldebugger/standalone/watchtable.cpp tools/qmldebugger/standalone/watchtable.h | ||||
| * | Fix copyright year. | Jason McDonald | 2010-02-16 | 1 | -1/+1 |
| | | | | | | | | Reviewed-by: Trust Me | ||||
* | | Get rid of the matchProperties/properties distinction, as it | Michael Brasser | 2010-02-18 | 21 | -21/+1516 |
|/ | | | | | | | | | | | has proven to be confusing in practice. property/target and properties/targets will be functionally equivilant (the only distinction being singular/plural). In a transition these properties can be used for both 'matching' and explicit animation based on whether a 'to' value is supplied. The documentation, tests, examples and demos have been updated as well. | ||||
* | Removed "running: true" for animations used as propertyvaluesource | Leonardo Sobral Cunha | 2010-02-11 | 10 | -11/+6 |
| | | | | | | This attribution is not necessary anymore since 923710196d6d5..., Reviewed-by: Michael Brasser | ||||
* | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Michael Brasser | 2010-02-04 | 12 | -62/+62 |
|\ | | | | | | | into kinetic-declarativeui | ||||
| * | Disallow ids that start with uppercase letters and update docs and | Bea Lam | 2010-02-03 | 12 | -62/+62 |
| | | | | | | | | | | | | examples accordingly. Task-number: QT-2786 | ||||
* | | Fix elision and multilength strings when resizing a Text element. | Michael Brasser | 2010-02-04 | 15 | -65/+2362 |
|/ | | | | | | They were incorrectly wrapping when the width changed. Task-number: QTBUG-7477 | ||||
* | Replace FreeMono by OCRA font | Martin Jones | 2010-01-27 | 5 | -88/+88 |
| | |||||
* | Allow anchoring baseline to parent | Alan Alpert | 2009-12-09 | 3 | -0/+276 |
| | | | | Task-number: QT-2606 | ||||
* | Fixes wrapping in TextEdit | Alan Alpert | 2009-11-26 | 17 | -0/+4955 |
| | | | | | | | Somehow TextEdit got to the point of not calling updateSize after text input. Visual test included. Task-number: QTBUG-6273 | ||||
* | Treat emissionRate=0 like emitting=false | Alan Alpert | 2009-11-25 | 1 | -1/+6 |
| | | | | | | | | Including stopping the timer because we arenæt emitting anything. Because emissionRate=0 is exactly the same as emitting=false, the emitting property has been removed. Task-number: QTBUG-6209 | ||||
* | Use console.log, not print. | Warwick Allison | 2009-11-23 | 3 | -9/+9 |
| | |||||
* | TextInput echoMode visual test | Alan Alpert | 2009-11-20 | 15 | -0/+2203 |
| | |||||
* | Implement TextInput::horizontalAlignment | Alan Alpert | 2009-11-20 | 3 | -0/+146 |
| | | | | Includes visual autotest. | ||||
* | Test overshoot property in flickable visual test | Martin Jones | 2009-11-19 | 27 | -2159/+3774 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Aaron Kennedy | 2009-11-19 | 23 | -1391/+1207 |
|\ | | | | | | | into kinetic-declarativeui | ||||
| * | Update Package test and fix crash. | Martin Jones | 2009-11-18 | 23 | -1391/+1207 |
| | | |||||
* | | Rename QML Object to QtObject | Aaron Kennedy | 2009-11-19 | 2 | -2/+2 |
|/ | |||||
* | Make sure pathview flicks go through event filter path also. | Martin Jones | 2009-11-18 | 1 | -0/+2 |
| | |||||
* | Fix AnchorChange when multiple states in a stategroup are involved. | Michael Brasser | 2009-11-17 | 11 | -0/+2539 |
| | |||||
* | update Text visual test after change 946eab3e327bddcce10ed838462c0ca56ff011f0 | Yann Bodson | 2009-11-16 | 2 | -83/+83 |
| | |||||
* | Test MouseRegion.enabled | Martin Jones | 2009-11-13 | 15 | -3162/+1839 |
| | |||||
* | More flickable tests | Martin Jones | 2009-11-13 | 26 | -380/+4749 |
| | |||||
* | Hit more code in GrisView. | Martin Jones | 2009-11-13 | 6 | -215/+223 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Martin Jones | 2009-11-13 | 66 | -0/+15671 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Yann Bodson | 2009-11-13 | 7 | -0/+2138 |
| |\ | | | | | | | | | | into kinetic-declarativeui | ||||
| * | | add TextInput visual test data for Mac | Yann Bodson | 2009-11-13 | 11 | -0/+3379 |
| | | | |||||
| * | | add TextEdit visual test data for Mac | Yann Bodson | 2009-11-13 | 15 | -0/+4926 |
| | | | |||||
| * | | add Repeater visual test data for Mac | Yann Bodson | 2009-11-13 | 9 | -0/+1420 |
| | | | |||||
| * | | add ListView visual test data for Mac | Yann Bodson | 2009-11-13 | 33 | -0/+5946 |
| | | | |||||
* | | | More MouseRegion testing. | Martin Jones | 2009-11-13 | 25 | -0/+7314 |
| |/ |/| | |||||
* | | Merge branch 'kinetic-declarativeui' of ↵ | Warwick Allison | 2009-11-13 | 11 | -1326/+735 |
|\ \ | |/ | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | update visual test | Yann Bodson | 2009-11-13 | 11 | -1326/+735 |
| | | |||||
* | | WebView tests and testability. | Warwick Allison | 2009-11-13 | 7 | -0/+2138 |
|/ | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Martin Jones | 2009-11-13 | 25 | -0/+6038 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Yann Bodson | 2009-11-13 | 16 | -0/+3935 |
| |\ | | | | | | | | | | into kinetic-declarativeui |