<div dir="ltr"><div><div>Hi all,</div><div><br></div><div>I'm running a very simple QML multitouch example using MultiPointTouchArea, that works (more or less) on X11, here is the code:</div><div><br></div><div>    Rectangle {</div>
<div>        width: 400; height: 400</div><div>        MultiPointTouchArea {</div><div>            anchors.fill: parent</div><div>            touchPoints: [ TouchPoint { id: point1 }, TouchPoint { id: point2 } ]</div><div>
        }</div><div>        Rectangle { width: 30; height: 30; color: "green";  x: point1.x; y: point1.y }</div><div>        Rectangle { width: 30; height: 30; color: "yellow"; x: point2.x; y: point2.y }</div>
<div>    }</div><div><br></div><div>And I say more or less because it is necessary to put 3 fingers on the trackpad to start moving the rectangles...</div><div>Anyway, the program is not working on Weston. My question is, is that because Weston doesn't implement multitouch support or because Wayland doesn't support it at the moment? Could it be possible to implement multitouch support in a custom compositor?</div>
<div><br></div><div>This is my system information:</div><div>Macbook Air 2011 (clickpack)</div><div>Qt 5.3.0</div><div>Latest QtWayland source code (1/Jun/2014)</div><div>Weston 1.5.90</div><br></div></div>