feat: add clear all button for notifications
This commit is contained in:
parent
9aa6046cdd
commit
3fb7f739e2
4 changed files with 64 additions and 37 deletions
|
@ -31,6 +31,13 @@ Singleton {
|
||||||
|
|
||||||
property alias list: server.trackedNotifications
|
property alias list: server.trackedNotifications
|
||||||
|
|
||||||
|
function clearAll() {
|
||||||
|
const len = server.trackedNotifications.values.length;
|
||||||
|
for (let i = 0; i < len; i++) {
|
||||||
|
list.values[0].dismiss();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
signal incomingRemoved(id: int)
|
signal incomingRemoved(id: int)
|
||||||
signal incomingAdded(id: Notification)
|
signal incomingAdded(id: Notification)
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,7 @@ Singleton {
|
||||||
return day ? "weather-few-clouds" : "weather-few-clouds-night";
|
return day ? "weather-few-clouds" : "weather-few-clouds-night";
|
||||||
case "122":
|
case "122":
|
||||||
return "weather-overcast";
|
return "weather-overcast";
|
||||||
|
case "176":
|
||||||
case "296":
|
case "296":
|
||||||
return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
|
return day ? "weather-showers-scattered" : "weather-showers-scattered-night";
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -1,15 +1,32 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import "../../provider"
|
import "../../provider"
|
||||||
|
import "../../base"
|
||||||
|
|
||||||
ListView {
|
ColumnLayout {
|
||||||
|
Layout.preferredHeight: 1000
|
||||||
|
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.fillWidth: true
|
||||||
|
|
||||||
|
width: parent.width
|
||||||
|
|
||||||
|
BButton {
|
||||||
|
width: 30
|
||||||
|
height: 30
|
||||||
|
onClicked: () => {
|
||||||
|
Notifications.clearAll();
|
||||||
|
}
|
||||||
|
Layout.alignment: Qt.AlignRight
|
||||||
|
}
|
||||||
|
|
||||||
|
ListView {
|
||||||
id: popupcol
|
id: popupcol
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: 1000
|
|
||||||
spacing: 10
|
spacing: 10
|
||||||
width: parent.width
|
width: parent.width
|
||||||
Component.onCompleted: () => {}
|
|
||||||
|
|
||||||
model: Notifications.list
|
model: Notifications.list
|
||||||
|
|
||||||
|
@ -50,4 +67,5 @@ ListView {
|
||||||
value: true
|
value: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -136,6 +136,7 @@ MouseArea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GridLayout {
|
GridLayout {
|
||||||
id: actions
|
id: actions
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
Loading…
Add table
Reference in a new issue