1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/*
objectinspectorwidget.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#ifndef GAMMARAY_OBJECTINSPECTOR_OBJECTINSPECTORWIDGET_H
#define GAMMARAY_OBJECTINSPECTOR_OBJECTINSPECTORWIDGET_H
#include <QWidget>
#include "tooluifactory.h"
#include "propertywidget.h"
#include "propertiestab.h"
#include "methodstab.h"
#include "connectionstab.h"
#include "enumstab.h"
#include "classinfotab.h"
#include "propertiesextensionclient.h"
#include "methodsextensionclient.h"
#include "connectionsextensionclient.h"
#include "applicationattributetab.h"
#include "bindingtab.h"
#include "stacktracetab.h"
#include <common/objectbroker.h>
#include <ui/uistatemanager.h>
#include <ui/deferredtreeview.h>
#include <ui/favoritesitemview.h>
QT_BEGIN_NAMESPACE
class QItemSelection;
QT_END_NAMESPACE
namespace GammaRay {
namespace Ui {
class ObjectInspectorWidget;
}
template<typename T>
static QObject *createExtension(const QString &name, QObject *parent)
{
return new T(name, parent);
}
class ObjectInspectorWidget : public QWidget
{
Q_OBJECT
public:
explicit ObjectInspectorWidget(QWidget *parent = nullptr);
~ObjectInspectorWidget() override;
private slots:
void objectSelectionChanged(const QItemSelection &selection);
void objectContextMenuRequested(const QPoint &pos);
void propertyWidgetTabsChanged();
private:
QScopedPointer<Ui::ObjectInspectorWidget> ui;
UIStateManager m_stateManager;
};
class ObjectInspectorFactory : public QObject, public ToolUiFactory
{
Q_OBJECT
public:
QString id() const override
{
return QStringLiteral("GammaRay::ObjectInspector");
}
QString name() const override
{
return tr("Objects");
}
QWidget *createWidget(QWidget *parentWidget) override
{
return new ObjectInspectorWidget(
parentWidget);
}
void initUi() override
{
PropertyWidget::registerTab<PropertiesTab>(QStringLiteral("properties"), tr("Properties"),
PropertyWidgetTabPriority::First);
ObjectBroker::registerClientObjectFactoryCallback<PropertiesExtensionInterface *>(
createExtension<PropertiesExtensionClient>);
PropertyWidget::registerTab<MethodsTab>(QStringLiteral("methods"), tr("Methods"),
PropertyWidgetTabPriority::Basic - 1);
ObjectBroker::registerClientObjectFactoryCallback<MethodsExtensionInterface *>(
createExtension<MethodsExtensionClient>);
PropertyWidget::registerTab<ConnectionsTab>(QStringLiteral("connections"), tr("Connections"),
PropertyWidgetTabPriority::Basic - 1);
ObjectBroker::registerClientObjectFactoryCallback<ConnectionsExtensionInterface *>(
createExtension<ConnectionsExtensionClient>);
PropertyWidget::registerTab<EnumsTab>(QStringLiteral("enums"), tr("Enums"), PropertyWidgetTabPriority::Exotic - 1);
PropertyWidget::registerTab<ClassInfoTab>(QStringLiteral("classInfo"), tr("Class Info"),
PropertyWidgetTabPriority::Exotic - 1);
PropertyWidget::registerTab<ApplicationAttributeTab>(QStringLiteral("applicationAttributes"),
tr("Attributes"),
PropertyWidgetTabPriority::Advanced);
PropertyWidget::registerTab<BindingTab>(QStringLiteral("bindings"), tr("Bindings"),
PropertyWidgetTabPriority::Advanced);
PropertyWidget::registerTab<StackTraceTab>(QStringLiteral("stackTrace"), tr("Stack Trace"),
PropertyWidgetTabPriority::Exotic);
}
};
}
#endif // GAMMARAY_OBJECTINSPECTOR_H
|