event processor for onmousemove
var x = e.clientX; var y = e.clientY; this.host.onMove(this, {dx: x - this.lastX, dy: y - this.lastY}); this.lastX = x; this.lastY = y; dojo.stopEvent(e);