forked from qt-creator/qt-creator
		
	Change-Id: I56a74c4000418f1e41866f4b084ea483587a6f0e Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
		
			
				
	
	
		
			141 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/**************************************************************************
 | 
						|
**
 | 
						|
** This file is part of Qt Creator
 | 
						|
**
 | 
						|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
 | 
						|
**
 | 
						|
** Contact: http://www.qt-project.org/
 | 
						|
**
 | 
						|
**
 | 
						|
** GNU Lesser General Public License Usage
 | 
						|
**
 | 
						|
** This file may be used under the terms of the GNU Lesser General Public
 | 
						|
** License version 2.1 as published by the Free Software Foundation and
 | 
						|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
 | 
						|
** Please review the following information to ensure the GNU Lesser General
 | 
						|
** Public License version 2.1 requirements will be met:
 | 
						|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | 
						|
**
 | 
						|
** In addition, as a special exception, Nokia gives you certain additional
 | 
						|
** rights. These rights are described in the Nokia Qt LGPL Exception
 | 
						|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 | 
						|
**
 | 
						|
** Other Usage
 | 
						|
**
 | 
						|
** Alternatively, this file may be used in accordance with the terms and
 | 
						|
** conditions contained in a signed written agreement between you and Nokia.
 | 
						|
**
 | 
						|
**
 | 
						|
**************************************************************************/
 | 
						|
 | 
						|
#include "nodeinstancemetaobject.h"
 | 
						|
 | 
						|
#include "objectnodeinstance.h"
 | 
						|
#include <QSharedPointer>
 | 
						|
#include <QMetaProperty>
 | 
						|
#include <qnumeric.h>
 | 
						|
#include <QDebug>
 | 
						|
 | 
						|
namespace QmlDesigner {
 | 
						|
namespace Internal {
 | 
						|
 | 
						|
NodeInstanceMetaObject::NodeInstanceMetaObject(const ObjectNodeInstance::Pointer &nodeInstance, QQmlEngine *engine)
 | 
						|
    : QQmlOpenMetaObject(nodeInstance->object(), new QQmlOpenMetaObjectType(nodeInstance->object()->metaObject(), engine), true),
 | 
						|
    m_nodeInstance(nodeInstance),
 | 
						|
    m_context(nodeInstance->isRootNodeInstance() ? nodeInstance->context() : 0)
 | 
						|
{
 | 
						|
    setCached(false);
 | 
						|
}
 | 
						|
 | 
						|
NodeInstanceMetaObject::NodeInstanceMetaObject(const ObjectNodeInstancePointer &nodeInstance, QObject *object, const QString &prefix, QQmlEngine *engine)
 | 
						|
    : QQmlOpenMetaObject(object, new QQmlOpenMetaObjectType(object->metaObject(), engine), true),
 | 
						|
    m_nodeInstance(nodeInstance),
 | 
						|
    m_prefix(prefix)
 | 
						|
{
 | 
						|
    setCached(false);
 | 
						|
}
 | 
						|
 | 
						|
void NodeInstanceMetaObject::createNewProperty(const QString &name)
 | 
						|
{
 | 
						|
    int id = createProperty(name.toLatin1(), 0);
 | 
						|
    setValue(id, QVariant());
 | 
						|
    Q_ASSERT(id >= 0);
 | 
						|
    Q_UNUSED(id)
 | 
						|
}
 | 
						|
 | 
						|
int NodeInstanceMetaObject::metaCall(QMetaObject::Call call, int id, void **a)
 | 
						|
{
 | 
						|
    int metaCallReturnValue = -1;
 | 
						|
 | 
						|
    if (call == QMetaObject::WriteProperty
 | 
						|
        && property(id).userType() == QMetaType::QVariant
 | 
						|
        && reinterpret_cast<QVariant *>(a[0])->type() == QVariant::Double
 | 
						|
        && qIsNaN(reinterpret_cast<QVariant *>(a[0])->toDouble())) {
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
 | 
						|
    if (call == QMetaObject::WriteProperty
 | 
						|
        && property(id).userType() == QMetaType::Double
 | 
						|
        && qIsNaN(*reinterpret_cast<double*>(a[0]))) {
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
 | 
						|
    if (call == QMetaObject::WriteProperty
 | 
						|
        && property(id).userType() == QMetaType::Float
 | 
						|
        && qIsNaN(*reinterpret_cast<float*>(a[0]))) {
 | 
						|
        return -1;
 | 
						|
    }
 | 
						|
 | 
						|
    QVariant oldValue;
 | 
						|
 | 
						|
    if (call == QMetaObject::WriteProperty && !property(id).hasNotifySignal())
 | 
						|
    {
 | 
						|
        oldValue = property(id).read(object());
 | 
						|
    }
 | 
						|
 | 
						|
    ObjectNodeInstance::Pointer objectNodeInstance = m_nodeInstance.toStrongRef();
 | 
						|
 | 
						|
    if (parent() && id < parent()->propertyOffset()) {
 | 
						|
        metaCallReturnValue = parent()->metaCall(call, id, a);
 | 
						|
    } else {
 | 
						|
        metaCallReturnValue = QQmlOpenMetaObject::metaCall(call, id, a);
 | 
						|
    }
 | 
						|
 | 
						|
    if ((call == QMetaObject::WriteProperty || call == QMetaObject::ReadProperty) && metaCallReturnValue < 0) {
 | 
						|
        if (objectNodeInstance
 | 
						|
                && objectNodeInstance->nodeInstanceServer()
 | 
						|
                && objectNodeInstance->nodeInstanceServer()->dummyContextObject()
 | 
						|
                && !(objectNodeInstance && !objectNodeInstance->isRootNodeInstance() && property(id).name() == QLatin1String("parent"))) {
 | 
						|
 | 
						|
            QObject *contextDummyObject = objectNodeInstance->nodeInstanceServer()->dummyContextObject();
 | 
						|
            int properyIndex = contextDummyObject->metaObject()->indexOfProperty(property(id).name());
 | 
						|
            if (properyIndex >= 0)
 | 
						|
                metaCallReturnValue = contextDummyObject->qt_metacall(call, properyIndex, a);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    if (metaCallReturnValue >= 0
 | 
						|
            && call == QMetaObject::WriteProperty
 | 
						|
            && !property(id).hasNotifySignal()
 | 
						|
            && oldValue != property(id).read(object()))
 | 
						|
        notifyPropertyChange(id);
 | 
						|
 | 
						|
    return metaCallReturnValue;
 | 
						|
}
 | 
						|
 | 
						|
void NodeInstanceMetaObject::notifyPropertyChange(int id)
 | 
						|
{
 | 
						|
    ObjectNodeInstance::Pointer objectNodeInstance = m_nodeInstance.toStrongRef();
 | 
						|
 | 
						|
    if (objectNodeInstance && objectNodeInstance->nodeInstanceServer()) {
 | 
						|
        if (id < type()->propertyOffset()) {
 | 
						|
            objectNodeInstance->nodeInstanceServer()->notifyPropertyChange(objectNodeInstance->instanceId(), m_prefix + property(id).name());
 | 
						|
        } else {
 | 
						|
            objectNodeInstance->nodeInstanceServer()->notifyPropertyChange(objectNodeInstance->instanceId(), m_prefix + name(id - type()->propertyOffset()));
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
} // namespace Internal
 | 
						|
} // namespace QmlDesigner
 |