shift-shell/shell/contents/views/Desktop.qml

32 lines
583 B
QML
Raw Normal View History

import QtQuick 2.0
import org.kde.plasma.core 2.0 as PlasmaCore
import "../components"
Rectangle {
2014-09-14 15:52:19 +00:00
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: {
}
}
}
}