feat: add bouncy animation to buttons

This commit is contained in:
Nydragon 2025-02-01 19:19:30 +01:00
parent 47db00f317
commit 1e5b884a7a
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 40 additions and 31 deletions

View file

@ -21,11 +21,7 @@ PanelWindow {
bottom: true bottom: true
} }
margins.left: 2 width: 40
margins.top: 2
margins.bottom: 2
width: 30
color: "transparent" color: "transparent"
NotificationToasts { NotificationToasts {
@ -34,13 +30,16 @@ PanelWindow {
Rectangle { Rectangle {
color: "transparent" color: "transparent"
anchors.margins: 5 anchors.alignWhenCentered: true
anchors.centerIn: parent
height: parent.height height: parent.height
width: parent.width width: parent.width
ColumnLayout { ColumnLayout {
width: 30 width: 30
anchors.horizontalCenter: parent.horizontalCenter
Layout.maximumWidth: 30 Layout.maximumWidth: 30
// TODO: on click open a calendar view // TODO: on click open a calendar view

View file

@ -8,37 +8,46 @@ MouseArea {
cursorShape: Qt.PointingHandCursor cursorShape: Qt.PointingHandCursor
onClicked: {
click.color = "red";
b.start();
}
hoverEnabled: true hoverEnabled: true
BRectangle { BRectangle {
id: click id: self
anchors.fill: parent anchors.centerIn: parent
color: Qt.darker(Config.colourMain, 1.1)
ColorAnimation on color {
id: b
to: Qt.darker(Config.colourMain, 1.1)
duration: 300
}
Rectangle {
id: hover
visible: mouse.containsMouse
anchors.fill: parent
radius: parent.radius
color: "#9F9F9FC8"
}
Text { Text {
visible: mouse.text?.length > 0 visible: mouse.text?.length > 0
text: mouse.text text: mouse.text
anchors.centerIn: parent anchors.centerIn: parent
} }
states: [
State {
name: "moved"
when: mouse.containsMouse && !mouse.pressed
PropertyChanges {
target: self
width: mouse.width * 1.1
height: mouse.width * 1.1
}
},
State {
name: "clicked"
when: mouse.pressed
PropertyChanges {
target: self
width: mouse.width * 0.9
height: mouse.width * 0.9
}
}
]
transitions: Transition {
NumberAnimation {
properties: "width,height"
easing.type: Easing.OutBack
easing.overshoot: 5
duration: 200
}
}
} }
} }

View file

@ -1,16 +1,17 @@
import "../../base" import "../../base"
import "../../provider" import "../../provider"
import QtQuick
import Quickshell.Widgets import Quickshell.Widgets
BButton { BButton {
id: caffeine id: caffeine
onClicked: () => Inhibitor.toggle()
IconImage { IconImage {
anchors.fill: parent anchors.fill: parent
anchors.margins: 4 anchors.margins: 4
source: Inhibitor.active ? "root:assets/eye-open.svg" : "root:assets/eye-closed.svg" source: Inhibitor.active ? "root:assets/eye-open.svg" : "root:assets/eye-closed.svg"
} }
onClicked: () => Inhibitor.toggle()
} }