2018-02-26 07:15:25 +01:00
|
|
|
/*
|
2020-02-25 07:26:04 +01:00
|
|
|
SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*/
|
2018-02-26 07:15:25 +01:00
|
|
|
|
|
|
|
import QtQuick 2.1
|
|
|
|
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
|
2018-04-04 14:17:33 +02:00
|
|
|
import org.kde.plasma.core 2.0
|
2018-02-26 07:15:25 +01:00
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
|
|
|
|
|
|
import org.kde.plasma.private.%{APPNAMELC} 1.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
2018-04-04 14:17:33 +02:00
|
|
|
Rectangle {
|
|
|
|
anchors.fill: parent
|
|
|
|
color: Theme.backgroundColor
|
|
|
|
}
|
|
|
|
|
2018-02-26 07:15:25 +01:00
|
|
|
ColumnLayout {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
2020-02-12 08:32:53 -07:00
|
|
|
PlasmaExtras.Heading {
|
2018-02-26 07:15:25 +01:00
|
|
|
Layout.alignment: Qt.AlignCenter
|
2020-02-12 08:32:53 -07:00
|
|
|
level: 1
|
2018-02-26 07:15:25 +01:00
|
|
|
text: wallpaper.configuration.DisplayText ||
|
|
|
|
i18n("<Please configure a text to display>")
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.Label {
|
|
|
|
Layout.alignment: Qt.AlignCenter
|
|
|
|
text: HelloWorld.text
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|