| 3225 | inline bool IsMouseKey(ImGuiKey key) { return key >= ImGuiKey_Mouse_BEGIN && key < ImGuiKey_Mouse_END; } |
| 3226 | inline bool IsAliasKey(ImGuiKey key) { return key >= ImGuiKey_Aliases_BEGIN && key < ImGuiKey_Aliases_END; } |
| 3227 | inline bool IsModKey(ImGuiKey key) { return key >= ImGuiKey_LeftCtrl && key <= ImGuiKey_RightSuper; } |
| 3228 | ImGuiKeyChord FixupKeyChord(ImGuiKeyChord key_chord); |
| 3229 | inline ImGuiKey ConvertSingleModFlagToKey(ImGuiKey key) |
| 3230 | { |
no outgoing calls
no test coverage detected