forked from qt-creator/qt-creator
		
	MetaInfo cannot depend on ObjectNodeInstance. I forward the QObject and the QmlEngine all the way through. The commented code in metainfo.cpp is about defining a context for the root item. The feature is basically unused, but we can bring it back using a callback later. Change-Id: I8f099b06c848e2faeaafc011ac6bd313192a64bd Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
		
			
				
	
	
		
			908 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			908 lines
		
	
	
		
			25 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /****************************************************************************
 | |
| **
 | |
| ** Copyright (C) 2015 The Qt Company Ltd.
 | |
| ** Contact: http://www.qt.io/licensing
 | |
| **
 | |
| ** This file is part of Qt Creator.
 | |
| **
 | |
| ** 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 http://www.qt.io/terms-conditions.  For further information
 | |
| ** use the contact form at http://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 2.1 or version 3 as published by the Free
 | |
| ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
 | |
| ** LICENSE.LGPLv3 included in the packaging of this file.  Please review the
 | |
| ** following information to ensure the GNU Lesser General Public License
 | |
| ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
 | |
| ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | |
| **
 | |
| ** In addition, as a special exception, The Qt Company gives you certain additional
 | |
| ** rights.  These rights are described in The Qt Company LGPL Exception
 | |
| ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 | |
| **
 | |
| ****************************************************************************/
 | |
| 
 | |
| #include "objectnodeinstance.h"
 | |
| 
 | |
| #include <enumeration.h>
 | |
| #include <qmlprivategate.h>
 | |
| 
 | |
| #include <QEvent>
 | |
| #include <QQmlContext>
 | |
| #include <QQmlError>
 | |
| #include <QQmlEngine>
 | |
| #include <QQmlProperty>
 | |
| #include <QQmlComponent>
 | |
| #include <QSharedPointer>
 | |
| #include <QFileInfo>
 | |
| #include <QFileSystemWatcher>
 | |
| #include <QPixmapCache>
 | |
| #include <QQuickItem>
 | |
| #include <QQmlExpression>
 | |
| #include <QQmlParserStatus>
 | |
| #include <QTextDocument>
 | |
| #include <QLibraryInfo>
 | |
| 
 | |
| static bool isSimpleExpression(const QString &expression)
 | |
