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
|
/*
paintanalyzerinterface.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2015 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_PAINTANALYZERINTERFACE_H
#define GAMMARAY_PAINTANALYZERINTERFACE_H
#include "gammaray_common_export.h"
#include <QDataStream>
#include <QMetaType>
#include <QObject>
#include <QPainterPath>
QT_BEGIN_NAMESPACE
class QImage;
QT_END_NAMESPACE
namespace GammaRay {
/** Communication interface for GammaRay::PaintAnalyzer. */
class GAMMARAY_COMMON_EXPORT PaintAnalyzerInterface : public QObject
{
Q_OBJECT
Q_PROPERTY(bool hasArgumentDetails READ hasArgumentDetails WRITE setHasArgumentDetails NOTIFY hasArgumentDetailsChanged)
Q_PROPERTY(bool hasStackTrace READ hasStackTrace WRITE setHasStackTrace NOTIFY hasStackTraceChanged)
public:
explicit PaintAnalyzerInterface(const QString &name, QObject *parent = nullptr);
QString name() const;
bool hasArgumentDetails() const;
void setHasArgumentDetails(bool hasDetails);
bool hasStackTrace() const;
void setHasStackTrace(bool hasStackTrace);
Q_SIGNALS:
void hasArgumentDetailsChanged(bool);
void hasStackTraceChanged(bool);
private:
QString m_name;
bool m_hasArgumentDetails;
bool m_hasStackTrace;
};
struct PaintAnalyzerFrameData
{
QPainterPath clipPath;
};
GAMMARAY_COMMON_EXPORT QDataStream &operator<<(QDataStream &stream, const GammaRay::PaintAnalyzerFrameData &data);
GAMMARAY_COMMON_EXPORT QDataStream &operator>>(QDataStream &stream, GammaRay::PaintAnalyzerFrameData &data);
}
Q_DECLARE_METATYPE(GammaRay::PaintAnalyzerFrameData)
QT_BEGIN_NAMESPACE
Q_DECLARE_INTERFACE(GammaRay::PaintAnalyzerInterface, "com.kdab.GammaRay.PaintAnalyzer/1.0")
QT_END_NAMESPACE
#endif // GAMMARAY_PAINTANALYZERINTERFACE_H
|