aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlplugindump/data/dumper/ExtendedType/types.h
blob: 5fdc5fa1e41548c38e2d9a528d568103194a51c4 (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
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef TYPES_H
#define TYPES_H

#include <QObject>
#include <QQmlListProperty>

class Type : public QObject
{
    Q_OBJECT
    Q_PROPERTY(int baseProperty MEMBER m_baseProperty)

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

private:
    int m_baseProperty;
};

class ExtendedType : public QObject
{
    Q_OBJECT
    Q_PROPERTY(int extendedProperty MEMBER m_extendedProperty)
    Q_PROPERTY(QQmlListProperty<QObject> data READ data)
    Q_CLASSINFO("DefaultProperty", "data")

public:
    ExtendedType(QObject *parent = nullptr)
        : QObject(parent) {}
    QQmlListProperty<QObject> data() { return QQmlListProperty<QObject>(this, &m_data); }

private:
    QList<QObject *> m_data;
    int m_extendedProperty;
};

class DerivedType1 : public Type
{
    Q_OBJECT
    Q_PROPERTY(int m_exendedProperty2 MEMBER m_extendedProperty2)

public:
    DerivedType1(QObject *parent = nullptr)
        : Type(parent) {}

private:
    int m_extendedProperty2;
};

class DerivedType2 : public DerivedType1
{
    Q_OBJECT
public:
    DerivedType2(QObject *parent = nullptr)
        : DerivedType1(parent) {}
};

#endif // TYPES_H