aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickscreen/data/screen.qml
blob: c246b3cd835c547b4da541e0aa69a1887155179d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
import QtQuick.Window 2.0 as Window

Item {
    width: 100
    height: 100
    property int w: Window.Screen.width
    property int h: Window.Screen.height
    property int curOrientation: Window.Screen.orientation
    property int priOrientation: Window.Screen.primaryOrientation
    property int updateMask: Window.Screen.orientationUpdateMask
    property real devicePixelRatio: Window.Screen.devicePixelRatio

    Window.Screen.orientationUpdateMask: Qt.LandscapeOrientation | Qt.InvertedLandscapeOrientation
}