| 45 | } |
| 46 | |
| 47 | void RemoteViewClient::sendWheelEvent(const QPoint &localPos, QPoint pixelDelta, QPoint angleDelta, |
| 48 | int buttons, int modifiers) |
| 49 | { |
| 50 | Endpoint::instance()->invokeObject(name(), "sendWheelEvent", QVariantList() << QVariant::fromValue(localPos) << QVariant::fromValue(pixelDelta) << QVariant::fromValue(angleDelta) << QVariant::fromValue(buttons) << QVariant::fromValue(modifiers)); |
| 51 | } |
| 52 | |
| 53 | void RemoteViewClient::sendTouchEvent(const QString &deviceName, int deviceSystemId, int type, int touchDeviceType, int deviceCaps, int touchDeviceMaxTouchPoints, int modifiers, |
| 54 | const QList<QTouchEvent::TouchPoint> &touchPoints) |
nothing calls this directly
no test coverage detected