mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
31 lines
1.1 KiB
QML
31 lines
1.1 KiB
QML
import QtQuick 2.8
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Controls 2.5
|
|
import org.kde.plasma.core 2.0
|
|
|
|
ColumnLayout {
|
|
readonly property bool softwareRendering: GraphicsInfo.api === GraphicsInfo.Software
|
|
|
|
Label {
|
|
text: Qt.formatTime(timeSource.data["Local"]["DateTime"])
|
|
color: ColorScope.textColor
|
|
style: softwareRendering ? Text.Outline : Text.Normal
|
|
styleColor: softwareRendering ? ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
|
|
font.pointSize: 40
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
Label {
|
|
text: Qt.formatDate(timeSource.data["Local"]["DateTime"], Qt.DefaultLocaleLongDate)
|
|
color: ColorScope.textColor
|
|
style: softwareRendering ? Text.Outline : Text.Normal
|
|
styleColor: softwareRendering ? ColorScope.backgroundColor : "transparent" //no outline, doesn't matter
|
|
font.pointSize: 16
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
DataSource {
|
|
id: timeSource
|
|
engine: "time"
|
|
connectedSources: ["Local"]
|
|
interval: 1000
|
|
}
|
|
}
|