// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause import QtQuick 2.0 //![0] // application.qml Button { width: 100; height: 100 onButtonClicked: (xPos, yPos)=> { console.log("Mouse clicked at " + xPos + "," + yPos) } } //![0]