2010-07-08 14:00:33 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
2010-07-08 14:00:33 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
#include "abstractliveedittool.h"
|
2011-05-30 16:32:25 +02:00
|
|
|
#include "qdeclarativeviewinspector.h"
|
|
|
|
|
#include "../qdeclarativeviewinspector_p.h"
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
|
#include <QDeclarativeEngine>
|
|
|
|
|
|
|
|
|
|
#include <QtDebug>
|
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
|
#include <QDeclarativeItem>
|
|
|
|
|
|
2010-09-22 09:59:18 +02:00
|
|
|
namespace QmlJSDebugger {
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2011-05-30 16:32:25 +02:00
|
|
|
AbstractLiveEditTool::AbstractLiveEditTool(QDeclarativeViewInspector *editorView)
|
|
|
|
|
: QObject(editorView), m_inspector(editorView)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
AbstractLiveEditTool::~AbstractLiveEditTool()
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-30 16:32:25 +02:00
|
|
|
QDeclarativeViewInspector *AbstractLiveEditTool::inspector() const
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2011-05-30 16:32:25 +02:00
|
|
|
return m_inspector;
|
2010-09-14 13:39:32 +02:00
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QDeclarativeView *AbstractLiveEditTool::view() const
|
2010-09-14 13:39:32 +02:00
|
|
|
{
|
2011-05-30 16:32:25 +02:00
|
|
|
return m_inspector->declarativeView();
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QGraphicsScene* AbstractLiveEditTool::scene() const
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
return view()->scene();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
void AbstractLiveEditTool::updateSelectedItems()
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2010-07-15 13:38:10 +02:00
|
|
|
selectedItemsChanged(items());
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QList<QGraphicsItem*> AbstractLiveEditTool::items() const
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2011-05-30 16:32:25 +02:00
|
|
|
return inspector()->selectedItems();
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
bool AbstractLiveEditTool::topItemIsMovable(const QList<QGraphicsItem*> & itemList)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
QGraphicsItem *firstSelectableItem = topMovableGraphicsItem(itemList);
|
|
|
|
|
if (firstSelectableItem == 0)
|
|
|
|
|
return false;
|
2011-03-14 14:21:21 +01:00
|
|
|
if (toQDeclarativeItem(firstSelectableItem) != 0)
|
2010-07-08 14:00:33 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
bool AbstractLiveEditTool::topSelectedItemIsMovable(const QList<QGraphicsItem*> &itemList)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2011-05-30 16:32:25 +02:00
|
|
|
QList<QGraphicsItem*> selectedItems = inspector()->selectedItems();
|
2010-07-08 14:00:33 +02:00
|
|
|
|
|
|
|
|
foreach (QGraphicsItem *item, itemList) {
|
|
|
|
|
QDeclarativeItem *declarativeItem = toQDeclarativeItem(item);
|
|
|
|
|
if (declarativeItem
|
2010-12-01 11:46:49 +01:00
|
|
|
&& selectedItems.contains(declarativeItem)
|
|
|
|
|
/*&& (declarativeItem->qmlItemNode().hasShowContent() || selectNonContentItems)*/)
|
2010-07-08 14:00:33 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
bool AbstractLiveEditTool::topItemIsResizeHandle(const QList<QGraphicsItem*> &/*itemList*/)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QDeclarativeItem *AbstractLiveEditTool::toQDeclarativeItem(QGraphicsItem *item)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
2011-03-14 14:21:21 +01:00
|
|
|
return qobject_cast<QDeclarativeItem*>(item->toGraphicsObject());
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QGraphicsItem *AbstractLiveEditTool::topMovableGraphicsItem(const QList<QGraphicsItem*> &itemList)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
foreach (QGraphicsItem *item, itemList) {
|
|
|
|
|
if (item->flags().testFlag(QGraphicsItem::ItemIsMovable))
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QDeclarativeItem *AbstractLiveEditTool::topMovableDeclarativeItem(const QList<QGraphicsItem*>
|
|
|
|
|
&itemList)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
foreach (QGraphicsItem *item, itemList) {
|
|
|
|
|
QDeclarativeItem *declarativeItem = toQDeclarativeItem(item);
|
|
|
|
|
if (declarativeItem /*&& (declarativeItem->qmlItemNode().hasShowContent())*/)
|
|
|
|
|
return declarativeItem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QList<QGraphicsObject*> AbstractLiveEditTool::toGraphicsObjectList(const QList<QGraphicsItem*>
|
|
|
|
|
&itemList)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
QList<QGraphicsObject*> gfxObjects;
|
2011-02-22 14:23:57 +01:00
|
|
|
foreach (QGraphicsItem *item, itemList) {
|
2010-07-08 14:00:33 +02:00
|
|
|
QGraphicsObject *obj = item->toGraphicsObject();
|
|
|
|
|
if (obj)
|
|
|
|
|
gfxObjects << obj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return gfxObjects;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-09 16:59:43 +01:00
|
|
|
QString AbstractLiveEditTool::titleForItem(QGraphicsItem *item)
|
2010-07-08 14:00:33 +02:00
|
|
|
{
|
|
|
|
|
QString className("QGraphicsItem");
|
|
|
|
|
QString objectStringId;
|
|
|
|
|
|
2010-07-28 11:20:49 +02:00
|
|
|
QString constructedName;
|
|
|
|
|
|
2010-07-26 15:31:59 +02:00
|
|
|
QGraphicsObject *gfxObject = item->toGraphicsObject();
|
2010-07-08 14:00:33 +02:00
|
|
|
if (gfxObject) {
|
|
|
|
|
className = gfxObject->metaObject()->className();
|
2010-07-28 11:20:49 +02:00
|
|
|
|
2011-04-19 15:42:14 +02:00
|
|
|
className.remove(QRegExp("_QMLTYPE_\\d+"));
|
|
|
|
|
className.remove(QRegExp("_QML_\\d+"));
|
2010-07-28 11:20:49 +02:00
|
|
|
if (className.startsWith(QLatin1String("QDeclarative")))
|
2011-04-19 15:42:14 +02:00
|
|
|
className = className.remove(QLatin1String("QDeclarative"));
|
2010-07-08 14:00:33 +02:00
|
|
|
|
2010-07-26 15:31:59 +02:00
|
|
|
QDeclarativeItem *declarativeItem = qobject_cast<QDeclarativeItem*>(gfxObject);
|
2010-07-08 14:00:33 +02:00
|
|
|
if (declarativeItem) {
|
2011-05-30 16:32:25 +02:00
|
|
|
objectStringId = QDeclarativeViewInspector::idStringForObject(declarativeItem);
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-28 11:20:49 +02:00
|
|
|
if (!objectStringId.isEmpty()) {
|
2011-04-19 15:42:14 +02:00
|
|
|
constructedName = objectStringId + " (" + className + QLatin1Char(')');
|
2010-07-28 11:20:49 +02:00
|
|
|
} else {
|
2010-08-03 10:35:04 +02:00
|
|
|
if (!gfxObject->objectName().isEmpty()) {
|
2011-04-19 15:42:14 +02:00
|
|
|
constructedName = gfxObject->objectName() + " (" + className + QLatin1Char(')');
|
2010-08-03 10:35:04 +02:00
|
|
|
} else {
|
|
|
|
|
constructedName = className;
|
|
|
|
|
}
|
2010-07-28 11:20:49 +02:00
|
|
|
}
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
2010-08-03 10:35:04 +02:00
|
|
|
return constructedName;
|
2010-07-08 14:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-02-24 17:52:35 +01:00
|
|
|
} // namespace QmlJSDebugger
|