From d528b78753d5bd3d8f4234d130054579a5cec78c Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 26 Jan 2025 22:21:02 +0100 Subject: [PATCH] feat: add a copy to clipboard button to notifications --- .../notifications/NotificationInbox.qml | 25 +++++++++++++------ .../notifications/NotificationToast.qml | 23 ++++++++++------- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/src/widgets/notifications/NotificationInbox.qml b/src/widgets/notifications/NotificationInbox.qml index fc7e563..0eacb17 100644 --- a/src/widgets/notifications/NotificationInbox.qml +++ b/src/widgets/notifications/NotificationInbox.qml @@ -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 diff --git a/src/widgets/notifications/NotificationToast.qml b/src/widgets/notifications/NotificationToast.qml index e3a425c..979c678 100644 --- a/src/widgets/notifications/NotificationToast.qml +++ b/src/widgets/notifications/NotificationToast.qml @@ -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