2012-11-06 15:35:19 +01:00
|
|
|
/****************************************************************************
|
2012-09-19 15:57:22 +02:00
|
|
|
**
|
2016-01-15 14:59:14 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-09-19 15:57:22 +02:00
|
|
|
**
|
2012-11-06 15:35:19 +01:00
|
|
|
** This file is part of Qt Creator.
|
2012-09-19 15:57:22 +02:00
|
|
|
**
|
2012-11-06 15:35:19 +01:00
|
|
|
** 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
|
2016-01-15 14:59:14 +01:00
|
|
|
** 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.
|
2012-09-19 15:57:22 +02:00
|
|
|
**
|
2015-09-18 11:34:48 +02:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
2016-01-15 14:59:14 +01:00
|
|
|
** 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.
|
2012-09-19 15:57:22 +02:00
|
|
|
**
|
2012-11-06 15:35:19 +01:00
|
|
|
****************************************************************************/
|
2012-09-19 15:57:22 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2012-09-19 15:57:22 +02:00
|
|
|
|
|
|
|
|
#include <QQmlContext>
|
2012-10-23 14:39:18 +02:00
|
|
|
#include <QScopedPointer>
|
2012-09-19 15:57:22 +02:00
|
|
|
#include <private/qqmlopenmetaobject_p.h>
|
2012-10-23 14:39:18 +02:00
|
|
|
#include <private/qqmlvmemetaobject_p.h>
|
2012-09-19 15:57:22 +02:00
|
|
|
|
2013-03-05 12:19:19 +01:00
|
|
|
#include "nodeinstanceglobal.h"
|
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
namespace QmlDesigner {
|
2013-03-05 12:19:19 +01:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2015-05-19 13:11:39 +02:00
|
|
|
namespace QmlPrivateGate {
|
|
|
|
|
|
2015-05-20 20:45:48 +02:00
|
|
|
void createNewDynamicProperty(QObject *object, QQmlEngine *engine, const QString &name);
|
|
|
|
|
void registerNodeInstanceMetaObject(QObject *object, QQmlEngine *engine);
|
2015-05-19 13:11:39 +02:00
|
|
|
|
2012-10-23 14:39:18 +02:00
|
|
|
struct MetaPropertyData;
|
|
|
|
|
|
2015-05-19 13:11:39 +02:00
|
|
|
class MetaObject : public QQmlVMEMetaObject
|
2012-09-19 15:57:22 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2015-05-19 13:11:39 +02:00
|
|
|
~MetaObject();
|
|
|
|
|
|
2015-05-21 11:47:27 +02:00
|
|
|
static void registerNotifyPropertyChangeCallBack(void (*callback)(QObject*, const PropertyName &propertyName));
|
2012-09-19 15:57:22 +02:00
|
|
|
|
|
|
|
|
protected:
|
2015-05-20 20:45:48 +02:00
|
|
|
MetaObject(QObject *object, QQmlEngine *engine);
|
|
|
|
|
static MetaObject* getNodeInstanceMetaObject(QObject *object, QQmlEngine *engine);
|
2012-10-23 14:39:18 +02:00
|
|
|
|
2015-05-18 14:43:44 +02:00
|
|
|
void createNewDynamicProperty(const QString &name);
|
2012-10-23 14:39:18 +02:00
|
|
|
int openMetaCall(QMetaObject::Call _c, int _id, void **_a);
|
2015-09-15 12:18:48 +02:00
|
|
|
using QQmlVMEMetaObject::metaCall;
|
|
|
|
|
int metaCall(QMetaObject::Call _c, int _id, void **_a) override;
|
2012-09-19 15:57:22 +02:00
|
|
|
void notifyPropertyChange(int id);
|
2012-10-23 14:39:18 +02:00
|
|
|
void setValue(int id, const QVariant &value);
|
|
|
|
|
QVariant propertyWriteValue(int, const QVariant &);
|
|
|
|
|
|
|
|
|
|
QObject *myObject() const { return QQmlVMEMetaObject::object; }
|
|
|
|
|
QAbstractDynamicMetaObject *parent() const { return const_cast<QAbstractDynamicMetaObject *>(dynamicMetaObjectParent()); }
|
|
|
|
|
|
2013-09-10 15:01:15 +02:00
|
|
|
const QAbstractDynamicMetaObject *dynamicMetaObjectParent() const;
|
|
|
|
|
|
|
|
|
|
const QMetaObject *metaObjectParent() const;
|
|
|
|
|
|
|
|
|
|
int propertyOffset() const;
|
2012-10-23 14:39:18 +02:00
|
|
|
|
|
|
|
|
int count() const;
|
|
|
|
|
QByteArray name(int) const;
|
|
|
|
|
|
|
|
|
|
void copyTypeMetaObject();
|
2012-09-19 15:57:22 +02:00
|
|
|
|
|
|
|
|
private:
|
2012-10-23 14:39:18 +02:00
|
|
|
void init(QObject *, QQmlEngine *engine);
|
|
|
|
|
|
2014-10-09 13:28:32 +02:00
|
|
|
QPointer<QQmlContext> m_context;
|
2012-10-23 14:39:18 +02:00
|
|
|
QQmlOpenMetaObjectType *m_type;
|
|
|
|
|
QScopedPointer<MetaPropertyData> m_data;
|
|
|
|
|
//QAbstractDynamicMetaObject *m_parent;
|
|
|
|
|
QQmlPropertyCache *m_cache;
|
2015-05-19 13:11:39 +02:00
|
|
|
|
2015-05-20 20:45:48 +02:00
|
|
|
|
|
|
|
|
friend void createNewDynamicProperty(QObject *object, QQmlEngine *engine, const QString &name);
|
|
|
|
|
friend void registerNodeInstanceMetaObject(QObject *object, QQmlEngine *engine);
|
2012-09-19 15:57:22 +02:00
|
|
|
};
|
|
|
|
|
|
2015-05-19 13:11:39 +02:00
|
|
|
} // namespace QmlPrivateGate
|
2012-09-19 15:57:22 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlDesigner
|