summaryrefslogtreecommitdiffstats
path: root/examples/declarative/progressbar/progressbars.qml
Commit message (Collapse)AuthorAgeFilesLines
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-33/+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).
* Fix code style in examplesBea Lam2010-04-131-3/+12
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-3/+3
| | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops.
* Replace Animation's repeat property with loops.Michael Brasser2010-03-251-3/+3
| | | | | 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 "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-3/+3
| | | | | | | | | | | | | | | | | | | | | 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 contentXXXMartin Jones2010-02-261-1/+1
| | | | A viewport is the thing you look through, not what you look at.
* Removed "running: true" for animations used as propertyvaluesourceLeonardo Sobral Cunha2010-02-111-3/+3
| | | | | | This attribution is not necessary anymore since 923710196d6d5..., Reviewed-by: Michael Brasser
* cleanup progressbar exampleYann Bodson2009-11-251-0/+24