| 39 | } |
| 40 | |
| 41 | void RemoteViewClient::sendMouseEvent(int type, const QPoint &localPos, int button, int buttons, |
| 42 | int modifiers) |
| 43 | { |
| 44 | Endpoint::instance()->invokeObject(name(), "sendMouseEvent", QVariantList() << QVariant::fromValue(type) << QVariant::fromValue(localPos) << QVariant::fromValue(button) << QVariant::fromValue(buttons) << QVariant::fromValue(modifiers)); |
| 45 | } |
| 46 | |
| 47 | void RemoteViewClient::sendWheelEvent(const QPoint &localPos, QPoint pixelDelta, QPoint angleDelta, |
| 48 | int buttons, int modifiers) |
nothing calls this directly
no test coverage detected