diff options
author | Ken Moore <ken@ixsystems.com> | 2018-01-08 14:19:58 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-01-08 14:19:58 -0500 |
commit | 9fe1845f0e2d75dc8a6d3d49fac6780b394b0067 (patch) | |
tree | 606fbe23fe8d0cd7311b4fe6910f5136dc9bccc8 /src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/RootDesktop.qml | |
parent | Changed color and removed comments from Matrix screensaver (diff) | |
download | lumina-9fe1845f0e2d75dc8a6d3d49fac6780b394b0067.tar.gz lumina-9fe1845f0e2d75dc8a6d3d49fac6780b394b0067.tar.bz2 lumina-9fe1845f0e2d75dc8a6d3d49fac6780b394b0067.zip |
Another large update to Lumina 2:
Starting to hook up the new QML window frame with the C++ backend.
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.qml | 11 |
1 files changed, 11 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 c564ee42..9122ce5b 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 @@ -23,6 +23,7 @@ import "." as QML import Lumina.Backend.RootDesktopObject 2.0 import Lumina.Backend.ScreenObject 2.0 +import Lumina.Backend.NativeWindowObject 2.0 Rectangle { id: rootCanvas @@ -55,4 +56,14 @@ Rectangle { z: 0+index } } + + //Setup the windows + Repeater{ + model: RootObject.windows + QML.NativeWindow{ + window_id: modelData + object: RootObject.window(modelData) + z: 100+index + } + } } |