aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/extendedTypes.qml
blob: a7012e1b2934dbbbaded43357367d67097cdc600 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQml

QtObject {
    property int a: Qt.LeftButton + 5
    property size b: Qt.size(10, 20)
    property int c: b.width + b.height
    property string d: b.toString();
    property int e: Locale.ImperialUKSystem

    Component.onCompleted: console.log(a, b, c)
}