aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/cpptypes/deferredpropertytypes.h
blob: 1701d6ee91d3e03a866ef0484ef0e4c14310f315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef DEFERREDPROPERTYTYPES_H
#define DEFERREDPROPERTYTYPES_H

#include <QtCore/qobject.h>
#include <QtCore/qproperty.h>
#include <QtQml/qqmlregistration.h>
#include <QtQuick/qquickitem.h>

#include "testgroupedtype.h"
#include "testattachedtype.h"

// normal properties:

class TypeWithDeferredProperty : public QObject
{
    Q_OBJECT
    QML_ELEMENT
    Q_CLASSINFO("DeferredPropertyNames", "deferredProperty")

    Q_PROPERTY(QQuickItem *deferredProperty READ deferredProperty WRITE setDeferredProperty BINDABLE
                       bindableDeferredProperty)

    QProperty<QQuickItem *> m_deferredProperty { nullptr };

public:
    TypeWithDeferredProperty(QObject *parent = nullptr) : QObject(parent) { }

    QQuickItem *deferredProperty() const;
    void setDeferredProperty(QQuickItem *);
    QBindable<QQuickItem *> bindableDeferredProperty();
};

// group properties:

class TestTypeGroupedWithDeferred : public TestTypeGrouped
{
    Q_OBJECT
    Q_PROPERTY(int deferred READ getDeferred WRITE setDeferred BINDABLE bindableDeferred)
    QML_ANONYMOUS
    Q_CLASSINFO("DeferredPropertyNames", "deferred")

    QProperty<int> m_deferred { 0 };

public:
    int getDeferred() const { return m_deferred; }
    void setDeferred(int v) { m_deferred = v; }
    QBindable<int> bindableDeferred() const { return QBindable<int>(&m_deferred); }
};

class TypeWithDeferredGroup : public QObject
{
    Q_OBJECT
    QML_ELEMENT

    Q_PROPERTY(TestTypeGroupedWithDeferred *group READ getGroup)

    TestTypeGroupedWithDeferred m_group;

public:
    TypeWithDeferredGroup(QObject *parent = nullptr) : QObject(parent) { }

    TestTypeGroupedWithDeferred *getGroup() { return &m_group; }
};

// attached properties:

class TestTypeAttachedWithDeferred : public TestTypeAttached
{
    Q_OBJECT
    Q_PROPERTY(int deferred READ getDeferred WRITE setDeferred BINDABLE bindableDeferred)
    QML_ANONYMOUS
    Q_CLASSINFO("DeferredPropertyNames", "deferred")

    QProperty<int> m_deferred { 0 };

public:
    TestTypeAttachedWithDeferred(QObject *parent) : TestTypeAttached(parent) { }

    int getDeferred() const { return m_deferred; }
    void setDeferred(int v) { m_deferred = v; }
    QBindable<int> bindableDeferred() const { return QBindable<int>(&m_deferred); }
};

class DeferredAttached : public QObject
{
    Q_OBJECT
    QML_ELEMENT
    QML_ATTACHED(TestTypeAttachedWithDeferred)

public:
    DeferredAttached(QObject *parent = nullptr) : QObject(parent) { }

    static TestTypeAttachedWithDeferred *qmlAttachedProperties(QObject *);
};

// special:

class TypeWithDeferredComplexProperties : public TypeWithDeferredGroup
{
    Q_OBJECT
    QML_ELEMENT
    Q_CLASSINFO("DeferredPropertyNames", "group,DeferredAttached")

public:
    TypeWithDeferredComplexProperties(QObject *parent = nullptr) : TypeWithDeferredGroup(parent) { }
};

#endif // DEFERREDPROPERTYTYPES_H