feat: align close button to right and fix egregious masking workaround
This commit is contained in:
parent
45cb11aa29
commit
9a85c9f0c0
2 changed files with 78 additions and 80 deletions
|
@ -11,45 +11,28 @@ PopupWindow {
|
||||||
rect.x: lbar.width * 1.2
|
rect.x: lbar.width * 1.2
|
||||||
window: popups.win
|
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
|
visible: true
|
||||||
color: "transparent"
|
|
||||||
height: 500
|
mask: Region {
|
||||||
|
item: popups
|
||||||
|
|
||||||
|
Region {
|
||||||
|
intersection: Intersection.Combine
|
||||||
|
height: popupcol.count * 26 + popupcol.count * popupcol.spacing + (mouseArea.containsMouse * 114)
|
||||||
width: 300
|
width: 300
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
color: "transparent"
|
||||||
|
height: popupcol.count * 26 + 300
|
||||||
|
width: 300
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: mouseArea
|
||||||
|
hoverEnabled: true
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
id: popupcol
|
id: popupcol
|
||||||
anchors.margins: lbar.width * 0.2
|
anchors.margins: lbar.width * 0.2
|
||||||
|
@ -57,6 +40,7 @@ PopupWindow {
|
||||||
model: ListModel {
|
model: ListModel {
|
||||||
id: data
|
id: data
|
||||||
Component.onCompleted: () => {
|
Component.onCompleted: () => {
|
||||||
|
console.log(popupcol.count);
|
||||||
Notifications.d.notification.connect(e => {
|
Notifications.d.notification.connect(e => {
|
||||||
data.insert(0, e);
|
data.insert(0, e);
|
||||||
});
|
});
|
||||||
|
@ -76,6 +60,10 @@ PopupWindow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
remove: Transition {
|
remove: Transition {
|
||||||
|
PropertyAction {
|
||||||
|
property: "ListView.delayRemove"
|
||||||
|
value: true
|
||||||
|
}
|
||||||
ParallelAnimation {
|
ParallelAnimation {
|
||||||
NumberAnimation {
|
NumberAnimation {
|
||||||
property: "opacity"
|
property: "opacity"
|
||||||
|
@ -88,9 +76,14 @@ PopupWindow {
|
||||||
duration: 300
|
duration: 300
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
PropertyAction {
|
||||||
|
property: "ListView.delayRemove"
|
||||||
|
value: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
spacing: 10
|
spacing: 10
|
||||||
delegate: Toast {}
|
delegate: Toast {}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ MouseArea {
|
||||||
|
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
height: 26
|
height: 26
|
||||||
width: 200
|
width: parent.width
|
||||||
|
|
||||||
BRectangle {
|
BRectangle {
|
||||||
id: box
|
id: box
|
||||||
|
@ -35,23 +35,29 @@ MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 5
|
anchors.margins: 5
|
||||||
|
|
||||||
Row {
|
RowLayout {
|
||||||
Layout.fillWidth: true
|
width: parent.width
|
||||||
|
|
||||||
IconImage {
|
IconImage {
|
||||||
source: Quickshell.iconPath(toast.appIcon)
|
source: toast.appIcon ? Quickshell.iconPath(toast.appIcon) : ""
|
||||||
height: 16
|
height: parent.height
|
||||||
|
width: height
|
||||||
visible: toast.appIcon
|
visible: toast.appIcon
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary
|
||||||
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.rightMargin: 16
|
||||||
Button {
|
Button {
|
||||||
onClicked: toast.close()
|
onClicked: toast.close()
|
||||||
width: 16
|
|
||||||
height: 16
|
height: 16
|
||||||
|
width: 16
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,7 +75,6 @@ MouseArea {
|
||||||
when: toast.containsMouse
|
when: toast.containsMouse
|
||||||
PropertyChanges {
|
PropertyChanges {
|
||||||
target: toast
|
target: toast
|
||||||
width: 250
|
|
||||||
height: 140
|
height: 140
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue