aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/tooling/Property.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/tooling/Property.qml')
-rw-r--r--src/imports/tooling/Property.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/imports/tooling/Property.qml b/src/imports/tooling/Property.qml
new file mode 100644
index 0000000000..f62b4ac992
--- /dev/null
+++ b/src/imports/tooling/Property.qml
@@ -0,0 +1,23 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QML
+
+Member {
+ property string type
+ property bool isPointer: false
+ property bool isReadonly: false
+ property bool isRequired: false
+ property bool isList: false
+ property bool isFinal: false
+ property bool isTypeConstant: false
+ property bool isPropertyConstant: false
+ property int revision: 0
+ property string bindable
+ property string read
+ property string write
+ property string reset
+ property string notify
+ property string privateClass
+ property int index: -1
+}