summaryrefslogtreecommitdiffstats
path: root/examples/declarative/border-image
Commit message (Collapse)AuthorAgeFilesLines
* Add .qmlproject files to declarative examples.Yann Bodson2010-04-201-0/+16
|
* Fix code style in examplesBea Lam2010-04-132-2/+0
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-083-3/+3
|
* Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-2/+2
| | | | | 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-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.
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-2/+2
| | | | | | | | | | | | | | | | | | | | | 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.
* Updates all qml examples/demos to use the easing curve value type syntaxLeonardo Sobral Cunha2010-02-231-4/+4
|
* Removed "running: true" for animations used as propertyvaluesourceLeonardo Sobral Cunha2010-02-111-2/+2
| | | | | | This attribution is not necessary anymore since 923710196d6d5..., Reviewed-by: Michael Brasser
* cleanupYann Bodson2009-10-308-41/+11
|
* use aliases when possibleYann Bodson2009-10-121-4/+4
|
* lowercase idsYann Bodson2009-10-064-16/+16
|
* Change .sci syntax to match BorderImage.Yann Bodson2009-10-052-10/+10
|
* cleanup examplesYann Bodson2009-10-023-16/+17
|
* Rename positioners.Warwick Allison2009-08-241-1/+1
| | | | QFxBasePositioner still exists though.
* Renaming Rect -> RectangleYann Bodson2009-08-193-3/+3
|
* more docsYann Bodson2009-08-191-0/+31
|
* docsYann Bodson2009-08-101-0/+0
|
* Add new class QFxBorderImage.Yann Bodson2009-08-093-17/+17
| | | | | * Move scalegrid code into QFxBorderImage * Update examples
* Add support for CSS-like horizontalTileRule and verticalTileRule to ScaleGrid.Yann Bodson2009-08-067-0/+120
* Simplify and improve QFxImage code by using qDrawBorderPixmap * Add horizontalTileRule and verticalTileRule to .sci files * Add example in example/declarative/border-image