| {
 | |
|     if (expression.startsWith(QStringLiteral("{")))
 | |
|         return false;
 | |
| 
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| namespace QmlDesigner {
 | |
| namespace Internal {
 | |
| 
 | |
| ObjectNodeInstance::ObjectNodeInstance(QObject *object)
 | |
|     : m_object(object),
 | |
|       m_instanceId(-1),
 | |
|       m_deleteHeldInstance(true),
 | |
|       m_isInLayoutable(false)
 | |
| {
 | |
|     if (object)
 | |
|         QObject::connect(m_object.data(), &QObject::destroyed, [=] {
 | |
| 
 | |
|             /*This lambda is save because m_nodeInstanceServer
 | |
|             is a smartpointer and object is a dangling pointer anyway.*/
 | |
| 
 | |
|             if (m_nodeInstanceServer)
 | |
|                 m_nodeInstanceServer->removeInstanceRelationsipForDeletedObject(object);
 | |
|         });
 | |
| }
 | |
| 
 | |
| ObjectNodeInstance::~ObjectNodeInstance()
 | |
| {
 | |
|     destroy();
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::destroy()
 | |
| {
 | |
|     if (deleteHeldInstance()) {
 | |
|         // Remove from old property
 | |
|         if (object()) {
 | |
|             setId(QString());
 | |
|             if (m_instanceId >= 0) {
 | |
|                 reparent(parentInstance(), m_parentProperty, ObjectNodeInstance::Pointer(), PropertyName());
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (object()) {
 | |
|             QObject *obj = object();
 | |
|             m_object.clear();
 | |
|             delete obj;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     m_instanceId = -1;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setInstanceId(qint32 id)
 | |
| {
 | |
|     m_instanceId = id;
 | |
| }
 | |
| 
 | |
| qint32 ObjectNodeInstance::instanceId() const
 | |
| {
 | |
|     return m_instanceId;
 | |
| }
 | |
| 
 | |
| NodeInstanceServer *ObjectNodeInstance::nodeInstanceServer() const
 | |
| {
 | |
|     return m_nodeInstanceServer.data();
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setNodeInstanceServer(NodeInstanceServer *server)
 | |
| {
 | |
|     Q_ASSERT(!m_nodeInstanceServer.data());
 | |
| 
 | |
|     m_nodeInstanceServer = server;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::initializePropertyWatcher(const ObjectNodeInstance::Pointer &objectNodeInstance)
 | |
| {
 | |
|     m_signalSpy.setObjectNodeInstance(objectNodeInstance);
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::initialize(const ObjectNodeInstance::Pointer &objectNodeInstance)
 | |
| {
 | |
|     initializePropertyWatcher(objectNodeInstance);
 | |
|     QmlPrivateGate::registerNodeInstanceMetaObject(objectNodeInstance->object(), objectNodeInstance->nodeInstanceServer()->engine());
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setId(const QString &id)
 | |
| {
 | |
|     if (!m_id.isEmpty() && context()) {
 | |
|         context()->engine()->rootContext()->setContextProperty(m_id, 0);
 | |
|     }
 | |
| 
 | |
|     if (!id.isEmpty() && context()) {
 | |
|         context()->engine()->rootContext()->setContextProperty(id, object()); // will also force refresh of all bindings
 | |
|     }
 | |
| 
 | |
|     m_id = id;
 | |
| }
 | |
| 
 | |
| QString ObjectNodeInstance::id() const
 | |
| {
 | |
|     return m_id;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isTransition() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isPositioner() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isQuickItem() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isQuickWindow() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isLayoutable() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::equalGraphicsItem(QGraphicsItem * /*item*/) const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| QTransform ObjectNodeInstance::transform() const
 | |
| {
 | |
|     return QTransform();
 | |
| }
 | |
| 
 | |
| QTransform ObjectNodeInstance::contentTransform() const
 | |
| {
 | |
|     return QTransform();
 | |
| }
 | |
| 
 | |
| QTransform ObjectNodeInstance::customTransform() const
 | |
| {
 | |
|     return QTransform();
 | |
| }
 | |
| 
 | |
| QTransform ObjectNodeInstance::contentItemTransform() const
 | |
| {
 | |
|     return QTransform();
 | |
| }
 | |
| 
 | |
| QTransform ObjectNodeInstance::sceneTransform() const
 | |
| {
 | |
|     return QTransform();
 | |
| }
 | |
| 
 | |
| double ObjectNodeInstance::rotation() const
 | |
| {
 | |
|     return 0.0;
 | |
| }
 | |
| 
 | |
| double ObjectNodeInstance::scale() const
 | |
| {
 | |
|     return 1.0;
 | |
| }
 | |
| 
 | |
| QList<QGraphicsTransform *> ObjectNodeInstance::transformations() const
 | |
| {
 | |
|     QList<QGraphicsTransform *> transformationsList;
 | |
| 
 | |
|     return transformationsList;
 | |
| }
 | |
| 
 | |
| QPointF ObjectNodeInstance::transformOriginPoint() const
 | |
| {
 | |
|     return QPoint();
 | |
| }
 | |
| 
 | |
| double ObjectNodeInstance::zValue() const
 | |
| {
 | |
|     return 0.0;
 | |
| }
 | |
| 
 | |
| double ObjectNodeInstance::opacity() const
 | |
| {
 | |
|     return 1.0;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::hasAnchor(const PropertyName &/*name*/) const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isAnchoredBySibling() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isAnchoredByChildren() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| QPair<PropertyName, ServerNodeInstance> ObjectNodeInstance::anchor(const PropertyName &/*name*/) const
 | |
| {
 | |
|     return qMakePair(PropertyName(), ServerNodeInstance());
 | |
| }
 | |
| 
 | |
| 
 | |
| static bool isList(const QQmlProperty &property)
 | |
| {
 | |
|     return property.propertyTypeCategory() == QQmlProperty::List;
 | |
| }
 | |
| 
 | |
| static bool isObject(const QQmlProperty &property)
 | |
| {
 | |
|     return (property.propertyTypeCategory() == QQmlProperty::Object) ||
 | |
|             //QVariant can also store QObjects. Lets trust our model.
 | |
|            (QLatin1String(property.propertyTypeName()) == QLatin1String("QVariant"));
 | |
| }
 | |
| 
 | |
| static QVariant objectToVariant(QObject *object)
 | |
| {
 | |
|     return QVariant::fromValue(object);
 | |
| }
 | |
| 
 | |
| static void removeObjectFromList(const QQmlProperty &property, QObject *objectToBeRemoved, QQmlEngine * engine)
 | |
| {
 | |
|     QQmlListReference listReference(property.object(), property.name().toUtf8(), engine);
 | |
| 
 | |
|     if (!QmlPrivateGate::hasFullImplementedListInterface(listReference)) {
 | |
|         qWarning() << "Property list interface not fully implemented for Class " << property.property().typeName() << " in property " << property.name() << "!";
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     int count = listReference.count();
 | |
| 
 | |
|     QObjectList objectList;
 | |
| 
 | |
|     for (int i = 0; i < count; i ++) {
 | |
|         QObject *listItem = listReference.at(i);
 | |
|         if (listItem && listItem != objectToBeRemoved)
 | |
|             objectList.append(listItem);
 | |
|     }
 | |
| 
 | |
|     listReference.clear();
 | |
| 
 | |
|     foreach (QObject *object, objectList)
 | |
|         listReference.append(object);
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::removeFromOldProperty(QObject *object, QObject *oldParent, const PropertyName &oldParentProperty)
 | |
| {
 | |
|     QQmlProperty property(oldParent, oldParentProperty, context());
 | |
| 
 | |
|     if (!property.isValid())
 | |
|         return;
 | |
| 
 | |
|     if (isList(property)) {
 | |
|         removeObjectFromList(property, object, nodeInstanceServer()->engine());
 | |
|     } else if (isObject(property)) {
 | |
|         if (nodeInstanceServer()->hasInstanceForObject(oldParent)) {
 | |
|             nodeInstanceServer()->instanceForObject(oldParent).resetProperty(oldParentProperty);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     if (object && object->parent())
 | |
|         object->setParent(0);
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::addToNewProperty(QObject *object, QObject *newParent, const PropertyName &newParentProperty)
 | |
| {
 | |
|     QQmlProperty property(newParent, newParentProperty, context());
 | |
| 
 | |
|     if (object)
 | |
|         object->setParent(newParent);
 | |
| 
 | |
|     if (isList(property)) {
 | |
|         QQmlListReference list = qvariant_cast<QQmlListReference>(property.read());
 | |
| 
 | |
|         if (!QmlPrivateGate::hasFullImplementedListInterface(list)) {
 | |
|             qWarning() << "Property list interface not fully implemented for Class " << property.property().typeName() << " in property " << property.name() << "!";
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         list.append(object);
 | |
|     } else if (isObject(property)) {
 | |
|         property.write(objectToVariant(object));
 | |
|     }
 | |
| 
 | |
|     Q_ASSERT(objectToVariant(object).isValid());
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::reparent(const ObjectNodeInstance::Pointer &oldParentInstance, const PropertyName &oldParentProperty, const ObjectNodeInstance::Pointer &newParentInstance, const PropertyName &newParentProperty)
 | |
| {
 | |
|     if (oldParentInstance && !oldParentInstance->ignoredProperties().contains(oldParentProperty)) {
 | |
|         removeFromOldProperty(object(), oldParentInstance->object(), oldParentProperty);
 | |
|         m_parentProperty.clear();
 | |
|     }
 | |
| 
 | |
|     if (newParentInstance && !newParentInstance->ignoredProperties().contains(newParentProperty)) {
 | |
|         m_parentProperty = newParentProperty;
 | |
|         addToNewProperty(object(), newParentInstance->object(), newParentProperty);
 | |
|     }
 | |
| }
 | |
| 
 | |
| QVariant ObjectNodeInstance::convertSpecialCharacter(const QVariant& value) const
 | |
| {
 | |
|     QVariant specialCharacterConvertedValue = value;
 | |
|     if (value.type() == QVariant::String) {
 | |
|         QString string = value.toString();
 | |
|         string.replace(QLatin1String("\\n"), QLatin1String("\n"));
 | |
|         string.replace(QLatin1String("\\t"), QLatin1String("\t"));
 | |
|         specialCharacterConvertedValue = string;
 | |
|     }
 | |
| 
 | |
|     return specialCharacterConvertedValue;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::updateAllDirtyNodesRecursive()
 | |
| {
 | |
| }
 | |
| 
 | |
| PropertyNameList ObjectNodeInstance::ignoredProperties() const
 | |
| {
 | |
|     return PropertyNameList();
 | |
| }
 | |
| 
 | |
| QVariant ObjectNodeInstance::convertEnumToValue(const QVariant &value, const PropertyName &name)
 | |
| {
 | |
|     Q_ASSERT(value.canConvert<Enumeration>());
 | |
|     int propertyIndex = object()->metaObject()->indexOfProperty(name);
 | |
|     QMetaProperty metaProperty = object()->metaObject()->property(propertyIndex);
 | |
| 
 | |
|     QVariant adjustedValue;
 | |
|     Enumeration enumeration = value.value<Enumeration>();
 | |
|     if (metaProperty.isValid() && metaProperty.isEnumType()) {
 | |
|         adjustedValue = metaProperty.enumerator().keyToValue(enumeration.name());
 | |
|     } else {
 | |
|         QQmlExpression expression(context(), object(), enumeration.toString());
 | |
|         adjustedValue =  expression.evaluate();
 | |
|         if (expression.hasError())
 | |
|             qDebug() << "Enumeration can not be evaluated:" << object() << name << enumeration;
 | |
|     }
 | |
|     return adjustedValue;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setPropertyVariant(const PropertyName &name, const QVariant &value)
 | |
| {
 | |
|     if (ignoredProperties().contains(name))
 | |
|         return;
 | |
| 
 | |
|     QQmlProperty property(object(), name, context());
 | |
| 
 | |
|     if (!property.isValid())
 | |
|         return;
 | |
| 
 | |
|     QVariant adjustedValue;
 | |
|     if (value.canConvert<Enumeration>())
 | |
|         adjustedValue = convertEnumToValue(value, name);
 | |
|     else
 | |
|         adjustedValue = QmlPrivateGate::fixResourcePaths(value);
 | |
| 
 | |
| 
 | |
|     QVariant oldValue = property.read();
 | |
|     if (oldValue.type() == QVariant::Url) {
 | |
|         QUrl url = oldValue.toUrl();
 | |
|         QString path = url.toLocalFile();
 | |
|         if (QFileInfo(path).exists() && nodeInstanceServer() && !path.isEmpty())
 | |
|             nodeInstanceServer()->removeFilePropertyFromFileSystemWatcher(object(), name, path);
 | |
|     }
 | |
| 
 | |
|     if (hasValidResetBinding(name)) {
 | |
|         QmlPrivateGate::keepBindingFromGettingDeleted(object(), context(), name);
 | |
|     }
 | |
| 
 | |
|     bool isWritten = property.write(convertSpecialCharacter(adjustedValue));
 | |
| 
 | |
|     if (!isWritten)
 | |
|         qDebug() << "ObjectNodeInstance.setPropertyVariant: Cannot be written: " << object() << name << adjustedValue;
 | |
| 
 | |
|     QVariant newValue = property.read();
 | |
|     if (newValue.type() == QVariant::Url) {
 | |
|         QUrl url = newValue.toUrl();
 | |
|         QString path = url.toLocalFile();
 | |
|         if (QFileInfo(path).exists() && nodeInstanceServer() && !path.isEmpty())
 | |
|             nodeInstanceServer()->addFilePropertyToFileSystemWatcher(object(), name, path);
 | |
|     }
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setPropertyBinding(const PropertyName &name, const QString &expression)
 | |
| {
 | |
|     if (ignoredProperties().contains(name))
 | |
|         return;
 | |
| 
 | |
|     if (!isSimpleExpression(expression))
 | |
|         return;
 | |
| 
 | |
|     QmlPrivateGate::setPropertyBinding(object(), context(), name, expression);
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::deleteObjectsInList(const QQmlProperty &property)
 | |
| {
 | |
|     QObjectList objectList;
 | |
|     QQmlListReference list = qvariant_cast<QQmlListReference>(property.read());
 | |
| 
 | |
|     if (!QmlPrivateGate::hasFullImplementedListInterface(list)) {
 | |
|         qWarning() << "Property list interface not fully implemented for Class " << property.property().typeName() << " in property " << property.name() << "!";
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     for (int i = 0; i < list.count(); i++) {
 | |
|         objectList += list.at(i);
 | |
|     }
 | |
| 
 | |
|     list.clear();
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::resetProperty(const PropertyName &name)
 | |
| {
 | |
|     if (ignoredProperties().contains(name))
 | |
|         return;
 | |
| 
 | |
|     doResetProperty(name);
 | |
| 
 | |
|     if (name == "font.pixelSize")
 | |
|         doResetProperty("font.pointSize");
 | |
| 
 | |
|     if (name == "font.pointSize")
 | |
|         doResetProperty("font.pixelSize");
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::refreshProperty(const PropertyName &name)
 | |
| {
 | |
|     QQmlProperty property(object(), name, context());
 | |
| 
 | |
|     if (!property.isValid())
 | |
|         return;
 | |
| 
 | |
|     QVariant oldValue(property.read());
 | |
| 
 | |
|     if (property.isResettable())
 | |
|         property.reset();
 | |
|     else
 | |
|         property.write(resetValue(name));
 | |
| 
 | |
|     if (oldValue.type() == QVariant::Url) {
 | |
|         QByteArray key = oldValue.toUrl().toEncoded(QUrl::UrlFormattingOption(0x100));
 | |
|         QString pixmapKey = QString::fromUtf8(key.constData(), key.count());
 | |
|         QPixmapCache::remove(pixmapKey);
 | |
|     }
 | |
| 
 | |
|     property.write(oldValue);
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::hasBindingForProperty(const PropertyName &propertyName, bool *hasChanged) const
 | |
| {
 | |
|     return QmlPrivateGate::hasBindingForProperty(object(), context(), propertyName, hasChanged);
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::doResetProperty(const PropertyName &propertyName)
 | |
| {
 | |
|     QmlPrivateGate::doResetProperty(object(), context(), propertyName);
 | |
| }
 | |
| 
 | |
| QVariant ObjectNodeInstance::property(const PropertyName &name) const
 | |
| {
 | |
|     if (ignoredProperties().contains(name))
 | |
|         return QVariant();
 | |
| 
 | |
|     // TODO: handle model nodes
 | |
| 
 | |
|     if (QmlPrivateGate::isPropertyBlackListed(name))
 | |
|         return QVariant();
 | |
| 
 | |
|     QQmlProperty property(object(), name, context());
 | |
|     if (property.property().isEnumType()) {
 | |
|         QVariant value = property.read();
 | |
|         return property.property().enumerator().valueToKey(value.toInt());
 | |
|     }
 | |
| 
 | |
|     if (property.propertyType() == QVariant::Url) {
 | |
|         QUrl url = property.read().toUrl();
 | |
|         if (url.isEmpty())
 | |
|             return QVariant();
 | |
| 
 | |
|         if (url.scheme() == "file") {
 | |
|             int basePathLength = nodeInstanceServer()->fileUrl().toLocalFile().lastIndexOf('/');
 | |
|             return QUrl(url.toLocalFile().mid(basePathLength + 1));
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return property.read();
 | |
| }
 | |
| 
 | |
| PropertyNameList ObjectNodeInstance::propertyNames() const
 | |
| {
 | |
|     if (isValid())
 | |
|         return QmlPrivateGate::allPropertyNames(object());
 | |
|     return PropertyNameList();
 | |
| }
 | |
| 
 | |
| QString ObjectNodeInstance::instanceType(const PropertyName &name) const
 | |
| {
 | |
|     if (QmlPrivateGate::isPropertyBlackListed(name))
 | |
|         return QLatin1String("undefined");
 | |
| 
 | |
|     QQmlProperty property(object(), name, context());
 | |
|     if (!property.isValid())
 | |
|         return QLatin1String("undefined");
 | |
|     return property.propertyTypeName();
 | |
| }
 | |
| 
 | |
| QList<ServerNodeInstance> ObjectNodeInstance::childItems() const
 | |
| {
 | |
|     return QList<ServerNodeInstance>();
 | |
| }
 | |
| 
 | |
| QList<QQuickItem *> ObjectNodeInstance::allItemsRecursive() const
 | |
| {
 | |
|     return QList<QQuickItem *>();
 | |
| }
 | |
| 
 | |
| QList<ServerNodeInstance>  ObjectNodeInstance::stateInstances() const
 | |
| {
 | |
|     return QList<ServerNodeInstance>();
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setNodeSource(const QString & /*source*/)
 | |
| {
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setDeleteHeldInstance(bool deleteInstance)
 | |
| {
 | |
|     m_deleteHeldInstance = deleteInstance;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::deleteHeldInstance() const
 | |
| {
 | |
|     return m_deleteHeldInstance;
 | |
| }
 | |
| 
 | |
| ObjectNodeInstance::Pointer ObjectNodeInstance::create(QObject *object)
 | |
| {
 | |
|     Pointer instance(new ObjectNodeInstance(object));
 | |
| 
 | |
|     instance->populateResetHashes();
 | |
| 
 | |
|     return instance;
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::createPrimitive(const QString &typeName, int majorNumber, int minorNumber, QQmlContext *context)
 | |
| {
 | |
|     return QmlPrivateGate::createPrimitive(typeName, majorNumber, minorNumber, context);
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::createComponentWrap(const QString &nodeSource, const QByteArray &importCode, QQmlContext *context)
 | |
| {
 | |
|     QmlPrivateGate::ComponentCompleteDisabler disableComponentComplete;
 | |
|     Q_UNUSED(disableComponentComplete)
 | |
| 
 | |
|     QQmlComponent *component = new QQmlComponent(context->engine());
 | |
| 
 | |
|     QByteArray data(nodeSource.toUtf8());
 | |
|     data.prepend(importCode);
 | |
|     component->setData(data, context->baseUrl().resolved(QUrl("createComponent.qml")));
 | |
|     QObject *object = component;
 | |
|     QmlPrivateGate::tweakObjects(object);
 | |
|     QQmlEngine::setContextForObject(object, context);
 | |
|     QQmlEngine::setObjectOwnership(object, QQmlEngine::CppOwnership);
 | |
| 
 | |
|     if (component->isError()) {
 | |
|         qWarning() << "Error in:" << Q_FUNC_INFO << component->url().toString();
 | |
|         foreach (const QQmlError &error, component->errors())
 | |
|             qWarning() << error;
 | |
|         qWarning() << "file data:\n" << data;
 | |
|     }
 | |
|     return object;
 | |
| }
 | |
| 
 | |
| //The component might also be shipped with Creator.
 | |
| //To avoid trouble with import "." we use the component shipped with Creator.
 | |
| static inline QString fixComponentPathForIncompatibleQt(const QString &componentPath)
 | |
| {
 | |
|     QString result = componentPath;
 | |
|     const QLatin1String importString("/imports/");
 | |
| 
 | |
|     if (componentPath.contains(importString)) {
 | |
|         int index = componentPath.indexOf(importString) + 8;
 | |
|         const QString relativeImportPath = componentPath.right(componentPath.length() - index);
 | |
|         QString fixedComponentPath = QLibraryInfo::location(QLibraryInfo::ImportsPath) + relativeImportPath;
 | |
|         fixedComponentPath.replace(QLatin1Char('\\'), QLatin1Char('/'));
 | |
|         if (QFileInfo(fixedComponentPath).exists())
 | |
|             return fixedComponentPath;
 | |
|         QString fixedPath = QFileInfo(fixedComponentPath).path();
 | |
|         if (fixedPath.endsWith(QLatin1String(".1.0"))) {
 | |
|         //plugin directories might contain the version number
 | |
|             fixedPath.chop(4);
 | |
|             fixedPath += QLatin1Char('/') + QFileInfo(componentPath).fileName();
 | |
|             if (QFileInfo(fixedPath).exists())
 | |
|                 return fixedPath;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::createComponent(const QString &componentPath, QQmlContext *context)
 | |
| {
 | |
|     QmlPrivateGate::ComponentCompleteDisabler disableComponentComplete;
 | |
| 
 | |
|     Q_UNUSED(disableComponentComplete)
 | |
| 
 | |
|     QQmlComponent component(context->engine(), fixComponentPathForIncompatibleQt(componentPath));
 | |
|     QObject *object = component.beginCreate(context);
 | |
| 
 | |
|     QmlPrivateGate::tweakObjects(object);
 | |
|     component.completeCreate();
 | |
| 
 | |
|     if (component.isError()) {
 | |
|         qDebug() << componentPath;
 | |
|         foreach (const QQmlError &error, component.errors())
 | |
|             qWarning() << error;
 | |
|     }
 | |
| 
 | |
|     QQmlEngine::setObjectOwnership(object, QQmlEngine::CppOwnership);
 | |
| 
 | |
|     return object;
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::createComponent(const QUrl &componentUrl, QQmlContext *context)
 | |
| {
 | |
|     return QmlPrivateGate::createComponent(componentUrl, context);
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::createCustomParserObject(const QString &nodeSource, const QByteArray &importCode, QQmlContext *context)
 | |
| {
 | |
|     QmlPrivateGate::ComponentCompleteDisabler disableComponentComplete;
 | |
|     Q_UNUSED(disableComponentComplete)
 | |
| 
 | |
|     QQmlComponent component(context->engine());
 | |
| 
 | |
|     QByteArray data(nodeSource.toUtf8());
 | |
|     data.prepend(importCode);
 | |
|     component.setData(data, context->baseUrl().resolved(QUrl("createCustomParserObject.qml")));
 | |
|     QObject *object = component.beginCreate(context);
 | |
|     QmlPrivateGate::tweakObjects(object);
 | |
|     component.completeCreate();
 | |
|     QQmlEngine::setObjectOwnership(object, QQmlEngine::CppOwnership);
 | |
| 
 | |
|     if (component.isError()) {
 | |
|         qWarning() << "Error in:" << Q_FUNC_INFO << component.url().toString();
 | |
|         foreach (const QQmlError &error, component.errors())
 | |
|             qWarning() << error;
 | |
|         qWarning() << "file data:\n" << data;
 | |
|     }
 | |
|     return object;
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::object() const
 | |
| {
 | |
|         if (!m_object.isNull() && !QmlPrivateGate::objectWasDeleted(m_object.data()))
 | |
|             return m_object.data();
 | |
|         return 0;
 | |
| }
 | |
| 
 | |
| QQuickItem *ObjectNodeInstance::contentItem() const
 | |
| {
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::hasContent() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isResizable() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isMovable() const
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isInLayoutable() const
 | |
| {
 | |
|     return m_isInLayoutable;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::setInLayoutable(bool isInLayoutable)
 | |
| {
 | |
|     m_isInLayoutable = isInLayoutable;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::refreshLayoutable()
 | |
| {
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::updateAnchors()
 | |
| {
 | |
| }
 | |
| 
 | |
| QQmlContext *ObjectNodeInstance::context() const
 | |
| {
 | |
|     if (nodeInstanceServer())
 | |
|         return nodeInstanceServer()->context();
 | |
| 
 | |
|     qWarning() << "Error: No NodeInstanceServer";
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| QQmlEngine *ObjectNodeInstance::engine() const
 | |
| {
 | |
|     return nodeInstanceServer()->engine();
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::paintUpdate()
 | |
| {
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::activateState()
 | |
| {
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::deactivateState()
 | |
| {
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::populateResetHashes()
 | |
| {
 | |
|     QmlPrivateGate::registerCustomData(object());
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::hasValidResetBinding(const PropertyName &propertyName) const
 | |
| {
 | |
|     return QmlPrivateGate::hasValidResetBinding(object(), propertyName);
 | |
| }
 | |
| 
 | |
| QVariant ObjectNodeInstance::resetValue(const PropertyName &propertyName) const
 | |
| {
 | |
|     return QmlPrivateGate::getResetValue(object(), propertyName);
 | |
| }
 | |
| 
 | |
| QImage ObjectNodeInstance::renderImage() const
 | |
| {
 | |
|     return QImage();
 | |
| }
 | |
| 
 | |
| QImage ObjectNodeInstance::renderPreviewImage(const QSize & /*previewImageSize*/) const
 | |
| {
 | |
|     return QImage();
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::parent() const
 | |
| {
 | |
|     if (!object())
 | |
|         return 0;
 | |
| 
 | |
|     return object()->parent();
 | |
| }
 | |
| 
 | |
| QObject *ObjectNodeInstance::parentObject(QObject *object)
 | |
| {
 | |
|     QQuickItem *quickItem = qobject_cast<QQuickItem*>(object);
 | |
|     if (quickItem && quickItem->parentItem()) {
 | |
| 
 | |
|         //QQuickRootItem is used by Window and we want to return the Window as parent
 | |
|         if (strcmp(quickItem->metaObject()->className(), "QQuickRootItem"))
 | |
|             return object->parent();
 | |
| 
 | |
|         return quickItem->parentItem();
 | |
|     }
 | |
| 
 | |
|     return object->parent();
 | |
| }
 | |
| 
 | |
| ObjectNodeInstance::Pointer ObjectNodeInstance::parentInstance() const
 | |
| {
 | |
|     QObject *parentHolder = parent();
 | |
|     if (!nodeInstanceServer())
 | |
|         return Pointer();
 | |
| 
 | |
|     while (parentHolder) {
 | |
|         if (nodeInstanceServer()->hasInstanceForObject(parentHolder))
 | |
|             return nodeInstanceServer()->instanceForObject(parentHolder).internalInstance();
 | |
| 
 | |
|         parentHolder = parentObject(parentHolder);
 | |
|     }
 | |
| 
 | |
|     return Pointer();
 | |
| }
 | |
| 
 | |
| QRectF ObjectNodeInstance::boundingRect() const
 | |
| {
 | |
|     return QRectF();
 | |
| }
 | |
| 
 | |
| QRectF ObjectNodeInstance::contentItemBoundingBox() const
 | |
| {
 | |
|     return QRectF();
 | |
| }
 | |
| 
 | |
| QPointF ObjectNodeInstance::position() const
 | |
| {
 | |
|     return QPointF();
 | |
| }
 | |
| 
 | |
| QSizeF ObjectNodeInstance::size() const
 | |
| {
 | |
|     return QSizeF();
 | |
| }
 | |
| 
 | |
| int ObjectNodeInstance::penWidth() const
 | |
| {
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::updateStateVariant(const ObjectNodeInstance::Pointer &/*target*/, const PropertyName &/*propertyName*/, const QVariant &/*value*/)
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::updateStateBinding(const ObjectNodeInstance::Pointer &/*target*/, const PropertyName &/*propertyName*/, const QString &/*expression*/)
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::resetStateProperty(const ObjectNodeInstance::Pointer &/*target*/, const PropertyName &/*propertyName*/, const QVariant &/*resetValue*/)
 | |
| {
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| void ObjectNodeInstance::doComponentComplete()
 | |
| {
 | |
|     QmlPrivateGate::doComponentCompleteRecursive(object(), nodeInstanceServer());
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isRootNodeInstance() const
 | |
| {
 | |
|     return nodeInstanceServer()->rootNodeInstance().isWrappingThisObject(object());
 | |
| }
 | |
| 
 | |
| bool ObjectNodeInstance::isValid() const
 | |
| {
 | |
|     return instanceId() >= 0 && object();
 | |
| }
 | |
| 
 | |
| }
 | |
| }
 | |
| 
 |