Files
qt-creator/share/qtcreator/qml/qmljsdebugger/qdeclarativeinspectorservice.cpp
Robert Loehning 298531e370 Incremented year in copyright info
Change-Id: Ic6a9ff0359625021ebc061d22db6811814534205
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
2013-01-29 16:27:03 +01:00

285 lines
7.8 KiB
C++

/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** 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 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.
**
** 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 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
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
#include "qdeclarativeinspectorservice.h"
#include <inspectorprotocol.h>
#include <QStringList>
#include <QColor>
namespace QmlJSDebugger {
Q_GLOBAL_STATIC(QDeclarativeInspectorService, serviceInstance)
QDeclarativeInspectorService::QDeclarativeInspectorService()
: QDeclarativeDebugService(QLatin1String("QDeclarativeObserverMode"))
{
}
QDeclarativeInspectorService *QDeclarativeInspectorService::instance()
{
return serviceInstance();
}
void QDeclarativeInspectorService::statusChanged(Status status)
{
emit debuggingClientChanged((status == Enabled));
}
void QDeclarativeInspectorService::messageReceived(const QByteArray &message)
{
QDataStream ds(message);
InspectorProtocol::Message type;
ds >> type;
switch (type) {
case InspectorProtocol::SetCurrentObjects: {
int itemCount = 0;
ds >> itemCount;
QList<QObject*> selectedObjects;
for (int i = 0; i < itemCount; ++i) {
int debugId = -1;
ds >> debugId;
if (QObject *obj = objectForId(debugId))
selectedObjects << obj;
}
emit currentObjectsChanged(selectedObjects);
break;
}
case InspectorProtocol::Reload: {
emit reloadRequested();
break;
}
case InspectorProtocol::SetAnimationSpeed: {
qreal speed;
ds >> speed;
emit animationSpeedChangeRequested(speed);
break;
}
case InspectorProtocol::SetAnimationPaused: {
bool paused;
ds >> paused;
emit executionPauseChangeRequested(paused);
break;
}
case InspectorProtocol::ChangeTool: {
InspectorProtocol::Tool tool;
ds >> tool;
switch (tool) {
case InspectorProtocol::ColorPickerTool:
emit colorPickerToolRequested();
break;
case InspectorProtocol::SelectTool:
emit selectToolRequested();
break;
case InspectorProtocol::SelectMarqueeTool:
emit selectMarqueeToolRequested();
break;
case InspectorProtocol::ZoomTool:
emit zoomToolRequested();
break;
default:
qWarning() << "Warning: Unhandled tool:" << tool;
}
break;
}
case InspectorProtocol::SetDesignMode: {
bool inDesignMode;
ds >> inDesignMode;
emit designModeBehaviorChanged(inDesignMode);
break;
}
case InspectorProtocol::ShowAppOnTop: {
bool showOnTop;
ds >> showOnTop;
emit showAppOnTopChanged(showOnTop);
break;
}
case InspectorProtocol::CreateObject: {
QString qml;
int parentId;
QString filename;
QStringList imports;
ds >> qml >> parentId >> imports >> filename;
int order = -1;
if (!ds.atEnd()) {
ds >> order;
}
emit objectCreationRequested(qml, objectForId(parentId), imports, filename, order);
break;
}
case InspectorProtocol::DestroyObject: {
int debugId;
ds >> debugId;
if (QObject* obj = objectForId(debugId)) {
emit objectDeletionRequested(obj);
}
break;
}
case InspectorProtocol::MoveObject: {
int debugId, newParent;
ds >> debugId >> newParent;
emit objectReparentRequested(objectForId(debugId), objectForId(newParent));
break;
}
case InspectorProtocol::ObjectIdList: {
int itemCount;
ds >> itemCount;
m_stringIdForObjectId.clear();
for (int i = 0; i < itemCount; ++i) {
int itemDebugId;
QString itemIdString;
ds >> itemDebugId
>> itemIdString;
m_stringIdForObjectId.insert(itemDebugId, itemIdString);
}
break;
}
case InspectorProtocol::ClearComponentCache: {
emit clearComponentCacheRequested();
break;
}
default:
qWarning() << "Warning: Not handling message:" << type;
}
}
void QDeclarativeInspectorService::setDesignModeBehavior(bool inDesignMode)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::SetDesignMode
<< inDesignMode;
sendMessage(message);
}
void QDeclarativeInspectorService::setCurrentObjects(QList<QObject*> objects)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::CurrentObjectsChanged
<< objects.length();
foreach (QObject *object, objects) {
int id = idForObject(object);
ds << id;
}
sendMessage(message);
}
void QDeclarativeInspectorService::setCurrentTool(QmlJSDebugger::Constants::DesignTool toolId)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::ToolChanged
<< toolId;
sendMessage(message);
}
void QDeclarativeInspectorService::setAnimationSpeed(qreal slowDownFactor)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::AnimationSpeedChanged
<< slowDownFactor;
sendMessage(message);
}
void QDeclarativeInspectorService::setAnimationPaused(bool paused)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::AnimationPausedChanged
<< paused;
sendMessage(message);
}
void QDeclarativeInspectorService::reloaded()
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::Reloaded;
sendMessage(message);
}
void QDeclarativeInspectorService::setShowAppOnTop(bool showAppOnTop)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::ShowAppOnTop << showAppOnTop;
sendMessage(message);
}
void QDeclarativeInspectorService::selectedColorChanged(const QColor &color)
{
QByteArray message;
QDataStream ds(&message, QIODevice::WriteOnly);
ds << InspectorProtocol::ColorChanged
<< color;
sendMessage(message);
}
QString QDeclarativeInspectorService::idStringForObject(QObject *obj) const
{
int id = idForObject(obj);
QString idString = m_stringIdForObjectId.value(id, QString());
return idString;
}
void QDeclarativeInspectorService::sendMessage(const QByteArray &message)
{
if (status() != Enabled)
return;
QDeclarativeDebugService::sendMessage(message);
}
} // namespace QmlJSDebugger