summaryrefslogtreecommitdiffstats
path: root/examples/declarative/layouts/positioners.qml
Commit message (Collapse)AuthorAgeFilesLines
* Move Qt.widgets import to be an unsupported exampleAlan Alpert2010-05-051-213/+0
| | | | | | | | Layout examples for QML are also cleaned up a bit. Layouts test removed, and LayoutItem test added, to clarify what we support. Reviewed-by: Michael Brasser
* Fix code style in examplesBea Lam2010-04-131-56/+106
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-10/+10
| | | | | | | | | | | | | | | | | | | | | 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-8/+8
|
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-181-8/+8
| | | | | | | | | | | 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.
* Update FlowPositioner to the new BasePositioner implementationAlan Alpert2009-12-091-5/+0
|
* Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-12-091-9/+53
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Add a Flow positioner.Martin Jones2009-12-081-9/+53
| |
* | Update positioners exampleAlan Alpert2009-12-091-18/+2
|/
* Clarify the role of positioner transitionsAlan Alpert2009-11-101-19/+21
| | | | | | | They are only for the positioner's position changes, other changes are under the designers control and the designer should animate them. Task-number: QT-2239
* Rename targets -> matchTargets and properties -> matchProperties.Michael Brasser2009-11-061-13/+13
|
* Clean upBea Lam2009-10-081-29/+116
|
* Rename positioners.Warwick Allison2009-08-241-3/+3
| | | | QFxBasePositioner still exists though.
* Renaming Rect -> RectangleYann Bodson2009-08-191-20/+20
|
* Cleanup and example for positionersAlan Alpert2009-08-131-0/+51
Interim progress on fixing up the positioners. - Removes margins and setting and implicit size - Purges the word 'layout' from the source files - Fixes a bug with the grid positioner, it works now - Cleaned up the code somewhat. Also adds some basic examples which demonstrate that it (mostly) works. Be warned that practically all the comments are woefully out of date.