mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Move from a C++ library + QML plugin to a QML plugin only for simplicity, since the homescreen switching architecture will be done from Plasma, and so use of the shell library only needs to be from QML.
57 lines
1.6 KiB
QML
57 lines
1.6 KiB
QML
/*
|
|
* SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
|
|
* SPDX-FileCopyrightText: 2018-2019 Kai Uwe Broulik <kde@privat.broulik.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
import QtQuick 2.8
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.2
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
|
|
import org.kde.notificationmanager 1.0 as NotificationManager
|
|
|
|
import org.kde.kcoreaddons 1.0 as KCoreAddons
|
|
|
|
import "util.js" as Util
|
|
|
|
PlasmaComponents.Label {
|
|
id: ageLabel
|
|
|
|
property int notificationType: model.type
|
|
property int jobState
|
|
property QtObject jobDetails
|
|
|
|
property var time
|
|
property PlasmaCore.DataSource timeSource
|
|
|
|
// notification created/updated time changed
|
|
onTimeChanged: updateAgoText()
|
|
|
|
Connections {
|
|
target: timeSource
|
|
// clock time changed
|
|
function onDataChanged() {
|
|
ageLabel.updateAgoText()
|
|
}
|
|
}
|
|
|
|
Component.onCompleted: updateAgoText()
|
|
|
|
function updateAgoText() {
|
|
ageLabel.agoText = Util.generateNotificationHeaderAgoText(time, jobState);
|
|
}
|
|
|
|
font.pixelSize: PlasmaCore.Theme.defaultFont.pixelSize * 0.8
|
|
|
|
// the "n minutes ago" text, for jobs we show remaining time instead
|
|
// updated periodically by a Timer hence this property with generate() function
|
|
property string agoText: ""
|
|
visible: text !== ""
|
|
opacity: 0.6
|
|
text: Util.generateNotificationHeaderRemainingText(notificationType, jobState, jobDetails) || agoText
|
|
}
|