-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Windows Pointer Events? #3453
Comments
Hello,
It's not supported yet. I don't have such device and wouldn't be able to test for it. -Omar |
Could you elaborate on "some windows" ?
Can you confirm your setup and if you are calling If you have mouse-in-pointer enabled then I guess it means you are handling WM_POINTER events and you can convert them to mouse events. This is wrong:
Because the meaning of If there is a confirmation that you are using |
Config/Build Information
My Issue/Question:
Hello there. Some windows instead of sending typical mouse input messages that ImGui expects (MS docs reference), send pointer event messages (MS docs reference). Therefore mouse input does not get processed with
ImGui_ImplWin32_WndProcHandler
. On my end I am using a hacky fix in which I substitute pointer events with mouse input messages that ImGui expects. For example:I was wondering if there are any plans to support such pointer event messages in the future? Or does it already exist and I've just missed it?
The text was updated successfully, but these errors were encountered: