Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restructure the examples. They are now organized into various | Bea Lam | 2010-05-16 | 10 | -631/+0 |
| | | | | | | subdirectories to make it easier to locate examples for certain features (e.g. animation) and to distinguish between different types of examples (e.g. very basic examples vs complex demo-like examples). | ||||
* | Cleanup | Yann Bodson | 2010-05-06 | 2 | -10/+8 |
| | |||||
* | Use enum rather than string for easing type. | Yann Bodson | 2010-05-05 | 1 | -2/+2 |
| | |||||
* | Remove QDeclarativeLoader::resizeMode | mae | 2010-05-03 | 1 | -1/+1 |
| | | | | | | | | | | | | The explicit resizeMode is superfluous, all usecases could be achieved with the corrected default behaviour of the former ResizeLoaderToItem mode. The NoResize usecase is covered by wrapping the loader in an extra item. That means: A loader automatically gets its size from the item loaded unless the loader has an explicit size itself. Go-ahead-by: Michael Brasser | ||||
* | Replace Flickable overshoot property with boundsBehavior | Martin Jones | 2010-04-22 | 1 | -1/+1 |
| | | | | Task-number: QTBUG-9993 | ||||
* | Add .qmlproject files to declarative examples. | Yann Bodson | 2010-04-20 | 1 | -0/+16 |
| | |||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 3 | -3/+3 |
| | |||||
* | 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 | -1/+1 |
| | | | | | 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. | ||||
* | Make sure currentIndex is updated when view is flicked. | Martin Jones | 2010-03-03 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-8396 | ||||
* | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Renamed Flickable viewportXXX properties contentXXX | Martin Jones | 2010-02-26 | 1 | -2/+2 |
| | | | | 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 | 1 | -4/+4 |
| | |||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 1 | -1/+1 |
| | |||||
* | Get rid of the matchProperties/properties distinction, as it | Michael Brasser | 2010-02-18 | 1 | -1/+1 |
| | | | | | | | | | | | 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 | 1 | -1/+1 |
| | | | | | | This attribution is not necessary anymore since 923710196d6d5..., Reviewed-by: Michael Brasser | ||||
* | Add ListView snapMode to ensure flicking settles on an item boundary. | Martin Jones | 2009-11-30 | 1 | -7/+1 |
| | |||||
* | Rename targets -> matchTargets and properties -> matchProperties. | Michael Brasser | 2009-11-06 | 1 | -1/+1 |
| | |||||
* | cleanup | Yann Bodson | 2009-10-30 | 3 | -2/+3 |
| | |||||
* | small fixes to parallax example | Yann Bodson | 2009-10-30 | 2 | -27/+12 |
| | |||||
* | fix parallax example | Yann Bodson | 2009-10-30 | 1 | -4/+2 |
| | |||||
* | Mode improvement to strictly enforced highlight range movement. | Martin Jones | 2009-10-28 | 1 | -1/+2 |
| | |||||
* | Try to be a bit more clever with snapping. | Martin Jones | 2009-10-27 | 1 | -0/+2 |
| | |||||
* | Update parallax example | Aaron Kennedy | 2009-10-27 | 5 | -4/+523 |
| | |||||
* | Improve highlight range API and fix incorrect list end calc. | Martin Jones | 2009-10-27 | 2 | -43/+25 |
| | |||||
* | parallax example | Aaron Kennedy | 2009-10-26 | 6 | -0/+134 |