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
|
/*
remoteviewinterface.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_REMOTEVIEWINTERFACE_H
#define GAMMARAY_REMOTEVIEWINTERFACE_H
#include "gammaray_common_export.h"
#include "objectid.h"
#include <QObject>
#include <QPoint>
#include <QTouchEvent>
namespace GammaRay {
class RemoteViewFrame;
/** Communication interface for the remote view widget. */
class GAMMARAY_COMMON_EXPORT RemoteViewInterface : public QObject
{
Q_OBJECT
public:
enum RequestMode
{
RequestBest,
RequestAll
};
explicit RemoteViewInterface(const QString &name, QObject *parent = nullptr);
QString name() const;
using TouchPointStates = QEventPoint::States;
public slots:
virtual void requestElementsAt(const QPoint &pos, GammaRay::RemoteViewInterface::RequestMode mode) = 0;
virtual void pickElementId(const GammaRay::ObjectId &id) = 0;
virtual void sendKeyEvent(int type, int key, int modifiers,
const QString &text = QString(), bool autorep = false,
ushort count = 1) = 0;
virtual void sendMouseEvent(int type, const QPoint &localPos, int button, int buttons,
int modifiers) = 0;
virtual void sendWheelEvent(const QPoint &localPos, QPoint pixelDelta, QPoint angleDelta,
int buttons, int modifiers) = 0;
virtual void sendTouchEvent(const QString &deviceName, int deviceSystemId, int type, int touchDeviceType, int deviceCaps, int touchDeviceMaxTouchPoints, int modifiers,
const QList<QTouchEvent::TouchPoint> &touchPoints) = 0;
virtual void sendUserViewport(const QRectF &userViewport) = 0;
virtual void setViewActive(bool active) = 0;
/// Tell the server we are ready for the next frame.
virtual void clientViewUpdated() = 0;
virtual void requestCompleteFrame() = 0;
signals:
void reset();
void elementsAtReceived(const QList<GammaRay::ObjectId> &ids, int bestCandidate);
void frameUpdated(const GammaRay::RemoteViewFrame &frame);
private:
QString m_name;
};
}
Q_DECLARE_METATYPE(QTouchEvent::TouchPoint)
Q_DECLARE_METATYPE(GammaRay::RemoteViewInterface::TouchPointStates)
Q_DECLARE_METATYPE(QList<QTouchEvent::TouchPoint>)
Q_DECLARE_METATYPE(GammaRay::RemoteViewInterface::RequestMode)
Q_DECLARE_METATYPE(QPointingDevice::PointerType)
Q_DECLARE_METATYPE(QPointingDeviceUniqueId)
QT_BEGIN_NAMESPACE
Q_DECLARE_INTERFACE(GammaRay::RemoteViewInterface, "com.kdab.GammaRay.RemoteViewInterface/1.0")
QT_END_NAMESPACE
GAMMARAY_COMMON_EXPORT QDataStream &operator<<(QDataStream &s, const QList<QTouchEvent::TouchPoint> &points);
GAMMARAY_COMMON_EXPORT QDataStream &operator>>(QDataStream &s, QList<QTouchEvent::TouchPoint> &points);
GAMMARAY_COMMON_EXPORT QDataStream &operator>>(QDataStream &s, GammaRay::RemoteViewInterface::TouchPointStates &states);
GAMMARAY_COMMON_EXPORT QDataStream &operator<<(QDataStream &s, GammaRay::RemoteViewInterface::TouchPointStates states);
GAMMARAY_COMMON_EXPORT QDataStream &operator<<(QDataStream &s, QPointingDeviceUniqueId id);
GAMMARAY_COMMON_EXPORT QDataStream &operator>>(QDataStream &s, QPointingDeviceUniqueId &id);
#endif // GAMMARAY_REMOTEVIEWINTERFACE_H
|