Home
last modified time | relevance | path

Searched refs:WantCaptureMouse (Results 1 – 17 of 17) sorted by relevance

/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_osx.mm135 return io.WantCaptureMouse;
143 return io.WantCaptureMouse;
181 return io.WantCaptureMouse;
/third_party/skia/third_party/externals/imgui/examples/example_glfw_metal/
Dmain.mm90 …// 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/
Dimgui_impl_osx.mm283 return io.WantCaptureMouse;
291 return io.WantCaptureMouse;
329 return io.WantCaptureMouse;
/third_party/skia/third_party/externals/imgui/examples/example_sdl_metal/
Dmain.mm90 …// 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/
DImGuiLayer.cpp82 return io.WantCaptureMouse; in onMouse()
/third_party/skia/tools/viewer/
DImGuiLayer.cpp115 return io.WantCaptureMouse; in onMouse()
/third_party/skia/third_party/externals/imgui/docs/
DFAQ.md105 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 …
DCHANGELOG.txt105 - 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/
Dimgui.h1370 …bool WantCaptureMouse; // When io.WantCaptureMouse is true, imgui will use th… member
Dimgui.cpp3341 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/
Dimgui.h1363 …bool WantCaptureMouse; // When io.WantCaptureMouse is true, imgui will use th… member
Dimgui_demo.cpp2424 ImGui::Text("WantCaptureMouse: %d", io.WantCaptureMouse); in ShowDemoWindowMisc()
Dimgui.cpp3276 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/
DCHANGELOG.txt754 - 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/
Dimgui.h1908 …bool WantCaptureMouse; // Set when Dear ImGui will use mouse inputs, in this … member
Dimgui.cpp3922 … 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()
Dimgui_demo.cpp5506 ImGui::Text("WantCaptureMouse: %d", io.WantCaptureMouse);