summaryrefslogtreecommitdiffstats
path: root/examples/declarative/layouts
Commit message (Collapse)AuthorAgeFilesLines
* Restructure the examples. They are now organized into variousBea Lam2010-05-1616-1240/+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).
* There is no Qt.widgetsWarwick Allison2010-05-101-1/+0
| | | | Task-number: QTBUG-10469
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-05-052-21/+37
|\
| * Use enum rather than string for easing type.Yann Bodson2010-05-052-21/+37
| |
* | Move Qt.widgets import to be an unsupported exampleAlan Alpert2010-05-0517-29/+974
|/ | | | | | | | 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
* Add .qmlproject files to declarative examples.Yann Bodson2010-04-201-0/+16
|
* Example fixesBea Lam2010-04-131-5/+5
|
* Fix code style in examplesBea Lam2010-04-132-56/+109
|
* Some cleanup in widgets module. Deletion of GraphicsObjectContainer.Alexis Menard2010-04-091-20/+15
| | | | | | | | | | | | | This commit deletes the uneeded classes/declarations since we have now an inline support for QGraphicsObject based classes. QGraphicsLayout bindings works the same way because the layout property has been added to QGraphicsWidget. The only feature that is missing for now (because of the deletion of GraphicsObjectContainer) is the anchoring support. We will probably take a look on how to support this feature properly with no wrapper. Task-number:QTBUG-9456 Reviewed-by:Michael Brasser
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-083-3/+3
|
* Add import Qt.widgets 4.6 to layout.qml exampleJoona Petrell2010-03-031-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-232-9/+9
|
* Rename MouseRegion -> MouseAreaMartin Jones2010-02-221-1/+1
|
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-182-9/+9
| | | | | | | | | | | 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-062-14/+14
|
* Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-10-091-19/+6
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: examples/declarative/layouts/Button.qml
| * Fix example errorsAaron Kennedy2009-10-091-4/+4
| |
* | Clean upBea Lam2009-10-083-42/+149
|/
* Enhance layout exampleAlan Alpert2009-10-011-1/+2
| | | | It's actually useful now. A lot slower too.
* Rename positioners.Warwick Allison2009-08-241-3/+3
| | | | QFxBasePositioner still exists though.
* Rename State change elements.Martin Jones2009-08-211-2/+2
| | | | | | SetProperties -> PropertyChanges RunScript -> StateChangeScript SetAnchors -> AnchorChanges
* Renaming Rect -> RectangleYann Bodson2009-08-193-23/+23
|
* Update Positioner TestsAlan Alpert2009-08-191-20/+20
| | | | | | | Note that it still doesn't pass tests, due at least partially to an error in the test code. This change also slips in a change to the QLayoutItem example less of a bad example of how to integrate QGraphicsLayouts.
* Cleanup and example for positionersAlan Alpert2009-08-135-0/+96
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.