1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import QtQuick 2.0
Item {
property int x: 10
property var x: 10 // 311 14 16
readonly property string x: "abc"
property var x: "abc" // 311 14 16
property string x: true
property var x: true // 311 14 16
property color x: Qt.rgba(1, 1, 1, 1)
property var x: Qt.rgba(1, 1, 1, 1) // 311 14 16
property point x: Qt.point(1, 1)
property var x: Qt.point(1, 1) // 311 14 16
property rect x: Qt.rect(1, 1, 1, 1)
property var x: Qt.rect(1, 1, 1, 1) // 311 14 16
property size x: Qt.size(1, 1)
property var x: Qt.size(1, 1) // 311 14 16
property vector3d x: Qt.vector3d(1, 1, 1)
property var x: Qt.vector3d(1, 1, 1) // 311 14 16
default property int x
required property var x
}
|