import QtQuick 2.1 import QtQuick.Controls 1.0 import QtQuick.Window 2.0 Window { width: 640 height: 480 modality: Qt.ApplicationModal Button { text: qsTr("Move mouse cursor on me") anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter tooltip: "Move mouse cursor on me and hold till crash" } }