| 33 | } |
| 34 | |
| 35 | void RemoteViewClient::sendKeyEvent(int type, int key, int modifiers, const QString &text, |
| 36 | bool autorep, ushort count) |
| 37 | { |
| 38 | Endpoint::instance()->invokeObject(name(), "sendKeyEvent", QVariantList() << QVariant::fromValue(type) << QVariant::fromValue(key) << QVariant::fromValue(modifiers) << QVariant::fromValue(text) << QVariant::fromValue(autorep) << QVariant::fromValue(count)); |
| 39 | } |
| 40 | |
| 41 | void RemoteViewClient::sendMouseEvent(int type, const QPoint &localPos, int button, int buttons, |
| 42 | int modifiers) |
nothing calls this directly
no test coverage detected