mirror of
https://github.com/folfcoder/plasma-sharkle.git
synced 2025-04-04 21:21:38 +00:00
feat: pizza cursor 🍕
This commit is contained in:
parent
e08759752d
commit
6f379c4913
3 changed files with 27 additions and 1 deletions
BIN
contents/images/pizza.png
Normal file
BIN
contents/images/pizza.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
|
@ -7,7 +7,7 @@ import org.kde.kirigami 2.5 as Kirigami
|
||||||
Item {
|
Item {
|
||||||
id: page
|
id: page
|
||||||
property alias cfg_sharkleColor: sharkleColor.currentIndex
|
property alias cfg_sharkleColor: sharkleColor.currentIndex
|
||||||
|
property alias cfg_pizzaCursor: pizzaCursor.checked
|
||||||
|
|
||||||
Kirigami.FormLayout {
|
Kirigami.FormLayout {
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
|
@ -18,5 +18,9 @@ Item {
|
||||||
Kirigami.FormData.label: "Sharkle Color:"
|
Kirigami.FormData.label: "Sharkle Color:"
|
||||||
model: ["Black", "White"]
|
model: ["Black", "White"]
|
||||||
}
|
}
|
||||||
|
CheckBox {
|
||||||
|
id: pizzaCursor
|
||||||
|
Kirigami.FormData.label: "Pizza Cursor:"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -19,6 +19,7 @@ PlasmoidItem {
|
||||||
property int soundIndex: 0
|
property int soundIndex: 0
|
||||||
property bool isIdle: true
|
property bool isIdle: true
|
||||||
property string sharkleColor: Plasmoid.configuration.sharkleColor == 1 ? "white" : "black"
|
property string sharkleColor: Plasmoid.configuration.sharkleColor == 1 ? "white" : "black"
|
||||||
|
property bool pizzaCursorEnabled: Plasmoid.configuration.pizzaCursor
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
id: animationTimer
|
id: animationTimer
|
||||||
|
@ -57,6 +58,20 @@ PlasmoidItem {
|
||||||
}
|
}
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
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: {
|
onClicked: {
|
||||||
// Set animation to hello
|
// Set animation to hello
|
||||||
isIdle = false
|
isIdle = false
|
||||||
|
@ -98,5 +113,12 @@ PlasmoidItem {
|
||||||
visible: !isIdle
|
visible: !isIdle
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Image {
|
||||||
|
id: pizzaCursor
|
||||||
|
source: "../images/pizza.png"
|
||||||
|
visible: false
|
||||||
|
width: 80
|
||||||
|
height: 80
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue