Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix photo positioning bug in flickr demo. | Yann Bodson | 2010-08-03 | 3 | -87/+87 |
| | | | | Task-number: QTBUG-3669 | ||||
* | Enter key performs same action as Return key in QML demos. | Martin Jones | 2010-07-14 | 1 | -0/+1 |
| | | | | N900 has an Enter key, not a return key | ||||
* | Improve input panel handling in declarative demos and examples | Joona Petrell | 2010-06-03 | 1 | -1/+1 |
| | | | | | Task-number: QTBUG-11157 Reviewed-by: Warwick Allison | ||||
* | Add license headers for .qml files. | Jason McDonald | 2010-05-21 | 12 | -0/+492 |
| | | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me | ||||
* | Flickable small API changes. | Yann Bodson | 2010-05-12 | 2 | -3/+3 |
| | | | | | | | | | | - Split moving into movingHorizontally anf movingVertically - Split flicking into flickingHorizontally and flickingVertically - Rename flickDirection to flickableDirection - onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed Task-number: QTBUG-10572 Reviewed-by: Martin Jones | ||||
* | More cleanup | Yann Bodson | 2010-05-06 | 2 | -5/+9 |
| | |||||
* | Use enum for drag.axis in doc and examples. | Yann Bodson | 2010-05-06 | 1 | -1/+1 |
| | |||||
* | Use enum rather than string for easing type. | Yann Bodson | 2010-05-05 | 4 | -7/+7 |
| | |||||
* | make quitable | Warwick Allison | 2010-04-27 | 2 | -1/+12 |
| | |||||
* | Balance grid items for larger displays. | Warwick Allison | 2010-04-21 | 1 | -1/+2 |
| | | | | Task-number: QTBUG-8406 | ||||
* | Cleanup | Yann Bodson | 2010-04-20 | 16 | -99/+0 |
| | |||||
* | Fix API call for multiple tags. | Warwick Allison | 2010-04-20 | 1 | -1/+6 |
| | | | | Spec says comma, not eg. space separated. | ||||
* | Add .qmlproject files for declarative demos. | Yann Bodson | 2010-04-20 | 1 | -0/+16 |
| | |||||
* | Ensure existing image is gone before next photo selection. | Warwick Allison | 2010-04-16 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-8084 | ||||
* | Replace "property var " with "property variant " in QML code | Aaron Kennedy | 2010-04-09 | 3 | -4/+4 |
| | |||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 15 | -15/+15 |
| | |||||
* | Remove flickr-desktop | Yann Bodson | 2010-04-08 | 6 | -500/+1 |
| | |||||
* | Qt.Infinite -> Animation.Infinite | Michael Brasser | 2010-03-25 | 1 | -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 Brasser | 2010-03-25 | 1 | -2/+2 |
| | | | | | 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. | ||||
* | Remove ParentAction. | Michael Brasser | 2010-03-23 | 2 | -8/+12 |
| | | | | It has been replaced with ParentAnimation. | ||||
* | Deprecate inline Script {} blocks | Aaron Kennedy | 2010-03-22 | 3 | -36/+30 |
| | | | | | | | | Inline blocks/includes have been replaced with an import syntax: import "foo.js" as Foo this gives better separation between QML and code. Imported script blocks also have a mandatory qualifier, which leads to better optimization potential. | ||||
* | Use no-version-specified to mean any version (used to work, fixed again, | Warwick Allison | 2010-03-10 | 1 | -10/+10 |
| | | | | was only working with -1.-1 which looks silly) | ||||
* | Move WebView to an extension plugin. | Warwick Allison | 2010-03-02 | 1 | -0/+1 |
| | | | | | | | | Using WebView now requires: import org.webkit 1.0 Task-number: QT-2995 | ||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Aaron Kennedy | 2010-03-02 | 1 | -4/+1 |
|\ | | | | | | | | | | | Conflicts: demos/declarative/minehunt/main.cpp demos/declarative/minehunt/minehunt.qml | ||||
| * | Fix position of image in detail view in flickr-mobile | Yann Bodson | 2010-03-01 | 1 | -4/+1 |
| | | |||||
* | | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 4 | -5/+5 |
|/ | | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error. | ||||
* | Set correct transformOrigin. | Martin Jones | 2010-03-01 | 1 | -0/+1 |
| | |||||
* | Fix position of image in detail view. | Martin Jones | 2010-03-01 | 1 | -3/+1 |
| | |||||
* | Change Connection syntax as per QT-2822. | Warwick Allison | 2010-02-26 | 3 | -9/+9 |
| | |||||
* | Renamed Flickable viewportXXX properties contentXXX | Martin Jones | 2010-02-26 | 2 | -11/+11 |
| | | | | A viewport is the thing you look through, not what you look at. | ||||
* | Updates all qml examples/demos to use the easing curve value type syntax | Leonardo Sobral Cunha | 2010-02-23 | 8 | -13/+13 |
| | |||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 7 | -7/+7 |
| | |||||
* | Fix example after introduction of RotationAnimation. | Michael Brasser | 2010-02-18 | 1 | -1/+1 |
| | | | | id can't be the same as a TypeName. | ||||
* | Get rid of the matchProperties/properties distinction, as it | Michael Brasser | 2010-02-18 | 9 | -15/+15 |
| | | | | | | | | | | | 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. | ||||
* | Disallow ids that start with uppercase letters and update docs and | Bea Lam | 2010-02-03 | 1 | -1/+1 |
| | | | | | | examples accordingly. Task-number: QT-2786 | ||||
* | Avoid spurious error messages | Warwick Allison | 2010-01-06 | 1 | -2/+4 |
| | | | | Delegate is reused in Grid and PathView, so PathView attributes might not be defined | ||||
* | Rename targets -> matchTargets and properties -> matchProperties. | Michael Brasser | 2009-11-06 | 9 | -15/+15 |
| | |||||
* | Update semantics of targets/properties and target/property. | Michael Brasser | 2009-11-06 | 2 | -2/+2 |
| | | | | | This is in preparation for renaming targets -> matchTargets and properties to matchProperties. | ||||
* | cleanup | Yann Bodson | 2009-10-28 | 7 | -17/+17 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Warwick Allison | 2009-10-26 | 1 | -0/+1 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | Flip around perspective origin | Aaron Kennedy | 2009-10-26 | 1 | -0/+1 |
| | | |||||
* | | Allow flickr demo to be remote. | Warwick Allison | 2009-10-26 | 1 | -0/+10 |
|/ | |||||
* | Update ScriptAction and StateChangeScript to use QmlScriptString. | Michael Brasser | 2009-10-23 | 1 | -2/+2 |
| | | | | | | | Now you can assign the script you want to run to the property directly, rather than assigning a string. Task-number: QT-734 | ||||
* | Doc | Aaron Kennedy | 2009-10-13 | 1 | -0/+0 |
| | |||||
* | Rename label to labeltext | Aaron Kennedy | 2009-10-08 | 1 | -5/+5 |
| | | | | Resolves scope collision between label property and label id | ||||
* | lowercase ids | Yann Bodson | 2009-10-06 | 17 | -345/+335 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Michael Brasser | 2009-10-05 | 5 | -25/+25 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | Change .sci syntax to match BorderImage. | Yann Bodson | 2009-10-05 | 5 | -25/+25 |
| | | |||||
* | | Minor fixes to flickr example. | Michael Brasser | 2009-10-05 | 1 | -4/+6 |
|/ | |||||
* | Fix small bugs in flick-mobile | Yann Bodson | 2009-09-30 | 3 | -9/+17 |
| |