2016-08-05 16:01:11 +02:00
|
|
|
/*
|
2020-02-25 07:26:04 +01:00
|
|
|
SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*/
|
2016-08-05 16:01:11 +02:00
|
|
|
|
|
|
|
import QtQuick 2.1
|
|
|
|
|
2018-04-04 14:17:33 +02:00
|
|
|
import org.kde.plasma.core 2.0
|
2016-08-05 16:01:11 +02:00
|
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
2018-04-04 14:17:33 +02:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: Theme.backgroundColor
|
|
|
|
}
|
|
|
|
|
2020-02-12 16:32:53 +01:00
|
|
|
PlasmaExtras.Heading {
|
2016-08-05 16:01:11 +02:00
|
|
|
anchors.centerIn: parent
|
2020-02-12 16:32:53 +01:00
|
|
|
level: 1
|
2016-08-05 16:01:11 +02:00
|
|
|
text: wallpaper.configuration.DisplayText ||
|
2018-02-26 07:11:54 +01:00
|
|
|
i18n("<Please configure a text to display>")
|
2016-08-05 16:01:11 +02:00
|
|
|
}
|
|
|
|
}
|