2019-10-22 10:52:53 +00:00
|
|
|
/*
|
2021-03-01 20:03:25 +00:00
|
|
|
* SPDX-FileCopyrightText: 2019 Marco Martin <mart@kde.org>
|
2019-10-22 10:52:53 +00:00
|
|
|
*
|
2021-03-01 20:03:25 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
2019-10-22 10:52:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
|
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
import org.kde.notificationmanager 1.0 as NotificationManager
|
|
|
|
|
|
|
|
|
|
FullContainer {
|
|
|
|
|
id: fullContainer
|
|
|
|
|
|
2020-12-07 15:19:45 +00:00
|
|
|
shouldBeVisible: applet && historyModel.count > 0
|
|
|
|
|
visible: shouldBeVisible
|
2021-04-09 20:59:05 +00:00
|
|
|
|
2019-10-22 10:52:53 +00:00
|
|
|
NotificationManager.Notifications {
|
|
|
|
|
id: historyModel
|
|
|
|
|
showExpired: true
|
|
|
|
|
showDismissed: true
|
2021-04-09 20:59:05 +00:00
|
|
|
expandUnread: true
|
2019-10-22 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
}
|