kdeconnect-kde/plugins/presenter/test.qml

22 lines
300 B
QML
Raw Normal View History

import QtQuick 2.10
Rectangle
{
color: "red"
width: 500
height: 500
MouseArea {
id: mouse
anchors.fill: parent
hoverEnabled: true
}
Presenter {
anchors.fill: parent
xPos: mouse.mouseX/width
yPos: mouse.mouseY/height
}
}