Home
last modified time | relevance | path

Searched refs:IsWindowHovered (Results 1 - 7 of 7) sorted by relevance

/third_party/mesa3d/src/intel/tools/
H A Daubinator_viewer_urb.h40 const bool window_hovered = ImGui::IsWindowHovered(); in DrawAllocation()
/third_party/mesa3d/src/imgui/
H A Dimgui.h142 typedef int ImGuiHoveredFlags; // -> enum ImGuiHoveredFlags_ // Flags: for IsItemHovered(), IsWindowHovered() etc.
257 IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags=0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options. NB: If you are trying to check whether your mouse should be dispatched to imgui or to your app, you should use the 'io.WantCaptureMouse' boolean for that! Please read the FAQ!
844 // Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()
846 // Note: windows with the ImGuiWindowFlags_NoInputs flag are ignored by IsWindowHovered() calls.
850 ImGuiHoveredFlags_ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered
851 ImGuiHoveredFlags_RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)
852 ImGuiHoveredFlags_AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered
1499 static inline bool IsAnyWindowHovered() { return IsWindowHovered(ImGuiHoveredFlags_AnyWindow); } in IsAnyWindowHovered()
1509 static inline bool IsRootWindowOrAnyChildHovered() { return IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows); } in IsRootWindowOrAnyChildHovered()
1515 static inline bool IsMouseHoveringAnyWindow() { return IsWindowHovered(ImGuiHoveredFlags_AnyWindo in IsPosHoveringAnyWindow()
[all...]
H A Dimgui_memory_editor.h201 if (ImGui::IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows) && ImGui::IsMouseClicked(1)) in DrawWindow()
H A Dimgui.cpp413 - 2018/01/11 (1.60) - obsoleted IsAnyWindowHovered() in favor of IsWindowHovered(ImGuiHoveredFlags_AnyWindow). Kept redirection function (will obsolete).
432 - 2017/11/02 (1.53) - obsoleted IsRootWindowOrAnyChildHovered() in favor of using IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows);
434 - 2017/10/20 (1.52) - changed IsWindowHovered() default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it.
435 - 2017/10/20 (1.52) - marked IsItemHoveredRect()/IsMouseHoveringWindow() as obsolete, in favor of using the newly introduced flags for IsItemHovered() and IsWindowHovered(). See https://github.com/ocornut/imgui/issues/1382 for details.
5945 bool ImGui::IsWindowHovered(ImGuiHoveredFlags flags) in IsWindowHovered() function in ImGui
6996 if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) in BeginPopupContextWindow()
7007 if (IsMouseReleased(mouse_button) && !IsWindowHovered(ImGuiHoveredFlags_AnyWindow)) in BeginPopupContextVoid()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp2314 // Testing IsWindowHovered() function with its various flags. in ShowDemoWindowWidgets()
2316 "IsWindowHovered() = %d\n" in ShowDemoWindowWidgets()
2317 "IsWindowHovered(_AllowWhenBlockedByPopup) = %d\n" in ShowDemoWindowWidgets()
2318 "IsWindowHovered(_AllowWhenBlockedByActiveItem) = %d\n" in ShowDemoWindowWidgets()
2319 "IsWindowHovered(_ChildWindows) = %d\n" in ShowDemoWindowWidgets()
2320 "IsWindowHovered(_ChildWindows|_NoPopupHierarchy) = %d\n" in ShowDemoWindowWidgets()
2321 "IsWindowHovered(_ChildWindows|_RootWindow) = %d\n" in ShowDemoWindowWidgets()
2322 "IsWindowHovered(_ChildWindows|_RootWindow|_NoPopupHierarchy) = %d\n" in ShowDemoWindowWidgets()
2323 "IsWindowHovered(_RootWindow) = %d\n" in ShowDemoWindowWidgets()
2324 "IsWindowHovered(_RootWindo in ShowDemoWindowWidgets()
[all...]
H A Dimgui.h191 typedef int ImGuiHoveredFlags; // -> enum ImGuiHoveredFlags_ // Flags: for IsItemHovered(), IsWindowHovered() etc.
355 IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags=0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options. NB: If you are trying to check whether your mouse should be dispatched to imgui or to your app, you should use the 'io.WantCaptureMouse' boolean for that! Please read the FAQ!
675 // - You can bypass the hovering restriction by using ImGuiHoveredFlags_AllowWhenBlockedByPopup when calling IsItemHovered() or IsWindowHovered().
1276 // Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered()
1278 // Note: windows with the ImGuiWindowFlags_NoInputs flag are ignored by IsWindowHovered() calls.
1282 ImGuiHoveredFlags_ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered
1283 ImGuiHoveredFlags_RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)
1284 ImGuiHoveredFlags_AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered
1285 ImGuiHoveredFlags_NoPopupHierarchy = 1 << 3, // IsWindowHovered() only: Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow)
1286 //ImGuiHoveredFlags_DockHierarchy = 1 << 4, // IsWindowHovered() onl
[all...]
H A Dimgui.cpp428 - ImGui::IsAnyWindowHovered() -> use ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow)
474 - IsRootWindowOrAnyChildHovered() -> use IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows)
542 - 2018/01/11 (1.60) - obsoleted IsAnyWindowHovered() in favor of IsWindowHovered(ImGuiHoveredFlags_AnyWindow). Kept redirection function (will obsolete).
561 - 2017/11/02 (1.53) - obsoleted IsRootWindowOrAnyChildHovered() in favor of using IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows);
563 - 2017/10/20 (1.52) - changed IsWindowHovered() default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it.
564 - 2017/10/20 (1.52) - marked IsItemHoveredRect()/IsMouseHoveringWindow() as obsolete, in favor of using the newly introduced flags for IsItemHovered() and IsWindowHovered(). See https://github.com/ocornut/imgui/issues/1382 for details.
567 IsMouseHoveringAnyWindow() --> IsWindowHovered(ImGuiHoveredFlags_AnyWindow)
568 IsMouseHoveringWindow() --> IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) [weird, old behavior]
6745 bool ImGui::IsWindowHovered(ImGuiHoveredFlag function in ImGui
[all...]

Completed in 54 milliseconds