feat: add a copy to clipboard button to notifications
This commit is contained in:
parent
20d66304f8
commit
d528b78753
2 changed files with 31 additions and 17 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue