2009-12-11 14:56:04 +10:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
2010-02-09 20:44:40 +01:00
|
|
|
#ifndef QMLINSPECTORMODE_H
|
|
|
|
|
#define QMLINSPECTORMODE_H
|
2009-12-11 14:56:04 +10:00
|
|
|
|
2010-02-09 20:44:40 +01:00
|
|
|
#include "qmlinspector_global.h"
|
|
|
|
|
#include <coreplugin/basemode.h>
|
2009-12-11 14:56:04 +10:00
|
|
|
|
2010-02-09 20:44:40 +01:00
|
|
|
#include <QtGui/QAction>
|
|
|
|
|
#include <QtCore/QObject>
|
2009-12-11 14:56:04 +10:00
|
|
|
|
2010-02-09 20:44:40 +01:00
|
|
|
QT_BEGIN_NAMESPACE
|
2008-12-03 11:58:19 +01:00
|
|
|
|
2010-02-09 20:44:40 +01:00
|
|
|
class QDockWidget;
|
|
|
|
|
class QToolButton;
|
|
|
|
|
class QLineEdit;
|
|
|
|
|
class QSpinBox;
|
|
|
|
|
class QLabel;
|
|
|
|
|
|
2010-02-26 14:42:11 +01:00
|
|
|
class QDeclarativeEngineDebug;
|
|
|
|
|
class QDeclarativeDebugConnection;
|
|
|
|
|
class QDeclarativeDebugEnginesQuery;
|
|
|
|
|
class QDeclarativeDebugRootContextQuery;
|
|
|
|
|
class QDeclarativeDebugObjectReference;
|
2010-02-09 20:44:40 +01:00
|
|
|
class ObjectTree;
|
|
|
|
|
class WatchTableModel;
|
|
|
|
|
class WatchTableView;
|
|
|
|
|
class ObjectPropertiesView;
|
|
|
|
|
class CanvasFrameRate;
|
|
|
|
|
class ExpressionQueryWidget;
|
|
|
|
|
|
2010-02-17 11:56:12 +01:00
|
|
|
QT_END_NAMESPACE
|
2010-02-09 20:44:40 +01:00
|
|
|
|
|
|
|
|
namespace Qml {
|
|
|
|
|
class EngineSpinBox;
|
|
|
|
|
|
|
|
|
|
class QMLINSPECTOR_EXPORT QmlInspector : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
QmlInspector(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
bool connectToViewer(); // using host, port from widgets
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void statusMessage(const QString &text);
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void disconnectFromViewer();
|
|
|
|
|
void setSimpleDockWidgetArrangement();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void connectionStateChanged();
|
|
|
|
|
void connectionError();
|
|
|
|
|
void reloadEngines();
|
|
|
|
|
void enginesChanged();
|
|
|
|
|
void queryEngineContext(int);
|
|
|
|
|
void contextChanged();
|
2010-02-26 14:42:11 +01:00
|
|
|
void treeObjectActivated(const QDeclarativeDebugObjectReference &obj);
|
2010-02-09 20:44:40 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
void initWidgets();
|
|
|
|
|
|
2010-02-26 14:42:11 +01:00
|
|
|
QDeclarativeDebugConnection *m_conn;
|
|
|
|
|
QDeclarativeEngineDebug *m_client;
|
2010-02-09 20:44:40 +01:00
|
|
|
|
2010-02-26 14:42:11 +01:00
|
|
|
QDeclarativeDebugEnginesQuery *m_engineQuery;
|
|
|
|
|
QDeclarativeDebugRootContextQuery *m_contextQuery;
|
2010-02-09 20:44:40 +01:00
|
|
|
|
|
|
|
|
ObjectTree *m_objectTreeWidget;
|
|
|
|
|
ObjectPropertiesView *m_propertiesWidget;
|
|
|
|
|
WatchTableModel *m_watchTableModel;
|
|
|
|
|
WatchTableView *m_watchTableView;
|
|
|
|
|
CanvasFrameRate *m_frameRateWidget;
|
|
|
|
|
ExpressionQueryWidget *m_expressionWidget;
|
|
|
|
|
|
|
|
|
|
EngineSpinBox *m_engineSpinBox;
|
|
|
|
|
|
|
|
|
|
QDockWidget *m_objectTreeDock;
|
|
|
|
|
QDockWidget *m_frameRateDock;
|
|
|
|
|
QDockWidget *m_propertyWatcherDock;
|
2010-02-17 12:33:31 +01:00
|
|
|
QDockWidget *m_inspectorOutputDock;
|
2010-02-09 20:44:40 +01:00
|
|
|
QList<QDockWidget*> m_dockWidgets;
|
2010-01-29 22:49:55 +01:00
|
|
|
|
2009-12-11 14:56:04 +10:00
|
|
|
};
|
|
|
|
|
|
2010-02-09 20:44:40 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-11 14:56:04 +10:00
|
|
|
#endif
|