diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-10-12 22:42:30 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-10-12 22:42:30 (GMT) |
commit | 231604bc063c002240479b69baa8110c2c83e9e1 (patch) | |
tree | 6df309ba571b758dd39dca33515a400a53fd369a /tests/auto/declarative/behaviors/data/binding.qml | |
parent | 68c69f88d4c3a7b9f24162a4c7708ded7caba90e (diff) | |
download | Qt-231604bc063c002240479b69baa8110c2c83e9e1.zip Qt-231604bc063c002240479b69baa8110c2c83e9e1.tar.gz Qt-231604bc063c002240479b69baa8110c2c83e9e1.tar.bz2 |
Behavior fix plus basic autotests.
Diffstat (limited to 'tests/auto/declarative/behaviors/data/binding.qml')
-rw-r--r-- | tests/auto/declarative/behaviors/data/binding.qml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/auto/declarative/behaviors/data/binding.qml b/tests/auto/declarative/behaviors/data/binding.qml new file mode 100644 index 0000000..e0c3321 --- /dev/null +++ b/tests/auto/declarative/behaviors/data/binding.qml @@ -0,0 +1,26 @@ +import Qt 4.6 +Rectangle { + width: 400 + height: 400 + property real basex : 0 + property real movedx: 200 + Rectangle { + id: rect + objectName: "MyRect" + width: 100; height: 100; color: "green" + x: basex + x: Behavior { NumberAnimation { duration: 200; } } + } + MouseRegion { + id: clicker + anchors.fill: parent + } + states: State { + name: "moved" + when: clicker.pressed + PropertyChanges { + target: rect + x: movedx + } + } +} |