Searched refs:WantCaptureMouse (Results 1 – 17 of 17) sorted by relevance
/third_party/flutter/skia/third_party/externals/imgui/examples/ |
D | imgui_impl_osx.mm | 135 return io.WantCaptureMouse; 143 return io.WantCaptureMouse; 181 return io.WantCaptureMouse;
|
/third_party/skia/third_party/externals/imgui/examples/example_glfw_metal/ |
D | main.mm | 90 …// You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants … 91 … // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application.
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_osx.mm | 283 return io.WantCaptureMouse; 291 return io.WantCaptureMouse; 329 return io.WantCaptureMouse;
|
/third_party/skia/third_party/externals/imgui/examples/example_sdl_metal/ |
D | main.mm | 90 …// You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants … 91 … // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application.
|
/third_party/flutter/skia/tools/viewer/ |
D | ImGuiLayer.cpp | 82 return io.WantCaptureMouse; in onMouse()
|
/third_party/skia/tools/viewer/ |
D | ImGuiLayer.cpp | 115 return io.WantCaptureMouse; in onMouse()
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | FAQ.md | 105 You can read the `io.WantCaptureMouse`, `io.WantCaptureKeyboard` and `io.WantTextInput` flags from … 106 - When `io.WantCaptureMouse` is set, you need to discard/hide the mouse inputs from your underlying… 110 …ur mouse/keyboard inputs to Dear ImGui, regardless of the value `io.WantCaptureMouse`/`io.WantCapt… 120 if (!io.WantCaptureMouse) 126 **Note:** The `io.WantCaptureMouse` is more correct that any manual attempt to "check if the mouse …
|
D | CHANGELOG.txt | 105 - IO: Added 'io.WantCaptureMouseUnlessPopupClose' alternative to `io.WantCaptureMouse'. (#4480) 107 clicking on a void when a popup is open will close the popup but not release io.WantCaptureMouse). 2433 - IO: Tweaked logic for `io.WantCaptureMouse` so it now outputs false when e.g. hovering over void … 2537 …function wanted to use `io.WantCaptureMouse` flag. Replaced with IM_ASSERT + comment redirecting u…
|
/third_party/mesa3d/src/imgui/ |
D | imgui.h | 1370 …bool WantCaptureMouse; // When io.WantCaptureMouse is true, imgui will use th… member
|
D | imgui.cpp | 3341 g.IO.WantCaptureMouse = (g.WantCaptureMouseNextFrame != 0); in UpdateHoveredWindowAndCaptureFlags() 3343 …g.IO.WantCaptureMouse = (mouse_avail_to_imgui && (g.HoveredWindow != NULL || mouse_any_down)) || (… in UpdateHoveredWindowAndCaptureFlags()
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui.h | 1363 …bool WantCaptureMouse; // When io.WantCaptureMouse is true, imgui will use th… member
|
D | imgui_demo.cpp | 2424 ImGui::Text("WantCaptureMouse: %d", io.WantCaptureMouse); in ShowDemoWindowMisc()
|
D | imgui.cpp | 3276 g.IO.WantCaptureMouse = (g.WantCaptureMouseNextFrame != 0); in UpdateHoveredWindowAndCaptureFlags() 3278 …g.IO.WantCaptureMouse = (mouse_avail_to_imgui && (g.HoveredWindow != NULL || mouse_any_down)) || (… in UpdateHoveredWindowAndCaptureFlags()
|
/third_party/flutter/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 754 - IO: Tweaked logic for `io.WantCaptureMouse` so it now outputs false when e.g. hovering over void … 858 …function wanted to use `io.WantCaptureMouse` flag. Replaced with IM_ASSERT + comment redirecting u…
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui.h | 1908 …bool WantCaptureMouse; // Set when Dear ImGui will use mouse inputs, in this … member
|
D | imgui.cpp | 3922 … io.WantCaptureMouse = io.WantCaptureMouseUnlessPopupClose = (g.WantCaptureMouseNextFrame != 0); in UpdateHoveredWindowAndCaptureFlags() 3926 …io.WantCaptureMouse = (mouse_avail && (g.HoveredWindow != NULL || mouse_any_down)) || has_open_pop… in UpdateHoveredWindowAndCaptureFlags()
|
D | imgui_demo.cpp | 5506 ImGui::Text("WantCaptureMouse: %d", io.WantCaptureMouse);
|