plasma-framework/templates/plasma-wallpaper/package/contents/ui/main.qml
Friedrich W. H. Kossebau a08449a9a2 templates: Convert license statements to SPDX headers
Summary: Also consistently use LGPL-2.1-or-later as default license

Reviewers: #plasma, cordlandwehr

Reviewed By: cordlandwehr

Subscribers: kde-frameworks-devel

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D27640
2020-02-29 13:25:01 +01:00

26 lines
527 B
QML

/*
SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
SPDX-License-Identifier: LGPL-2.1-or-later
*/
import QtQuick 2.1
import org.kde.plasma.core 2.0
import org.kde.plasma.extras 2.0 as PlasmaExtras
Item {
id: root
Rectangle {
anchors.fill: parent
color: Theme.backgroundColor
}
PlasmaExtras.Heading {
anchors.centerIn: parent
level: 1
text: wallpaper.configuration.DisplayText ||
i18n("<Please configure a text to display>")
}
}