import QtQuick 2.2 import QtQuick.Controls 1.1 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Hello World") MultiPointTouchArea { anchors.fill: parent onPressed: { console.log("QML Pressed" + touchPoints) } onReleased: { console.log("QML Released" + touchPoints) } } }