a40c6e8101
Will show a cursor so we can point at interesting things on the screen during presentations.
21 lines
300 B
QML
21 lines
300 B
QML
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
|
|
}
|
|
}
|