kdeconnect-kde/plugins/presenter/test.qml
Aleix Pol a40c6e8101 Submitted proof of concept for a presenter plugin
Will show a cursor so we can point at interesting things on the screen during
presentations.
2019-07-05 17:58:46 +02:00

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
}
}