| 2507 | } |
| 2508 | |
| 2509 | void QKeyMapper_Worker::postMouseMoveToPoint(HWND hwnd, const QPoint &mousepoint) |
| 2510 | { |
| 2511 | POINT newPos; |
| 2512 | newPos.x = mousepoint.x(); |
| 2513 | newPos.y = mousepoint.y(); |
| 2514 | |
| 2515 | LPARAM lParam = MAKELPARAM(newPos.x, newPos.y); |
| 2516 | SendMessageTimeout( |
| 2517 | hwnd, |
| 2518 | WM_MOUSEMOVE, |
| 2519 | 0, |
| 2520 | lParam, |
| 2521 | SMTO_ABORTIFHUNG | SMTO_BLOCK | SMTO_ERRORONEXIT, |
| 2522 | SENDMESSAGE_TIMEOUT, |
| 2523 | nullptr |
| 2524 | ); |
| 2525 | } |
| 2526 | |
| 2527 | void QKeyMapper_Worker::sendKeyboardInput(V_KEYCODE vkeycode, int keyupdown) |
| 2528 | { |
nothing calls this directly
no outgoing calls
no test coverage detected