summaryrefslogtreecommitdiffstats
path: root/demos/declarative/snake/snake.qml
Commit message (Collapse)AuthorAgeFilesLines
* CleanupYann Bodson2010-05-061-3/+3
|
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-091-1/+1
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* Deprecate inline Script {} blocksAaron Kennedy2010-03-221-14/+13
| | | | | | | | 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.
* Import "content" with as qualifier to support network without qmldirmae2010-03-151-5/+5
|
* 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.
* Recfactor in declarative snake demoLeonardo Sobral Cunha2010-02-251-2/+2
| | | | | Avoid having 2 'states' that have 'when' conditions that can be 'true' at the same time.
* Rename MouseRegion -> MouseAreaMartin Jones2010-02-221-1/+1
|
* Follow naming conventions (pass examples test)Warwick Allison2010-01-111-0/+190