Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
src_qml_qqmllist.cpp
Go to the documentation of this file.
1// Copyright (C) 2020 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4namespace DocWrapper0 {
9 Q_PROPERTY(QQmlListProperty<Fruit> fruit READ fruit)
10
11 public:
12 // ...
13 QQmlListProperty<Fruit> fruit();
14 // ...
15};
17}
18
19namespace DocWrapper1 {
24 Q_PROPERTY(QQmlListProperty<Fruit> fruit READ fruit)
25
26 public:
27 // ...
28 QQmlListProperty<Fruit> fruit();
29 // ...
30};
32}
33
34namespace DocWrapper2 {
39 Q_PROPERTY(QQmlListProperty<Fruit> fruit READ fruit)
40
41 public:
42 // ...
43 QQmlListProperty<Fruit> fruit();
44 // ...
45};
47}
QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_APPENDQQmlListProperty< Fruit > fruit
QQmlListProperty< Fruit > fruit()
QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_REPLACE_IF_NOT_DEFAULTQQmlListProperty< Fruit > fruit
QQmlListProperty< Fruit > fruit()
QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_REPLACEQQmlListProperty< Fruit > fruit
QQmlListProperty< Fruit > fruit()
\inmodule QtCore
Definition qobject.h:103
#define QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_REPLACE_IF_NOT_DEFAULT
Definition qqmllist.h:20
#define QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_REPLACE
Definition qqmllist.h:21
#define QML_LIST_PROPERTY_ASSIGN_BEHAVIOR_APPEND
Definition qqmllist.h:19
#define Q_PROPERTY(...)
#define Q_OBJECT