aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickscreen/data/screen.qml
blob: 971975f8923257b5fc6197d4396b2e2d9df1cfcf (plain)
1
2
3
4
5
6
7
8
9
10
11
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.currentOrientation
    property int priOrientation: Window.Screen.primaryOrientation
}