mirror of
https://github.com/vinceliuice/MacSequoia-kde.git
synced 2024-11-22 05:40:09 +00:00
36 lines
1.2 KiB
QML
36 lines
1.2 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2016 David Edmundson <davidedmundson@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
ColumnLayout {
|
|
readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
|
|
|
|
PlasmaComponents3.Label {
|
|
text: Qt.formatTime(timeSource.data["Local"]["DateTime"])
|
|
style: softwareRendering ? Text.Outline : Text.Normal
|
|
styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
|
|
font.pointSize: 48
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
PlasmaComponents3.Label {
|
|
text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate)
|
|
style: softwareRendering ? Text.Outline : Text.Normal
|
|
styleColor: softwareRendering ? PlasmaCore.ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
|
|
font.pointSize: 24
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
PlasmaCore.DataSource {
|
|
id: timeSource
|
|
engine: "time"
|
|
connectedSources: ["Local"]
|
|
interval: 1000
|
|
}
|
|
}
|