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
|
/*
remoteviewclient.cpp
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.
*/
#include "remoteviewclient.h"
#include <common/endpoint.h>
using namespace GammaRay;
RemoteViewClient::RemoteViewClient(const QString &name, QObject *parent)
: RemoteViewInterface(name, parent)
{
}
void RemoteViewClient::requestElementsAt(const QPoint &pos, GammaRay::RemoteViewInterface::RequestMode mode)
{
Endpoint::instance()->invokeObject(name(), "requestElementsAt", QVariantList() << pos << QVariant::fromValue(mode));
}
void RemoteViewClient::pickElementId(const GammaRay::ObjectId &id)
{
Endpoint::instance()->invokeObject(name(), "pickElementId", QVariantList() << QVariant::fromValue(id));
}
void RemoteViewClient::sendKeyEvent(int type, int key, int modifiers, const QString &text,
bool autorep, ushort count)
{
Endpoint::instance()->invokeObject(name(), "sendKeyEvent", QVariantList() << QVariant::fromValue(type) << QVariant::fromValue(key) << QVariant::fromValue(modifiers) << QVariant::fromValue(text) << QVariant::fromValue(autorep) << QVariant::fromValue(count));
}
void RemoteViewClient::sendMouseEvent(int type, const QPoint &localPos, int button, int buttons,
int modifiers)
{
Endpoint::instance()->invokeObject(name(), "sendMouseEvent", QVariantList() << QVariant::fromValue(type) << QVariant::fromValue(localPos) << QVariant::fromValue(button) << QVariant::fromValue(buttons) << QVariant::fromValue(modifiers));
}
void RemoteViewClient::sendWheelEvent(const QPoint &localPos, QPoint pixelDelta, QPoint angleDelta,
int buttons, int modifiers)
{
Endpoint::instance()->invokeObject(name(), "sendWheelEvent", QVariantList() << QVariant::fromValue(localPos) << QVariant::fromValue(pixelDelta) << QVariant::fromValue(angleDelta) << QVariant::fromValue(buttons) << QVariant::fromValue(modifiers));
}
void RemoteViewClient::sendTouchEvent(const QString &deviceName, int deviceSystemId, int type, int touchDeviceType, int deviceCaps, int touchDeviceMaxTouchPoints, int modifiers,
const QList<QTouchEvent::TouchPoint> &touchPoints)
{
Endpoint::instance()->invokeObject(name(), "sendTouchEvent", QVariantList() << QVariant::fromValue(deviceName) << QVariant::fromValue(deviceSystemId) << QVariant::fromValue(type) << QVariant::fromValue(touchDeviceType) << QVariant::fromValue(deviceCaps) << QVariant::fromValue(touchDeviceMaxTouchPoints) << QVariant::fromValue(modifiers) << QVariant::fromValue(touchPoints));
}
void RemoteViewClient::setViewActive(bool active)
{
Endpoint::instance()->invokeObject(name(), "setViewActive", QVariantList() << active);
}
void RemoteViewClient::sendUserViewport(const QRectF &userViewport)
{
Endpoint::instance()->invokeObject(name(), "sendUserViewport", QVariantList() << userViewport);
}
void RemoteViewClient::clientViewUpdated()
{
Endpoint::instance()->invokeObject(name(), "clientViewUpdated");
}
void RemoteViewClient::requestCompleteFrame()
{
Endpoint::instance()->invokeObject(name(), "requestCompleteFrame");
}
|