summaryrefslogtreecommitdiffstats
path: root/examples/declarative/threading/workerscript/qml/workerscript/workerscript.js
diff options
context:
space:
mode:
authorMatthew Vogt <matthew.vogt@nokia.com>2012-01-30 14:16:15 +1000
committerMatthew Vogt <matthew.vogt@nokia.com>2012-01-30 14:16:15 +1000
commit12a5ddf456ba8549645a8cb28a8b4ed6197a14da (patch)
tree63ee2c88af936e0609a3a194f5bcc304c4c0b707 /examples/declarative/threading/workerscript/qml/workerscript/workerscript.js
Import relevant source from Qt 4.8
Diffstat (limited to 'examples/declarative/threading/workerscript/qml/workerscript/workerscript.js')
-rw-r--r--examples/declarative/threading/workerscript/qml/workerscript/workerscript.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/declarative/threading/workerscript/qml/workerscript/workerscript.js b/examples/declarative/threading/workerscript/qml/workerscript/workerscript.js
new file mode 100644
index 00000000..f76471f9
--- /dev/null
+++ b/examples/declarative/threading/workerscript/qml/workerscript/workerscript.js
@@ -0,0 +1,15 @@
+var lastx = 0;
+var lasty = 0;
+
+WorkerScript.onMessage = function(message) {
+ var ydiff = message.y - lasty;
+ var xdiff = message.x - lastx;
+
+ var total = Math.sqrt(ydiff * ydiff + xdiff * xdiff);
+
+ lastx = message.x;
+ lasty = message.y;
+
+ WorkerScript.sendMessage( {xmove: xdiff, ymove: ydiff, move: total} );
+}
+