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

View file

@ -39,15 +39,6 @@ MouseArea {
visible: false visible: false
} }
Shortcut {
sequences: [StandardKey.Copy]
onActivated: {
textEdit.text = toast.body;
textEdit.selectAll();
textEdit.copy();
}
}
BRectangle { BRectangle {
id: box id: box
width: parent.width width: parent.width
@ -79,6 +70,20 @@ MouseArea {
font.pointSize: 12.5 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 { BButton {
onClicked: toast.close() onClicked: toast.close()
height: 30 height: 30