-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
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
io->WantCaptureKeyboard not catching SDL touch finger events the first time #7066
Comments
An alternative would be to just give those events to ImGui, but buffer them for a frame for your own viewport. Then you could use |
It was a long time I've wrote this code, but I think this is exactly to solve this problem: auto position = convertTouchToImGuiSpace(touch);
auto& io = ImGui::GetIO();
auto oldPosition = io.MousePos;
io.MousePos = position;
ImGui::UpdateHoveredWindowAndCaptureFlags();
if (ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow) or io.WantCaptureMouse) {
event->stopPropagation();
_capturedTouches.insert(touch->getID());
}
io.MousePos = oldPosition; |
Thank you. This worked. My solution is now:
Note: I had to include "imgui_internal.h" to use UpdateHoveredWindowAndCaptureFlags() I also found that setting up a fake "mouse move"-SDL_Event with a new mouse position and calling ImGui_ImplSDL2_ProcessEvent before calling io->WantCaptureMouse did not work. Many thanks! |
Btw, I'm not 100% sure, but I think |
Changing from |
Issue #8431 is discussing a "mouse" version of this issue, which is trickier to solve. But this particular thread for touch had a solution pushed in 1.89.5 (April 2023. Your issue was posted November 2023 but you were using 1.89.2): "IO: Added io.AddMouseSourceEvent() and ImGuiMouseSource enum. This is to allow backend to specify actual event source between Mouse/TouchScreen/Pen. (#2702, #2334, #2372, #3453, #5693)" In the SDL backend it manifest into calls like:
When in I believe this should solve your problem. If since then you have updated dear imgui and your backend, it should automatically be solved and I'd suggest trying to remove your hack above to verify that it was. I'll close this because AFAIK the change in 1.89.5 was exactly for this, and I apologize for not answering/spotting this earlier. |
As I understood 1.89.5 release fixes the issue for the case where imgui is the only input event consumer. |
Version/Branch of Dear ImGui:
Version: 1.89.2
Branch: master
Back-end/Renderer/Compiler/OS
Back-ends:
imgui_impl_sdl
imgui_impl_opengl3
My Issue/Question:
Example code:
Issue description:
My laptop has a touchscreen.
My application draws OpenGL on the screen and uses ImGui.
If I click the OpenGL area with the mouse, "io->WantCaptureMouse" will return false as expected.
If I move the mouse to the ImGui area and click, it will return true, as expected.
If I then move the mouse back to the OpenGL area, it will again return false, as expected.
If I then touch the screen with my finger on the ImGui area, it will return false the first time, and then return true consecutively.
If I then (after touching ImGui components) touch the OpenGL area again, it will return true the first time, and then return false consecutively.
So the first touch with a finger is not "updated" in ImGui, and WantCaptureMouse returns the wrong value.
I have not found a way to work around this yet.
I am suspecting that the issue is due to ImGui not receiving any mouse move events and depends on these to determine that the mouse has entered it's area.
Between two clicks with the mouse, a series of mouse move events will be generated by SDL.
Between a click with the mouse or finger and another click with a finger, no mouse move events are generated.
Perhaps I can create a "fake" mouse move event before sending the mouse click event from a finger to "update" ImGui with the current mouse position, but it does seem a little unnecessary. But until I find a better solution, I will attempt this.
Or am I doing something wrong?
Thank you!
The text was updated successfully, but these errors were encountered: