/usr/share/qtmir/qtmir-demo-shell/qml-demo-shell.qml is in qtmir-tests 0.4.8+16.04.20160330-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import QtQuick 2.3
import QtQuick.Window 2.2 as QQW
import Unity.Screens 0.1
Instantiator {
id: root
property var screens: Screens{}
model: screens
QQW.Window {
id: window
visible: true
Shell{ anchors.fill: parent }
Component.onCompleted: {
print("HEY", screen, screen.geometry, outputType, Screens.HDMIA)
}
}
}
|