shift-shell/shell/contents/views/Desktop.qml
2014-09-14 17:52:19 +02:00

31 lines
583 B
QML

import QtQuick 2.0
import org.kde.plasma.core 2.0 as PlasmaCore
import "../components"
Rectangle {
id: homescreen
width: 1024
height: 768
property Item containment;
property Item wallpaper;
onContainmentChanged: console.log(containment.pluginName)
onWallpaperChanged: {
console.log(wallpaper.pluginName + ' ' + wallpaper.opacity);
}
SatelliteStripe {
id: stripe
z: 1
MouseArea {
anchors.fill: parent
onPressed: {
}
onReleased: {
}
}
}
}