aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml-type-descriptions/qmlruntime.qmltypes
blob: 2c930c93002f5e7f59f98aa0f64fb1675aa47f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick.tooling 1.0

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.

Module {
    Component {
        name: "QDeclarativeViewer.Screen"
        exports: [
            "QDeclarativeViewer/Screen 1.0"
        ]
        Enum {
            name: "Orientation"
            values: {
                "UnknownOrientation": 0,
                "Portrait": 1,
                "Landscape": 2
            }
        }
        Property { name: "orientation"; type: "Orientation" }
    }
}