| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|\
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
|
| | |
|
|/ |
|
|
|
|
|
|
|
| |
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
|
| |
|
|\
| |
| |
| |
| |
| |
| | |
git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Conflicts:
examples/declarative/layouts/Button.qml
|
| | |
|
|/ |
|
|
|
|
| |
It's actually useful now. A lot slower too.
|
|
|
|
| |
QFxBasePositioner still exists though.
|
|
|
|
|
|
| |
SetProperties -> PropertyChanges
RunScript -> StateChangeScript
SetAnchors -> AnchorChanges
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
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.
|