2023-02-21 10:47:08 +00:00
|
|
|
pragma Strict
|
|
|
|
|
|
|
|
import TestTypes
|
|
|
|
import QtQml
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property rect r: Qt.rect(1, 2, 3, 4)
|
|
|
|
property point p: Qt.point(5, 6);
|
2024-08-09 13:40:24 +00:00
|
|
|
property ObjectType o: ObjectType {
|
|
|
|
id: oo
|
2024-08-09 15:01:38 +00:00
|
|
|
objectName: "short"
|
2024-08-09 13:40:24 +00:00
|
|
|
property int makeItASeparateType: 1
|
|
|
|
}
|
2023-02-21 10:47:08 +00:00
|
|
|
|
|
|
|
property withLength wr: r
|
|
|
|
property withLength wp: p
|
|
|
|
property withLength wi: 17
|
2024-08-09 13:40:24 +00:00
|
|
|
property withLength wo: oo
|
2024-08-09 15:01:38 +00:00
|
|
|
property withLength wz: ObjectType {
|
|
|
|
objectName: "looooong"
|
|
|
|
property int makeItASeparateType: 2
|
|
|
|
}
|
2023-02-21 10:47:08 +00:00
|
|
|
}
|