aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-11 14:47:08 -0800
committerKen Moore <ken@ixsystems.com>2018-01-11 14:47:08 -0800
commit35a425977ca313e608950cdc25c7df727e47251d (patch)
tree4b44496622a8b3b5166355e3b24e97c2c0a0a7ff /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml
parentGet a lot more of the Native Window embed routine up and running. Actually us... (diff)
downloadlumina-35a425977ca313e608950cdc25c7df727e47251d.tar.gz
lumina-35a425977ca313e608950cdc25c7df727e47251d.tar.bz2
lumina-35a425977ca313e608950cdc25c7df727e47251d.zip
Get the panels all setup and functional.
The screen-dependent panels need to be moved to the RootDesktop QML object so the z-ordering is respected (panels on top), but other than that it seems to be working fine.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml
index 9122ce5b..f48f7751 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml
@@ -66,4 +66,14 @@ Rectangle {
z: 100+index
}
}
+
+ //Setup the Panels
+ Repeater{
+ model: RootObject.panels
+ QML.Panel{
+ panel_id: modelData
+ object: RootObject.panel(panel_id)
+ z: 10100+index
+ }
+ }
}
bgstack15