== Draft == '''THIS PAGE IS A WORK IN PROGRESS''' ... Please make edits to this page to improve it! = SDL_Keymod = An enumeration of key modifier masks. == Values == {| |SDL_KMOD_NONE |0 (no modifier is applicable) |- |SDL_KMOD_LSHIFT |the left Shift key is down |- |SDL_KMOD_RSHIFT |the right Shift key is down |- |SDL_KMOD_LCTRL |the left Ctrl (Control) key is down |- |SDL_KMOD_RCTRL |the right Ctrl (Control) key is down |- |SDL_KMOD_LALT |the left Alt key is down |- |SDL_KMOD_RALT |the right Alt key is down |- |SDL_KMOD_LGUI |the left GUI key (often the Windows key) is down |- |SDL_KMOD_RGUI |the right GUI key (often the Windows key) is down |- |SDL_KMOD_NUM |the Num Lock key (may be located on an extended keypad) is down |- |SDL_KMOD_CAPS |the Caps Lock key is down |- |SDL_KMOD_MODE |the !AltGr key is down |- |SDL_KMOD_SCROLL |the Scroll Lock key is down (available since SDL 2.0.18) |- |SDL_KMOD_CTRL |(SDL_KMOD_LCTRL|SDL_KMOD_RCTRL) |- |SDL_KMOD_SHIFT |(SDL_KMOD_LSHIFT|SDL_KMOD_RSHIFT) |- |SDL_KMOD_ALT |(SDL_KMOD_LALT|SDL_KMOD_RALT) |- |SDL_KMOD_GUI |(SDL_KMOD_LGUI|SDL_KMOD_RGUI) |} == Remarks == These may be OR'd together. == Related Functions == :[[SDL_GetModState]] :[[SDL_SetModState]] ---- [[CategoryEnum]], [[CategoryKeyboard]], [[CategoryDraft]]