summaryrefslogtreecommitdiffstats
path: root/examples/declarative/fonts/hello.qml
Commit message (Collapse)AuthorAgeFilesLines
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-38/+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).
* Use enum rather than string for easing type.Yann Bodson2010-05-051-1/+1
|
* Fix code style in examplesBea Lam2010-04-131-8/+19
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* 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-1/+1
|
* 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
* * add more font examplesYann Bodson2009-11-031-0/+27
* add missing properties to QmlFontValueType