mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
31 lines
577 B
QML
31 lines
577 B
QML
import QtQuick 2.0
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import "../components"
|
|
|
|
Rectangle {
|
|
id: root
|
|
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: {
|
|
}
|
|
}
|
|
}
|
|
}
|