diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-11-12 05:32:18 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-11-12 05:33:18 (GMT) |
commit | db3ae6188c8f88f25b4f8e2645e76a7c6fffef18 (patch) | |
tree | 334fbcf52a0c9bc8501cc8d834a9321902e22e4c /src/declarative/util/qmlanimation_p.h | |
parent | 242d61d3054a569f88aaa642b3348b7e0a133c9c (diff) | |
download | Qt-db3ae6188c8f88f25b4f8e2645e76a7c6fffef18.zip Qt-db3ae6188c8f88f25b4f8e2645e76a7c6fffef18.tar.gz Qt-db3ae6188c8f88f25b4f8e2645e76a7c6fffef18.tar.bz2 |
Update ParentChange + docs.
Diffstat (limited to 'src/declarative/util/qmlanimation_p.h')
-rw-r--r-- | src/declarative/util/qmlanimation_p.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/declarative/util/qmlanimation_p.h b/src/declarative/util/qmlanimation_p.h index 3a9839e..e7cff07 100644 --- a/src/declarative/util/qmlanimation_p.h +++ b/src/declarative/util/qmlanimation_p.h @@ -229,6 +229,7 @@ class QmlParentAction : public QmlAbstractAnimation Q_DECLARE_PRIVATE(QmlParentAction) Q_PROPERTY(QmlGraphicsItem *target READ object WRITE setObject) + Q_PROPERTY(QmlGraphicsItem *matchTarget READ matchTarget WRITE setMatchTarget) Q_PROPERTY(QmlGraphicsItem *parent READ parent WRITE setParent) public: @@ -238,6 +239,9 @@ public: QmlGraphicsItem *object() const; void setObject(QmlGraphicsItem *); + QmlGraphicsItem *matchTarget() const; + void setMatchTarget(QmlGraphicsItem *); + QmlGraphicsItem *parent() const; void setParent(QmlGraphicsItem *); |