diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-03-31 00:44:39 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-03-31 01:20:28 (GMT) |
commit | 7850ee84483b34ef2e97517c3bc9cfb93ea1bf1c (patch) | |
tree | 89ade68f14d19c9f09a537def9502345b40940ac /tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml | |
parent | 603b797d745c4129f5d2a151c9146358e36eb668 (diff) | |
download | Qt-7850ee84483b34ef2e97517c3bc9cfb93ea1bf1c.zip Qt-7850ee84483b34ef2e97517c3bc9cfb93ea1bf1c.tar.gz Qt-7850ee84483b34ef2e97517c3bc9cfb93ea1bf1c.tar.bz2 |
Update mouseX(Y) when clicking on a mouse area
This fixes the original commit, 56aa9370dbafa8ee4, for QTBUG-9383.
We need to emit a positionChanged signal to update the mouseX(Y)
for the mouse area.
Reviewed-by: Martin Jones
Diffstat (limited to 'tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml new file mode 100644 index 0000000..0da7c45 --- /dev/null +++ b/tests/auto/declarative/qdeclarativemousearea/data/updateMousePosOnClick.qml @@ -0,0 +1,20 @@ +import Qt 4.6 + +Rectangle { + color: "#ffffff" + width: 320; height: 240 + MouseArea { + id: mouseRegion + objectName: "mouseregion" + anchors.fill: parent + Rectangle { + id: ball + objectName: "ball" + width: 20; height: 20 + radius: 10 + color: "#0000ff" + x: { mouseRegion.mouseX } + y: mouseRegion.mouseY + } + } +} |