MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / IsMouseKey

Function IsMouseKey

TheForceEngine/TFE_Ui/imGUI/imgui_internal.h:3225–3225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3223 inline bool IsKeyboardKey(ImGuiKey key) { return key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END; }
3224 inline bool IsGamepadKey(ImGuiKey key) { return key >= ImGuiKey_Gamepad_BEGIN && key < ImGuiKey_Gamepad_END; }
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);

Callers 1

ClearInputKeysMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected