| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
So that scope resolution is correct, e.g. "width: parent.width-10;" in
a ParentChange works correctly.
Task-number: QTBUG-10675
|
|
|
|
|
|
|
|
|
|
|
| |
copyOriginals plays with the order of the revertList, which messes up
the assumptions of ParentAnimation. The full fix will require some
rearchitecting of how the states and transitions handle "related"
actions, but for now this fixes the crash.
Reverting to the base state has also been fixed.
Task-number: QTBUG-10671, QTBUG-10676
|
|
|
|
|
|
|
| |
"parent" needs to be evaluated with the AnchorChanges target as the
scope object.
Task-number: QTBUG-5338
|
| |
|
|
|
|
|
| |
Always use private/. The WinSCW compiler doesn't search the current
directory, for whatever reason.
|
|
|
|
|
|
|
| |
Instead of specifying left, right, etc directly, we keep the regular
syntax and specify anchors.left, anchors.right, etc. Also get rid
of the hacky "reset" string property and use undefined to reset (like
PropertyChanges).
|
|
|
|
| |
Task-number: QT-2825
|
|
|
|
|
|
|
|
|
|
| |
Private headers should include other private headers by:
#include <private/qfoo_p.h>
Using a relative path works during the build, but does not work when
building other projects which attempt to use the installed private
headers (e.g. unit tests for private classes).
|
|
|
|
|
|
|
| |
ParentAnimation will replace ParentAction. It provides two advantages:
* It will animate correctly when reversed.
* It allows reparenting via another item, which is useful in
the presence of clips, for example.
|
|
QDeclarativeXXX.
|