aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmltc/QmltcTests/cpptypes/typewithspecialproperties.h
blob: 8bf068ba353c7af62adecb1a30214ff666391594 (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
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef TYPEWITHSPECIALPROPERTIES_H
#define TYPEWITHSPECIALPROPERTIES_H

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

class TypeWithSpecialProperties : public QObject
{
    Q_OBJECT
    QML_ELEMENT

    Q_PROPERTY(int x MEMBER m_x)
    Q_PROPERTY(QString y MEMBER m_y)
    Q_PROPERTY(double z BINDABLE bindableZ READ default WRITE default)

    // for alias attributes:
    Q_PROPERTY(QString xx READ xx CONSTANT)
    Q_PROPERTY(QString xy READ xy WRITE setXy RESET resetXy NOTIFY xyChanged)

    QProperty<int> m_x;
    QProperty<double> m_z;

    QProperty<QString> m_xx;
    QProperty<QString> m_xy;

public:
    QProperty<QString> m_y;

    TypeWithSpecialProperties(QObject *parent = nullptr) : QObject(parent) { }

    QBindable<double> bindableZ() { return QBindable<double>(&m_z); }

    QString xx() const { return m_xx; }
    QString xy() const { return m_xy; }
    void setXy(const QString &xy)
    {
        m_xy = xy;
        Q_EMIT xyChanged();
    }
    void resetXy() { m_xy = QStringLiteral("reset"); }

Q_SIGNALS:
    void xyChanged();
};

#endif // TYPEWITHSPECIALPROPERTIES_H