https://bugs.winehq.org/show_bug.cgi?id=37528
Bug ID: 37528 Summary: mouse_event Product: Wine Version: 1.7.30 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: user32 Assignee: wine-bugs@winehq.org Reporter: den.aria@gmail.com Distribution: ---
Hello! I am trying generate mouse event and using the mouse_event function. When event in my application win32 (started by WINE) it is work great, but when event in the native Linux (Ubuntu) window it's does not work.
Mouse move work ok in Ubuntu and mouse is moving mouse_event(MOUSEEVENTF_MOVE, x, y, 0, 0);
But MOUSEEVENTF_RIGHTDOWN, MOUSEEVENTF_RIGHTUP is not working for Linux window. native Linux window is transparent for event.
How can I generate mouse click for native Linux windows? from my win32 application.