aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/tooling/Property.qml
blob: ba21db566c27444518e147a1fe7e64bfcab87fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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 isConstant: 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
}