2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-06-09 15:50:48 +02:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-06-09 15:50:48 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-06-09 15:50:48 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02: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
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-06-09 15:50:48 +02:00
|
|
|
**
|
2011-07-06 15:48:52 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, 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, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-07-06 15:48:52 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
2011-06-09 15:50:48 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2012-09-25 17:05:00 +02:00
|
|
|
#include "quickitemnodeinstance.h"
|
2011-06-09 15:50:48 +02:00
|
|
|
|
|
|
|
#include "qt5nodeinstanceserver.h"
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
#include <QQmlExpression>
|
|
|
|
#include <QQuickView>
|
2011-06-09 15:50:48 +02:00
|
|
|
#include <cmath>
|
|
|
|
|
2012-11-21 15:19:58 +01:00
|
|
|
#include <private/qquicktextinput_p.h>
|
|
|
|
#include <private/qquicktextedit_p.h>
|
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
#include <QHash>
|
|
|
|
|
2012-08-06 13:42:46 +02:00
|
|
|
#include <QDebug>
|
2011-06-21 15:05:15 +02:00
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
namespace QmlDesigner {
|
|
|
|
namespace Internal {
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
QuickItemNodeInstance::QuickItemNodeInstance(QQuickItem *item)
|
2013-04-18 18:22:15 +02:00
|
|
|
: GraphicalNodeInstance(item),
|
2011-06-09 15:50:48 +02:00
|
|
|
m_isResizable(true),
|
2013-04-18 18:22:15 +02:00
|
|
|
m_isMovable(true)
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
QuickItemNodeInstance::~QuickItemNodeInstance()
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-28 14:14:07 +02:00
|
|
|
static bool isContentItem(QQuickItem *item, NodeInstanceServer *nodeInstanceServer)
|
|
|
|
{
|
|
|
|
|
|
|
|
return item->parentItem()
|
|
|
|
&& nodeInstanceServer->hasInstanceForObject(item->parentItem())
|
|
|
|
&& nodeInstanceServer->instanceForObject(item->parentItem()).internalInstance()->contentItem() == item;
|
|
|
|
}
|
|
|
|
|
2012-10-22 19:18:50 +02:00
|
|
|
static QTransform transformForItem(QQuickItem *item, NodeInstanceServer *nodeInstanceServer)
|
|
|
|
{
|
2013-05-28 14:14:07 +02:00
|
|
|
if (isContentItem(item, nodeInstanceServer))
|
|
|
|
return QTransform();
|
|
|
|
|
2012-10-22 19:18:50 +02:00
|
|
|
QTransform toParentTransform = DesignerSupport::parentTransform(item);
|
2013-05-28 14:14:07 +02:00
|
|
|
if (item->parentItem() && !nodeInstanceServer->hasInstanceForObject(item->parentItem())) {
|
|
|
|
|
2012-10-22 19:18:50 +02:00
|
|
|
return transformForItem(item->parentItem(), nodeInstanceServer) * toParentTransform;
|
2013-05-28 14:14:07 +02:00
|
|
|
}
|
2012-10-22 19:18:50 +02:00
|
|
|
|
|
|
|
return toParentTransform;
|
|
|
|
}
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
QTransform QuickItemNodeInstance::transform() const
|
2013-08-15 15:23:21 +02:00
|
|
|
{ if (quickItem()->parentItem())
|
2013-09-03 18:48:02 +02:00
|
|
|
return DesignerSupport::parentTransform(quickItem());
|
2013-08-15 15:23:21 +02:00
|
|
|
|
|
|
|
return QTransform();
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
QObject *QuickItemNodeInstance::parent() const
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2012-09-19 15:57:22 +02:00
|
|
|
if (!quickItem() || !quickItem()->parentItem())
|
2011-06-09 15:50:48 +02:00
|
|
|
return 0;
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
return quickItem()->parentItem();
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
2012-09-19 15:57:22 +02:00
|
|
|
bool QuickItemNodeInstance::isMovable() const
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2011-08-25 20:51:29 +02:00
|
|
|
if (isRootNodeInstance())
|
|
|
|
return false;
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
return m_isMovable && quickItem() && quickItem()->parentItem();
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
void QuickItemNodeInstance::setMovable(bool movable)
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
|
|
|
m_isMovable = movable;
|
|
|
|
}
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
QuickItemNodeInstance::Pointer QuickItemNodeInstance::create(QObject *object)
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2012-09-19 15:57:22 +02:00
|
|
|
QQuickItem *quickItem = qobject_cast<QQuickItem*>(object);
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
Q_ASSERT(quickItem);
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
Pointer instance(new QuickItemNodeInstance(quickItem));
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
instance->setHasContent(anyItemHasContent(quickItem));
|
|
|
|
quickItem->setFlag(QQuickItem::ItemHasContents, true);
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
static_cast<QQmlParserStatus*>(quickItem)->classBegin();
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2011-08-25 20:51:29 +02:00
|
|
|
instance->populateResetHashes();
|
2011-06-09 15:50:48 +02:00
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2013-05-28 14:14:07 +02:00
|
|
|
QQuickItem *QuickItemNodeInstance::contentItem() const
|
|
|
|
{
|
|
|
|
return m_contentItem.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickItemNodeInstance::doComponentComplete()
|
|
|
|
{
|
|
|
|
GraphicalNodeInstance::doComponentComplete();
|
|
|
|
|
|
|
|
QQmlProperty contentItemProperty(quickItem(), "contentItem", engine());
|
|
|
|
if (contentItemProperty.isValid())
|
|
|
|
m_contentItem = contentItemProperty.read().value<QQuickItem*>();
|
|
|
|
}
|
|
|
|
|
2014-04-16 12:33:50 +02:00
|
|
|
static QList<QQuickItem *> allItems(QQuickItem *parentItem)
|
|
|
|
{
|
|
|
|
QList<QQuickItem *> itemList;
|
|
|
|
|
|
|
|
itemList.append(parentItem);
|
|
|
|
itemList.append(parentItem->childItems());
|
|
|
|
|
|
|
|
foreach (QQuickItem *childItem, parentItem->childItems()) {
|
|
|
|
itemList.append(allItems(childItem));
|
|
|
|
}
|
|
|
|
|
|
|
|
return itemList;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<QQuickItem *> QuickItemNodeInstance::allItemsRecursive() const
|
|
|
|
{
|
|
|
|
if (quickItem())
|
|
|
|
return allItems(quickItem());
|
|
|
|
|
|
|
|
return QList<QQuickItem *>();
|
|
|
|
}
|
|
|
|
|
2013-05-28 14:14:07 +02:00
|
|
|
QRectF QuickItemNodeInstance::contentItemBoundingBox() const
|
|
|
|
{
|
|
|
|
if (contentItem()) {
|
|
|
|
QTransform contentItemTransform = DesignerSupport::parentTransform(contentItem());
|
|
|
|
return contentItemTransform.mapRect(contentItem()->boundingRect());
|
|
|
|
}
|
|
|
|
|
|
|
|
return QRectF();
|
|
|
|
}
|
|
|
|
|
2013-08-15 15:23:21 +02:00
|
|
|
static QTransform contentItemTransformForItem(QQuickItem *item, NodeInstanceServer *nodeInstanceServer)
|
|
|
|
{
|
|
|
|
QTransform toParentTransform = DesignerSupport::parentTransform(item);
|
|
|
|
if (item->parentItem() && !nodeInstanceServer->hasInstanceForObject(item->parentItem())) {
|
|
|
|
|
|
|
|
return transformForItem(item->parentItem(), nodeInstanceServer) * toParentTransform;
|
|
|
|
}
|
|
|
|
|
|
|
|
return toParentTransform;
|
|
|
|
}
|
|
|
|
|
2013-05-28 14:14:07 +02:00
|
|
|
QTransform QuickItemNodeInstance::contentItemTransform() const
|
|
|
|
{
|
2013-08-15 15:23:21 +02:00
|
|
|
if (contentItem())
|
|
|
|
return contentItemTransformForItem(contentItem(), nodeInstanceServer());
|
|
|
|
|
|
|
|
return QTransform();
|
2013-05-28 14:14:07 +02:00
|
|
|
}
|
|
|
|
|
2011-06-09 15:50:48 +02:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
bool QuickItemNodeInstance::isQuickItem() const
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
bool QuickItemNodeInstance::isResizable() const
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2011-08-25 20:51:29 +02:00
|
|
|
if (isRootNodeInstance())
|
|
|
|
return false;
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
return m_isResizable && quickItem() && quickItem()->parentItem();
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
2013-04-18 18:22:15 +02:00
|
|
|
void QuickItemNodeInstance::setResizable(bool resizable)
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2013-04-18 18:22:15 +02:00
|
|
|
m_isResizable = resizable;
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
2013-03-05 12:19:19 +01:00
|
|
|
void QuickItemNodeInstance::reparent(const ObjectNodeInstance::Pointer &oldParentInstance, const PropertyName &oldParentProperty, const ObjectNodeInstance::Pointer &newParentInstance, const PropertyName &newParentProperty)
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2013-09-10 18:06:27 +02:00
|
|
|
if (oldParentInstance && oldParentInstance->isLayoutable()) {
|
2013-04-18 18:42:58 +02:00
|
|
|
setInLayoutable(false);
|
2011-06-09 15:50:48 +02:00
|
|
|
setMovable(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
ObjectNodeInstance::reparent(oldParentInstance, oldParentProperty, newParentInstance, newParentProperty);
|
|
|
|
|
2013-09-10 18:06:27 +02:00
|
|
|
if (newParentInstance && newParentInstance->isLayoutable()) {
|
2013-04-18 18:42:58 +02:00
|
|
|
setInLayoutable(true);
|
2011-06-09 15:50:48 +02:00
|
|
|
setMovable(false);
|
|
|
|
}
|
|
|
|
|
2013-09-10 18:06:27 +02:00
|
|
|
if (oldParentInstance && oldParentInstance->isLayoutable() && !(newParentInstance && newParentInstance->isLayoutable())) {
|
2011-06-09 15:50:48 +02:00
|
|
|
if (!hasBindingForProperty("x"))
|
2013-04-18 18:22:15 +02:00
|
|
|
setPropertyVariant("x", x());
|
2011-06-09 15:50:48 +02:00
|
|
|
|
|
|
|
if (!hasBindingForProperty("y"))
|
2013-04-18 18:22:15 +02:00
|
|
|
setPropertyVariant("y", y());
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
refresh();
|
2012-09-19 15:57:22 +02:00
|
|
|
DesignerSupport::updateDirtyNode(quickItem());
|
2012-10-04 16:34:25 +02:00
|
|
|
|
2013-04-18 18:42:58 +02:00
|
|
|
if (parentInstance() && isInLayoutable())
|
|
|
|
parentInstance()->refreshLayoutable();
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
bool QuickItemNodeInstance::isAnchoredBySibling() const
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
2012-09-19 15:57:22 +02:00
|
|
|
if (quickItem()->parentItem()) {
|
|
|
|
foreach (QQuickItem *siblingItem, quickItem()->parentItem()->childItems()) { // search in siblings for a anchor to this item
|
2011-06-09 15:50:48 +02:00
|
|
|
if (siblingItem) {
|
2012-09-19 15:57:22 +02:00
|
|
|
if (DesignerSupport::isAnchoredTo(siblingItem, quickItem()))
|
2011-06-09 15:50:48 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
QQuickItem *QuickItemNodeInstance::quickItem() const
|
2011-06-09 15:50:48 +02:00
|
|
|
{
|
|
|
|
if (object() == 0)
|
|
|
|
return 0;
|
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
return static_cast<QQuickItem*>(object());
|
2011-06-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
} // namespace QmlDesigner
|
|
|
|
|