diff --git a/contents/images/pizza.png b/contents/images/pizza.png new file mode 100644 index 0000000..245df26 Binary files /dev/null and b/contents/images/pizza.png differ diff --git a/contents/ui/configGeneral.qml b/contents/ui/configGeneral.qml index 82b4a19..b7816d8 100644 --- a/contents/ui/configGeneral.qml +++ b/contents/ui/configGeneral.qml @@ -7,7 +7,7 @@ import org.kde.kirigami 2.5 as Kirigami Item { id: page property alias cfg_sharkleColor: sharkleColor.currentIndex - + property alias cfg_pizzaCursor: pizzaCursor.checked Kirigami.FormLayout { anchors.left: parent.left @@ -18,5 +18,9 @@ Item { Kirigami.FormData.label: "Sharkle Color:" model: ["Black", "White"] } + CheckBox { + id: pizzaCursor + Kirigami.FormData.label: "Pizza Cursor:" + } } } \ No newline at end of file diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 2248cbf..08dda92 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -19,6 +19,7 @@ PlasmoidItem { property int soundIndex: 0 property bool isIdle: true property string sharkleColor: Plasmoid.configuration.sharkleColor == 1 ? "white" : "black" + property bool pizzaCursorEnabled: Plasmoid.configuration.pizzaCursor Timer { id: animationTimer @@ -57,6 +58,20 @@ PlasmoidItem { } MouseArea { anchors.fill: parent + cursorShape: pizzaCursorEnabled ? Qt.BlankCursor : Qt.ArrowCursor + hoverEnabled: true + onPositionChanged: { + pizzaCursor.x = mouseX + pizzaCursor.y = mouseY + } + onEntered: { + pizzaCursor.visible = pizzaCursorEnabled && true + pizzaCursor.x = mouseX + pizzaCursor.y = mouseY + } + onExited: { + pizzaCursor.visible = pizzaCursorEnabled && false + } onClicked: { // Set animation to hello isIdle = false @@ -98,5 +113,12 @@ PlasmoidItem { visible: !isIdle } } + Image { + id: pizzaCursor + source: "../images/pizza.png" + visible: false + width: 80 + height: 80 + } } }