feat: add a copy to clipboard button to notifications

This commit is contained in:
Nydragon 2025-01-26 22:21:02 +01:00
parent 20d66304f8
commit d528b78753
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 31 additions and 17 deletions

View file

@ -1,6 +1,8 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import Quickshell.Widgets
import Quickshell
import "../../provider"
import "../../base"
@ -14,14 +16,7 @@ ColumnLayout {
width: parent.width
RowLayout {
BButton {
width: 30
height: 30
onClicked: () => {
Notifications.clearAll();
}
Layout.alignment: Qt.AlignRight
}
Layout.alignment: Qt.AlignRight
Switch {
id: sw
@ -31,6 +26,19 @@ ColumnLayout {
}
checked: NyshState.dndOn
}
BButton {
width: 30
height: 30
onClicked: () => {
Notifications.clearAll();
}
Layout.alignment: Qt.AlignRight
IconImage {
anchors.fill: parent
source: Quickshell.iconPath("window-close")
}
}
}
ListView {
@ -38,6 +46,7 @@ ColumnLayout {
Layout.fillHeight: true
Layout.fillWidth: true
clip: true
spacing: 10
width: parent.width

View file

@ -39,15 +39,6 @@ MouseArea {
visible: false
}
Shortcut {
sequences: [StandardKey.Copy]
onActivated: {
textEdit.text = toast.body;
textEdit.selectAll();
textEdit.copy();
}
}
BRectangle {
id: box
width: parent.width
@ -79,6 +70,20 @@ MouseArea {
font.pointSize: 12.5
}
BButton {
onClicked: () => {
textEdit.text = toast.body;
textEdit.selectAll();
textEdit.copy();
}
height: 30
width: 30
IconImage {
anchors.fill: parent
source: Quickshell.iconPath("clipboard")
}
}
BButton {
onClicked: toast.close()
height: 30