summaryrefslogtreecommitdiffstats
path: root/examples/declarative/threading/workerscript/workerscript.qml
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2010-05-19 08:45:52 (GMT)
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2010-05-19 08:45:52 (GMT)
commit9547ade2b9cd7c792d98bf06ca8de89c9e560396 (patch)
treeaa43069092eaaa2078c21c86347c28e3ac41c574 /examples/declarative/threading/workerscript/workerscript.qml
parentfa608f9094591c146f9170ba485ea2e4d7827dca (diff)
parentcbb28a77cb295b74d47a5a1923357dd6557bea84 (diff)
downloadQt-9547ade2b9cd7c792d98bf06ca8de89c9e560396.zip
Qt-9547ade2b9cd7c792d98bf06ca8de89c9e560396.tar.gz
Qt-9547ade2b9cd7c792d98bf06ca8de89c9e560396.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.7
Diffstat (limited to 'examples/declarative/threading/workerscript/workerscript.qml')
-rw-r--r--examples/declarative/threading/workerscript/workerscript.qml43
1 files changed, 43 insertions, 0 deletions
diff --git a/examples/declarative/threading/workerscript/workerscript.qml b/examples/declarative/threading/workerscript/workerscript.qml
new file mode 100644
index 0000000..2294a81
--- /dev/null
+++ b/examples/declarative/threading/workerscript/workerscript.qml
@@ -0,0 +1,43 @@
+import Qt 4.7
+
+Rectangle {
+ width: 480; height: 320
+
+ WorkerScript {
+ id: myWorker
+ source: "workerscript.js"
+
+ onMessage: {
+ console.log("Moved " + messageObject.xmove + " along the X axis.");
+ console.log("Moved " + messageObject.ymove + " along the Y axis.");
+ console.log("Moved " + messageObject.move + " pixels.");
+ }
+ }
+
+ Rectangle {
+ width: 200; height: 200
+ anchors.left: parent.left; anchors.leftMargin: 20
+ color: "red"
+
+ MouseArea {
+ anchors.fill: parent
+ onClicked: myWorker.sendMessage( { rectangle: "red", x: mouse.x, y: mouse.y } );
+ }
+ }
+
+ Rectangle {
+ width: 200; height: 200
+ anchors.right: parent.right; anchors.rightMargin: 20
+ color: "blue"
+
+ MouseArea {
+ anchors.fill: parent
+ onClicked: myWorker.sendMessage( { rectangle: "blue", x: mouse.x, y: mouse.y } );
+ }
+ }
+
+ Text {
+ text: "Click a Rectangle!"
+ anchors { horizontalCenter: parent.horizontalCenter; bottom: parent.bottom; bottomMargin: 50 }
+ }
+}