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
|
/*
quickinspectorinterface.h
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.
*/
#ifndef GAMMARAY_QUICKINSPECTOR_QUICKINSPECTORINTERFACE_H
#define GAMMARAY_QUICKINSPECTOR_QUICKINSPECTORINTERFACE_H
#include <common/streamoperators.h>
#include "quickitemgeometry.h"
#include <QObject>
#include <QRectF>
#include <QVariantMap>
#include <QEvent>
QT_BEGIN_NAMESPACE
class QImage;
QT_END_NAMESPACE
namespace GammaRay {
struct QuickDecorationsSettings;
class QuickInspectorInterface : public QObject
{
Q_OBJECT
Q_PROPERTY(bool serverSideDecoration READ serverSideDecorationEnabled WRITE setServerSideDecorationsEnabled NOTIFY serverSideDecorationChanged)
public:
enum Feature
{
NoFeatures = 0,
CustomRenderModeClipping = 1,
CustomRenderModeOverdraw = 2,
CustomRenderModeBatches = 4,
CustomRenderModeChanges = 8,
CustomRenderModeTraces = 16,
AllCustomRenderModes = CustomRenderModeClipping | CustomRenderModeOverdraw
| CustomRenderModeBatches | CustomRenderModeChanges
| CustomRenderModeTraces,
AnalyzePainting
};
enum RenderMode
{
NormalRendering,
VisualizeClipping,
VisualizeOverdraw,
VisualizeBatches,
VisualizeChanges,
VisualizeTraces,
};
Q_ENUM(RenderMode)
Q_DECLARE_FLAGS(Features, Feature)
explicit QuickInspectorInterface(QObject *parent = nullptr);
~QuickInspectorInterface() override;
bool serverSideDecorationEnabled() const;
void setServerSideDecorationsEnabled(bool enabled);
public slots:
virtual void selectWindow(int index) = 0;
virtual void setCustomRenderMode(
GammaRay::QuickInspectorInterface::RenderMode customRenderMode) = 0;
virtual void checkFeatures() = 0;
virtual void setOverlaySettings(const GammaRay::QuickDecorationsSettings &settings) = 0;
virtual void checkOverlaySettings() = 0;
virtual void analyzePainting() = 0;
virtual void checkSlowMode() = 0;
virtual void setSlowMode(bool slow) = 0;
signals:
void features(QFlags<GammaRay::QuickInspectorInterface::Feature> features);
void serverSideDecorationChanged(bool enabled);
void overlaySettings(const GammaRay::QuickDecorationsSettings &settings);
void slowModeChanged(bool slow);
private:
bool m_serverSideDecoration;
};
}
Q_DECLARE_METATYPE(GammaRay::QuickInspectorInterface::Features)
Q_DECLARE_METATYPE(GammaRay::QuickInspectorInterface::RenderMode)
QT_BEGIN_NAMESPACE
Q_DECLARE_INTERFACE(GammaRay::QuickInspectorInterface,
"com.kdab.GammaRay.QuickInspectorInterface/1.0")
QT_END_NAMESPACE
#endif // GAMMARAY_QUICKINSPECTORINTERFACE_H
|