123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtQml module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** 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 Lesser General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU Lesser
- ** General Public License version 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** 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-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QQMLPRIVATE_H
- #define QQMLPRIVATE_H
- //
- // W A R N I N G
- // -------------
- //
- // This file is not part of the Qt API. It exists purely as an
- // implementation detail. This header file may change from version to
- // version without notice, or even be removed.
- //
- // We mean it.
- //
- #include <QtQml/qtqmlglobal.h>
- #include <QtCore/qglobal.h>
- #include <QtCore/qvariant.h>
- #include <QtCore/qurl.h>
- QT_BEGIN_NAMESPACE
- namespace QQmlPrivate {
- struct CachedQmlUnit;
- }
- namespace QV4 {
- struct ExecutionEngine;
- namespace CompiledData {
- struct Unit;
- struct CompilationUnit;
- }
- typedef CompiledData::CompilationUnit *(*CompilationUnitFactoryFunction)();
- }
- namespace QmlIR {
- struct Document;
- typedef void (*IRLoaderFunction)(Document *, const QQmlPrivate::CachedQmlUnit *);
- }
- typedef QObject *(*QQmlAttachedPropertiesFunc)(QObject *);
- template <typename TYPE>
- class QQmlTypeInfo
- {
- public:
- enum {
- hasAttachedProperties = 0
- };
- };
- class QJSValue;
- class QJSEngine;
- class QQmlEngine;
- class QQmlCustomParser;
- namespace QQmlPrivate
- {
- void Q_QML_EXPORT qdeclarativeelement_destructor(QObject *);
- template<typename T>
- class QQmlElement : public T
- {
- public:
- virtual ~QQmlElement() {
- QQmlPrivate::qdeclarativeelement_destructor(this);
- }
- };
- template<typename T>
- void createInto(void *memory) { new (memory) QQmlElement<T>; }
- template<typename T>
- QObject *createParent(QObject *p) { return new T(p); }
- template<class From, class To, int N>
- struct StaticCastSelectorClass
- {
- static inline int cast() { return -1; }
- };
- template<class From, class To>
- struct StaticCastSelectorClass<From, To, sizeof(int)>
- {
- static inline int cast() { return int(reinterpret_cast<quintptr>(static_cast<To *>(reinterpret_cast<From *>(0x10000000)))) - 0x10000000; }
- };
- template<class From, class To>
- struct StaticCastSelector
- {
- typedef int yes_type;
- typedef char no_type;
- static yes_type checkType(To *);
- static no_type checkType(...);
- static inline int cast()
- {
- return StaticCastSelectorClass<From, To, sizeof(checkType(reinterpret_cast<From *>(0)))>::cast();
- }
- };
- template <typename T>
- struct has_attachedPropertiesMember
- {
- static bool const value = QQmlTypeInfo<T>::hasAttachedProperties;
- };
- template <typename T, bool hasMember>
- class has_attachedPropertiesMethod
- {
- public:
- typedef int yes_type;
- typedef char no_type;
- template<typename ReturnType>
- static yes_type checkType(ReturnType *(*)(QObject *));
- static no_type checkType(...);
- static bool const value = sizeof(checkType(&T::qmlAttachedProperties)) == sizeof(yes_type);
- };
- template <typename T>
- class has_attachedPropertiesMethod<T, false>
- {
- public:
- static bool const value = false;
- };
- template<typename T, int N>
- class AttachedPropertySelector
- {
- public:
- static inline QQmlAttachedPropertiesFunc func() { return 0; }
- static inline const QMetaObject *metaObject() { return 0; }
- };
- template<typename T>
- class AttachedPropertySelector<T, 1>
- {
- static inline QObject *attachedProperties(QObject *obj) {
- return T::qmlAttachedProperties(obj);
- }
- template<typename ReturnType>
- static inline const QMetaObject *attachedPropertiesMetaObject(ReturnType *(*)(QObject *)) {
- return &ReturnType::staticMetaObject;
- }
- public:
- static inline QQmlAttachedPropertiesFunc func() {
- return &attachedProperties;
- }
- static inline const QMetaObject *metaObject() {
- return attachedPropertiesMetaObject(&T::qmlAttachedProperties);
- }
- };
- template<typename T>
- inline QQmlAttachedPropertiesFunc attachedPropertiesFunc()
- {
- return AttachedPropertySelector<T, has_attachedPropertiesMethod<T, has_attachedPropertiesMember<T>::value>::value>::func();
- }
- template<typename T>
- inline const QMetaObject *attachedPropertiesMetaObject()
- {
- return AttachedPropertySelector<T, has_attachedPropertiesMethod<T, has_attachedPropertiesMember<T>::value>::value>::metaObject();
- }
- enum AutoParentResult { Parented, IncompatibleObject, IncompatibleParent };
- typedef AutoParentResult (*AutoParentFunction)(QObject *object, QObject *parent);
- struct RegisterType {
- int version;
- int typeId;
- int listId;
- int objectSize;
- void (*create)(void *);
- QString noCreationReason;
- const char *uri;
- int versionMajor;
- int versionMinor;
- const char *elementName;
- const QMetaObject *metaObject;
- QQmlAttachedPropertiesFunc attachedPropertiesFunction;
- const QMetaObject *attachedPropertiesMetaObject;
- int parserStatusCast;
- int valueSourceCast;
- int valueInterceptorCast;
- QObject *(*extensionObjectCreate)(QObject *);
- const QMetaObject *extensionMetaObject;
- QQmlCustomParser *customParser;
- int revision;
- // If this is extended ensure "version" is bumped!!!
- };
- struct RegisterInterface {
- int version;
- int typeId;
- int listId;
- const char *iid;
- };
- struct RegisterAutoParent {
- int version;
- AutoParentFunction function;
- };
- struct RegisterSingletonType {
- int version;
- const char *uri;
- int versionMajor;
- int versionMinor;
- const char *typeName;
- QJSValue (*scriptApi)(QQmlEngine *, QJSEngine *);
- QObject *(*qobjectApi)(QQmlEngine *, QJSEngine *);
- const QMetaObject *instanceMetaObject; // new in version 1
- int typeId; // new in version 2
- int revision; // new in version 2
- // If this is extended ensure "version" is bumped!!!
- };
- struct RegisterCompositeType {
- QUrl url;
- const char *uri;
- int versionMajor;
- int versionMinor;
- const char *typeName;
- };
- struct RegisterCompositeSingletonType {
- QUrl url;
- const char *uri;
- int versionMajor;
- int versionMinor;
- const char *typeName;
- };
- struct CachedQmlUnit {
- const QV4::CompiledData::Unit *qmlData;
- QV4::CompilationUnitFactoryFunction createCompilationUnit;
- QmlIR::IRLoaderFunction loadIR;
- };
- typedef const CachedQmlUnit *(*QmlUnitCacheLookupFunction)(const QUrl &url);
- struct RegisterQmlUnitCacheHook {
- int version;
- QmlUnitCacheLookupFunction lookupCachedQmlUnit;
- };
- enum RegistrationType {
- TypeRegistration = 0,
- InterfaceRegistration = 1,
- AutoParentRegistration = 2,
- SingletonRegistration = 3,
- CompositeRegistration = 4,
- CompositeSingletonRegistration = 5,
- QmlUnitCacheHookRegistration = 6
- };
- int Q_QML_EXPORT qmlregister(RegistrationType, void *);
- }
- QT_END_NAMESPACE
- #endif // QQMLPRIVATE_H
|