enum ImGui::ImGuiConfigFlags
Overview
Defined in:
types.crEnum Members
-
None =
0
-
Master keyboard navigation enable flag. Enable full Tabbing + directional arrows + space/enter to activate.
-
Master gamepad navigation enable flag. Backend also needs to set ImGuiBackendFlags_HasGamepad.
-
Instruct navigation to move the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantSetMousePos=true. If enabled you MUST honor io.WantSetMousePos requests in your backend, otherwise ImGui will react as if the mouse is jumping around back and forth.
-
Instruct navigation to not set the io.WantCaptureKeyboard flag when io.NavActive is set.
-
NoMouse =
16
-
Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information set by the backend.
-
NoMouseCursorChange =
32
-
Instruct backend to not alter mouse cursor shape and visibility. Use if the backend cursor changes are interfering with yours and you don't want to use SetMouseCursor() to change mouse cursor. You may want to honor requests from imgui by reading GetMouseCursor() yourself instead.
-
IsSRGB =
1048576
-
Application is SRGB-aware.
-
IsTouchScreen =
2097152
-
Application is using a touch screen instead of a mouse.
-
All =
3145791
Instance Method Summary
- #is_srgb?
- #is_touch_screen?
- #nav_enable_gamepad?
- #nav_enable_keyboard?
- #nav_enable_set_mouse_pos?
- #nav_no_capture_keyboard?
- #no_mouse?
- #no_mouse_cursor_change?
- #none?