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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/*
quickinspectorwidget.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2014 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.
*/
#include "quickinspectorwidget.h"
#include "quickinspectorclient.h"
#include "quickclientitemmodel.h"
#include "quickitemtreewatcher.h"
#include "quickitemmodelroles.h"
#include "quickscenepreviewwidget.h"
#ifndef QT_NO_OPENGL
#include "geometryextension/sggeometrytab.h"
#include "materialextension/materialextensionclient.h"
#include "materialextension/materialtab.h"
#include "textureextension/texturetab.h"
#endif
#include "quickitemdelegate.h"
#include "ui_quickinspectorwidget.h"
#include <common/objectbroker.h>
#include <common/objectmodel.h>
#include <common/objectid.h>
#include <common/remotemodelroles.h>
#include <common/sourcelocation.h>
#include <ui/clientdecorationidentityproxymodel.h>
#include <ui/contextmenuextension.h>
#include <ui/paintbufferviewer.h>
#include <ui/searchlinecontroller.h>
#include <QEvent>
#include <QLabel>
#include <QMenu>
#include <qmath.h>
#include <QRectF>
#include <QtCore/qglobal.h>
#include <QPropertyAnimation>
#include <QSettings>
#include <QFileDialog>
#include <QDebug>
using namespace GammaRay;
static QObject *createQuickInspectorClient(const QString & /*name*/, QObject *parent)
{
return new QuickInspectorClient(parent);
}
#ifndef QT_NO_OPENGL
static QObject *createMaterialExtension(const QString &name, QObject *parent)
{
return new MaterialExtensionClient(name, parent);
}
#endif
static QAction *createSeparator(QObject *parent)
{
QAction *action = new QAction(parent);
action->setSeparator(true);
return action;
}
QuickInspectorWidget::QuickInspectorWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::QuickInspectorWidget)
, m_state(QuickInspectorWidget::WaitingAll)
, m_stateManager(this)
{
qRegisterMetaType<QuickInspectorWidget::StateFlag>();
ui->setupUi(this);
ObjectBroker::registerClientObjectFactoryCallback<QuickInspectorInterface *>(
createQuickInspectorClient);
m_interface = ObjectBroker::object<QuickInspectorInterface *>();
ui->windowComboBox->setModel(ObjectBroker::model(QStringLiteral(
"com.kdab.GammaRay.QuickWindowModel")));
connect(ui->windowComboBox, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
m_interface, &QuickInspectorInterface::selectWindow);
if (ui->windowComboBox->currentIndex() >= 0)
m_interface->selectWindow(ui->windowComboBox->currentIndex());
auto model = ObjectBroker::model(QStringLiteral("com.kdab.GammaRay.QuickItemModel"));
auto proxy = new QuickClientItemModel(this);
proxy->setSourceModel(model);
ui->itemTreeView->header()->setObjectName("quickItemTreeViewHeader");
ui->itemTreeView->setDeferredResizeMode(0, QHeaderView::ResizeToContents);
ui->itemTreeView->setModel(proxy);
ui->itemTreeView->setItemDelegate(new QuickItemDelegate(ui->itemTreeView));
new SearchLineController(ui->itemTreeSearchLine, proxy, ui->itemTreeView);
QItemSelectionModel *selectionModel = ObjectBroker::selectionModel(proxy);
ui->itemTreeView->setSelectionModel(selectionModel);
connect(selectionModel, &QItemSelectionModel::selectionChanged,
this, &QuickInspectorWidget::itemSelectionChanged);
connect(proxy, &QAbstractItemModel::dataChanged,
this, &QuickInspectorWidget::itemModelDataChanged);
ui->favoritesTreeView->setSourceView(ui->itemTreeView);
ui->favoritesTreeView->setDeferredResizeMode(0, QHeaderView::ResizeToContents);
ui->favoritesTreeView->setItemDelegate(new QuickItemDelegate(ui->favoritesTreeView));
ui->favoritesTreeView->header()->setObjectName(QStringLiteral("quickFavItemTreeViewHeader"));
model = ObjectBroker::model(QStringLiteral("com.kdab.GammaRay.QuickSceneGraphModel"));
auto *clientSceneGraphModel = new ClientDecorationIdentityProxyModel(this);
clientSceneGraphModel->setSourceModel(model);
ui->sgTreeView->header()->setObjectName("sceneGraphTreeViewHeader");
ui->sgTreeView->setDeferredResizeMode(0, QHeaderView::ResizeToContents);
ui->sgTreeView->setModel(clientSceneGraphModel);
new SearchLineController(ui->sgTreeSearchLine, clientSceneGraphModel, ui->sgTreeView);
QItemSelectionModel *sgSelectionModel = ObjectBroker::selectionModel(clientSceneGraphModel);
ui->sgTreeView->setSelectionModel(sgSelectionModel);
connect(sgSelectionModel, &QItemSelectionModel::selectionChanged,
this, &QuickInspectorWidget::sgSelectionChanged);
new QuickItemTreeWatcher(ui->itemTreeView, ui->sgTreeView, this);
m_scenePreviewWidget = new QuickSceneControlWidget(m_interface, this);
m_scenePreviewWidget->previewWidget()->setPickSourceModel(proxy);
m_scenePreviewWidget->previewWidget()->setFlagRole(QuickItemModelRole::ItemFlags);
m_scenePreviewWidget->previewWidget()->setInvisibleMask(QuickItemModelRole::Invisible | QuickItemModelRole::ZeroSize);
ui->itemPropertyWidget->setObjectBaseName(QStringLiteral("com.kdab.GammaRay.QuickItem"));
ui->sgPropertyWidget->setObjectBaseName(QStringLiteral("com.kdab.GammaRay.QuickSceneGraph"));
ui->previewTreeSplitter->addWidget(m_scenePreviewWidget);
connect(m_interface, &QuickInspectorInterface::features, this, &QuickInspectorWidget::setFeatures);
connect(m_interface, &QuickInspectorInterface::serverSideDecorationChanged, m_scenePreviewWidget, &QuickSceneControlWidget::setServerSideDecorationsEnabled);
connect(m_interface, &QuickInspectorInterface::overlaySettings, this, &QuickInspectorWidget::setOverlaySettings);
connect(m_interface, &QuickInspectorInterface::slowModeChanged, this, &QuickInspectorWidget::setSlowMode);
connect(ui->itemTreeView, &QWidget::customContextMenuRequested,
this, &QuickInspectorWidget::itemContextMenu);
m_interface->checkFeatures();
m_interface->checkOverlaySettings();
m_interface->checkSlowMode();
addActions(m_scenePreviewWidget->actions());
addAction(createSeparator(this));
addAction(ui->actionAnalyzePainting);
addAction(createSeparator(this));
addAction(ui->actionSaveAsImage);
addAction(ui->actionSaveAsImageWithDecoration);
addAction(createSeparator(this));
addAction(ui->actionSlowDownMode);
m_stateManager.setDefaultSizes(ui->mainSplitter, UISizeVector() << "50%"
<< "50%");
m_stateManager.setDefaultSizes(ui->previewTreeSplitter, UISizeVector() << "50%"
<< "50%");
connect(ui->actionSaveAsImage, &QAction::triggered, this, &QuickInspectorWidget::saveAsImage);
connect(ui->actionSaveAsImageWithDecoration, &QAction::triggered, this, &QuickInspectorWidget::saveAsImage);
connect(ui->actionAnalyzePainting, &QAction::triggered, this, [this]() {
m_interface->analyzePainting();
auto viewer = new PaintBufferViewer(QStringLiteral("com.kdab.GammaRay.QuickPaintAnalyzer"), this);
viewer->show();
});
connect(ui->actionSlowDownMode, &QAction::triggered, m_interface, &QuickInspectorInterface::setSlowMode);
connect(ui->itemPropertyWidget, &PropertyWidget::tabsUpdated, this, &QuickInspectorWidget::resetState);
connect(ui->sgPropertyWidget, &PropertyWidget::tabsUpdated, this, &QuickInspectorWidget::resetState);
connect(m_scenePreviewWidget, &QuickSceneControlWidget::stateChanged, this, &QuickInspectorWidget::saveState);
connect(ui->tabWidget, &QTabWidget::currentChanged, this, &QuickInspectorWidget::saveState);
connect(m_scenePreviewWidget->previewWidget(), &RemoteViewWidget::frameChanged, this, &QuickInspectorWidget::updateActions);
updateActions();
}
QuickInspectorWidget::~QuickInspectorWidget() = default;
void QuickInspectorWidget::saveTargetState(QSettings *settings) const
{
if (m_state != QuickInspectorWidget::Ready)
return;
settings->setValue("tabIndex", ui->tabWidget->currentIndex());
settings->setValue("remoteViewState", m_scenePreviewWidget->previewWidget()->saveState());
}
void QuickInspectorWidget::restoreTargetState(QSettings *settings)
{
if (m_state != QuickInspectorWidget::Ready)
return;
ui->tabWidget->setCurrentIndex(settings->value("tabIndex", 0).toInt());
// Delay those changes as they can lead to recursive save/load issue (ie, speak to server)
QMetaObject::invokeMethod(m_scenePreviewWidget->previewWidget(), "restoreState", Qt::QueuedConnection,
Q_ARG(QByteArray, settings->value("remoteViewState").toByteArray()));
}
void QuickInspectorWidget::setFeatures(QuickInspectorInterface::Features features)
{
m_scenePreviewWidget->setSupportsCustomRenderModes(features);
ui->actionAnalyzePainting->setEnabled(features & QuickInspectorInterface::AnalyzePainting);
stateReceived(QuickInspectorWidget::WaitingFeatures);
}
void QuickInspectorWidget::setOverlaySettings(const GammaRay::QuickDecorationsSettings &settings)
{
m_scenePreviewWidget->setOverlaySettingsState(settings);
stateReceived(QuickInspectorWidget::WaitingOverlaySettings);
}
void QuickInspectorWidget::setSlowMode(bool slow)
{
ui->actionSlowDownMode->setChecked(slow);
}
void QuickInspectorWidget::itemSelectionChanged(const QItemSelection &selection)
{
if (selection.isEmpty())
return;
const QModelIndex &index = selection.first().topLeft();
ui->itemTreeView->scrollTo(index);
}
void QuickInspectorWidget::sgSelectionChanged(const QItemSelection &selection)
{
if (selection.isEmpty())
return;
const auto &index = selection.first().topLeft();
ui->sgTreeView->scrollTo(index);
}
void QuickInspectorWidget::itemModelDataChanged(const QModelIndex &topLeft,
const QModelIndex &bottomRight,
const QVector<int> &roles)
{
if (!roles.contains(QuickItemModelRole::ItemEvent))
return;
for (int i = topLeft.row(); i <= bottomRight.row(); i++) {
const QModelIndex index = ui->itemTreeView->model()->index(i, 0, topLeft.parent());
const auto state = index.data(RemoteModelRole::LoadingState).value<RemoteModelNodeState::NodeStates>();
if (state & RemoteModelNodeState::Empty || ~state & RemoteModelNodeState::Outdated)
continue;
auto *colorAnimation = new QVariantAnimation(this);
QPersistentModelIndex persistentIndex(index);
connect(colorAnimation, &QVariantAnimation::valueChanged,
ui->itemTreeView->itemDelegate(), [persistentIndex, this](const QVariant &value) {
qobject_cast<QuickItemDelegate *>(ui->itemTreeView->itemDelegate())->setTextColor(value, persistentIndex);
});
colorAnimation->setStartValue(QColor(129, 0, 129));
colorAnimation->setEndValue(QColor(129, 0, 129, 0));
colorAnimation->setDuration(2000);
colorAnimation->start(QAbstractAnimation::DeleteWhenStopped);
}
}
void QuickInspectorUiFactory::initUi()
{
#ifndef QT_NO_OPENGL
ObjectBroker::registerClientObjectFactoryCallback<MaterialExtensionInterface *>(
createMaterialExtension);
PropertyWidget::registerTab<MaterialTab>(QStringLiteral("material"), tr("Material"));
PropertyWidget::registerTab<SGGeometryTab>(QStringLiteral("sgGeometry"), tr("Geometry"));
PropertyWidget::registerTab<TextureTab>(QStringLiteral("texture"), tr("Texture"));
#endif
}
void GammaRay::QuickInspectorWidget::itemContextMenu(const QPoint &pos)
{
const QModelIndex index = ui->itemTreeView->indexAt(pos);
if (!index.isValid())
return;
QMenu contextMenu;
const auto objectId = index.data(ObjectModel::ObjectIdRole).value<ObjectId>();
ContextMenuExtension ext(objectId);
ext.setLocation(ContextMenuExtension::Creation, index.data(ObjectModel::CreationLocationRole).value<SourceLocation>());
ext.setLocation(ContextMenuExtension::Declaration,
index.data(ObjectModel::DeclarationLocationRole).value<SourceLocation>());
ext.setCanFavoriteItems(true);
ext.populateMenu(&contextMenu);
contextMenu.exec(ui->itemTreeView->viewport()->mapToGlobal(pos));
}
void QuickInspectorWidget::stateReceived(GammaRay::QuickInspectorWidget::StateFlag flag)
{
if (!m_state.testFlag(flag)) {
return;
}
m_state &= ~flag;
if (m_state == QuickInspectorWidget::WaitingApply) {
QMetaObject::invokeMethod(this, "stateReceived", Qt::QueuedConnection, Q_ARG(GammaRay::QuickInspectorWidget::StateFlag, GammaRay::QuickInspectorWidget::WaitingApply));
} else if (m_state == QuickInspectorWidget::Ready) {
resetState();
}
}
void QuickInspectorWidget::resetState()
{
if (m_state != QuickInspectorWidget::Ready)
return;
m_stateManager.reset();
}
void QuickInspectorWidget::saveState()
{
if (m_state != QuickInspectorWidget::Ready)
return;
m_stateManager.saveState();
}
void QuickInspectorWidget::saveAsImage()
{
const QString fileName = QFileDialog::getSaveFileName(
this,
tr("Save As Image"),
QString(),
tr("Image Files (*.png *.jpg)"));
if (fileName.isEmpty())
return;
const CompleteFrameRequest request(fileName,
sender() == ui->actionSaveAsImageWithDecoration);
m_scenePreviewWidget->previewWidget()->requestCompleteFrame(request);
}
void QuickInspectorWidget::updateActions()
{
ui->actionSaveAsImage->setEnabled(m_scenePreviewWidget->previewWidget()->hasValidFrame());
ui->actionSaveAsImageWithDecoration->setEnabled(ui->actionSaveAsImage->isEnabled());
}
|