feat: father I am sorry for I have sinned
Shitty workaround for "dynamic" clickable areas
This commit is contained in:
parent
5309cf0de6
commit
05c0df3478
2 changed files with 35 additions and 2 deletions
|
@ -12,13 +12,44 @@ PopupWindow {
|
|||
window: popups.win
|
||||
}
|
||||
mask: Region {
|
||||
id: mask
|
||||
item: popupcol
|
||||
intersection: Intersection.Xor
|
||||
Region {
|
||||
item: popupcol.children[0]
|
||||
intersection: Intersection.Xor
|
||||
}
|
||||
|
||||
Region {
|
||||
item: popupcol.children[1]
|
||||
intersection: Intersection.Xor
|
||||
}
|
||||
|
||||
Region {
|
||||
item: popupcol.children[2]
|
||||
intersection: Intersection.Xor
|
||||
}
|
||||
|
||||
Region {
|
||||
item: popupcol.children[3]
|
||||
intersection: Intersection.Xor
|
||||
}
|
||||
|
||||
Region {
|
||||
item: popupcol.children[4]
|
||||
intersection: Intersection.Xor
|
||||
}
|
||||
|
||||
Region {
|
||||
item: popupcol.children[5]
|
||||
intersection: Intersection.Xor
|
||||
}
|
||||
}
|
||||
|
||||
visible: true
|
||||
color: "transparent"
|
||||
height: 500
|
||||
width: 400
|
||||
width: 300
|
||||
ListView {
|
||||
id: popupcol
|
||||
anchors.margins: lbar.width * 0.2
|
||||
|
|
|
@ -14,6 +14,7 @@ MouseArea {
|
|||
required property string summary
|
||||
required property string body
|
||||
required property string appIcon
|
||||
required property string image
|
||||
required property NotificationUrgency urgency
|
||||
required property int index
|
||||
|
||||
|
@ -36,10 +37,11 @@ MouseArea {
|
|||
IconImage {
|
||||
source: Quickshell.iconPath(toast.appIcon)
|
||||
height: 16
|
||||
visible: toast.appIcon
|
||||
}
|
||||
|
||||
Text {
|
||||
text: toast.appName + ": " + toast.summary
|
||||
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
||||
}
|
||||
}
|
||||
Text {
|
||||
|
|
Loading…
Add table
Reference in a new issue