2020-02-25 07:26:04 +01:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*/
|
2015-11-30 14:58:35 +01:00
|
|
|
|
|
|
|
import QtQuick 2.1
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.plasmoid 2.0
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Plasmoid.fullRepresentation: ColumnLayout {
|
|
|
|
anchors.fill: parent
|
2017-05-19 14:26:08 +02:00
|
|
|
Image {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: "../images/pairs.svgz"
|
2015-11-30 14:58:35 +01:00
|
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
2017-05-19 14:26:08 +02:00
|
|
|
Layout.alignment: Qt.AlignCenter
|
2015-11-30 14:58:35 +01:00
|
|
|
text: "This is Plasma!"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|