enum
ImGui::ImGuiFocusedFlags
Overview
Defined in:
types.crEnum Members
-
None =
0 -
ChildWindows =
1 -
Return true if any children of the window is focused
-
RootWindow =
2 -
Test from root window (top most parent of the current hierarchy)
-
AnyWindow =
4 -
Return true if any window is focused. Important: If you are trying to tell how to dispatch your low-level inputs, do NOT use this. Use 'io.WantCaptureMouse' instead! Please read the FAQ!
-
NoPopupHierarchy =
8 -
Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow)
-
RootAndChildWindows =
3 -
All =
15
Instance Method Summary
-
#any_window?
Returns
trueif this enum value containsAnyWindow -
#child_windows?
Returns
trueif this enum value containsChildWindows -
#no_popup_hierarchy?
Returns
trueif this enum value containsNoPopupHierarchy -
#none?
Returns
trueif this enum value containsNone -
#root_and_child_windows?
Returns
trueif this enum value containsRootAndChildWindows -
#root_window?
Returns
trueif this enum value containsRootWindow