Compare commits
2 commits
f349e99110
...
74caaa8d0e
Author | SHA1 | Date | |
---|---|---|---|
74caaa8d0e | |||
462e72a364 |
2 changed files with 34 additions and 22 deletions
|
@ -7,7 +7,7 @@ repos:
|
||||||
rev: v8.18.2
|
rev: v8.18.2
|
||||||
hooks:
|
hooks:
|
||||||
- id: gitleaks
|
- id: gitleaks
|
||||||
stages: [commit]
|
stages: [pre-commit]
|
||||||
|
|
||||||
- repo: local
|
- repo: local
|
||||||
hooks:
|
hooks:
|
||||||
|
@ -17,4 +17,4 @@ repos:
|
||||||
language: system
|
language: system
|
||||||
files: .*
|
files: .*
|
||||||
exclude: .*\.(png|jpg|jpeg|age)
|
exclude: .*\.(png|jpg|jpeg|age)
|
||||||
stages: [commit]
|
stages: [pre-commit]
|
||||||
|
|
|
@ -18,22 +18,25 @@ MouseArea {
|
||||||
required property NotificationUrgency urgency
|
required property NotificationUrgency urgency
|
||||||
required property int index
|
required property int index
|
||||||
|
|
||||||
hoverEnabled: true
|
property var close: () => {
|
||||||
height: box.height
|
toast.parent.parent.model.remove(toast.index, 1);
|
||||||
width: box.width
|
}
|
||||||
|
|
||||||
BRectangle {
|
hoverEnabled: true
|
||||||
id: box
|
|
||||||
height: 26
|
height: 26
|
||||||
width: 200
|
width: 200
|
||||||
|
|
||||||
BRectangle {
|
BRectangle {
|
||||||
|
id: box
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 5
|
anchors.margins: 5
|
||||||
|
|
||||||
Row {
|
Row {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
IconImage {
|
IconImage {
|
||||||
source: Quickshell.iconPath(toast.appIcon)
|
source: Quickshell.iconPath(toast.appIcon)
|
||||||
height: 16
|
height: 16
|
||||||
|
@ -43,11 +46,20 @@ MouseArea {
|
||||||
Text {
|
Text {
|
||||||
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Button {
|
||||||
|
onClicked: toast.close()
|
||||||
|
width: 16
|
||||||
|
height: 16
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: toast.body
|
text: toast.body
|
||||||
|
width: parent.width
|
||||||
visible: box.state === "expand"
|
visible: box.state === "expand"
|
||||||
}
|
wrapMode: Text.Wrap
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +67,7 @@ MouseArea {
|
||||||
name: "expand"
|
name: "expand"
|
||||||
when: toast.containsMouse
|
when: toast.containsMouse
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: box
|
target: toast
|
||||||
width: 250
|
width: 250
|
||||||
height: 140
|
height: 140
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue