| 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) |
| 55 | { |
| 56 | 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)); |
| 57 | } |
| 58 | |
| 59 | void RemoteViewClient::setViewActive(bool active) |
| 60 | { |
nothing calls this directly
no test coverage detected