| 2986 | IMGUI_API void GetTypematicRepeatRate(ImGuiInputFlags flags, float* repeat_delay, float* repeat_rate); |
| 2987 | IMGUI_API void SetActiveIdUsingAllKeyboardKeys(); |
| 2988 | inline bool IsActiveIdUsingNavDir(ImGuiDir dir) { ImGuiContext& g = *GImGui; return (g.ActiveIdUsingNavDirMask & (1 << dir)) != 0; } |
| 2989 | |
| 2990 | // [EXPERIMENTAL] Low-Level: Key/Input Ownership |
| 2991 | // - The idea is that instead of "eating" a given input, we can link to an owner id. |
no outgoing calls
no test coverage detected