feat: pizza cursor 🍕

This commit is contained in:
Kai Folf 2024-08-01 10:37:20 +07:00
parent e08759752d
commit 6f379c4913
Signed by: folfcoder
SSH key fingerprint: SHA256:Nwn09jQSW0yjKdDkM042MUSWzLnwGQaWUwtlCg8CHbs
3 changed files with 27 additions and 1 deletions

BIN
contents/images/pizza.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -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:"
}
}
}

View file

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