tests/auto/declarative/qdeclarativeviewer/data/orientation.qml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:19:32 +0300
changeset 37 758a864f9613
parent 33 3e2da88830cd
permissions -rw-r--r--
Revision: 201037 Kit: 201039

import Qt 4.7
Rectangle {
    color: "black"
    width: (runtime.orientation == Orientation.Landscape || runtime.orientation == Orientation.LandscapeInverted) ? 300 : 200
    height: (runtime.orientation == Orientation.Landscape || runtime.orientation == Orientation.LandscapeInverted) ? 200 : 300
    Text {
        text: {
            if (runtime.orientation == Orientation.Portrait)
                return "Portrait"
            if (runtime.orientation == Orientation.PortraitInverted)
                return "PortraitInverted"
            if (runtime.orientation == Orientation.Landscape)
                return "Landscape"
            if (runtime.orientation == Orientation.LandscapeInverted)
                return "LandscapeInverted"
        }
        color: "white"
    }
}