2022-04-22 11:37:01 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-03-01 10:37:53 +00:00
|
|
|
#ifndef DYNAMICMETA_H
|
|
|
|
#define DYNAMICMETA_H
|
|
|
|
|
|
|
|
#include <private/qobject_p.h>
|
|
|
|
#include <QtQmlIntegration/qqmlintegration.h>
|
|
|
|
|
|
|
|
struct FreeDeleter {
|
|
|
|
void operator()(QMetaObject *meta) { free(meta); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class MetaObjectData : public QDynamicMetaObjectData
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY_MOVE(MetaObjectData)
|
|
|
|
public:
|
|
|
|
MetaObjectData() = default;
|
|
|
|
~MetaObjectData() = default;
|
|
|
|
|
|
|
|
QMetaObject *toDynamicMetaObject(QObject *) override
|
|
|
|
{
|
|
|
|
return const_cast<QMetaObject *>(&T::staticMetaObject);
|
|
|
|
}
|
|
|
|
int metaCall(QObject *o, QMetaObject::Call call, int idx, void **argv) override
|
|
|
|
{
|
|
|
|
return o->qt_metacall(call, idx, argv);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DynamicMeta : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(int foo READ foo WRITE setFoo NOTIFY fooChanged FINAL)
|
|
|
|
QML_ELEMENT
|
|
|
|
public:
|
|
|
|
|
|
|
|
DynamicMeta(QObject *parent = nullptr)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
// deletes itself
|
|
|
|
QObjectPrivate::get(this)->metaObject = new MetaObjectData<DynamicMeta>;
|
|
|
|
}
|
|
|
|
|
|
|
|
int foo() const { return m_foo; }
|
|
|
|
void setFoo(int newFoo)
|
|
|
|
{
|
|
|
|
if (m_foo != newFoo) {
|
|
|
|
m_foo = newFoo;
|
|
|
|
emit fooChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_INVOKABLE int bar(int baz) { return baz + 12; }
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void fooChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_foo = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DynamicMetaSingleton : public DynamicMeta
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
QML_ELEMENT
|
|
|
|
QML_SINGLETON
|
|
|
|
Q_PROPERTY(DynamicMetaSingleton *itself READ itself CONSTANT FINAL)
|
|
|
|
public:
|
|
|
|
DynamicMetaSingleton(QObject *parent = nullptr) : DynamicMeta(parent)
|
|
|
|
{
|
|
|
|
QObjectPrivate *d = QObjectPrivate::get(this);
|
|
|
|
delete d->metaObject;
|
|
|
|
d->metaObject = new MetaObjectData<DynamicMetaSingleton>;
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicMetaSingleton *itself() { return this; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DYNAMICMETA_H
|