aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickscreen/data/screen.qml
blob: 780b22f23de129ab6f27b1a855020366c047b139 (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.orientation
    property int priOrientation: Window.Screen.primaryOrientation
}