SDL_GetModState
NAMESYNOPSIS
DESCRIPTION
RETURN VALUE
SEE ALSO
NAME
SDL_GetModState − Get the state of modifier keys.
SYNOPSIS
#include "SDL.h"
SDLMod SDL_GetModState(void);
DESCRIPTION
Returns the current state of the modifier keys (CTRL, ALT, etc.).
RETURN VALUE
The return value can be an OR’d combination of the SDLMod enum.
SDLMod
typedef enum {
KMOD_NONE = 0x0000,
KMOD_LSHIFT= 0x0001,
KMOD_RSHIFT= 0x0002,
KMOD_LCTRL = 0x0040,
KMOD_RCTRL = 0x0080,
KMOD_LALT = 0x0100,
KMOD_RALT = 0x0200,
KMOD_LMETA = 0x0400,
KMOD_RMETA = 0x0800,
KMOD_NUM = 0x1000,
KMOD_CAPS = 0x2000,
KMOD_MODE = 0x4000,
} SDLMod;
SDL also defines the following symbols for convenience:
#define KMOD_CTRL (KMOD_LCTRL|KMOD_RCTRL)
#define KMOD_SHIFT (KMOD_LSHIFT|KMOD_RSHIFT)
#define KMOD_ALT (KMOD_LALT|KMOD_RALT)
#define KMOD_META (KMOD_LMETA|KMOD_RMETA)
SEE ALSO
SDL_GetKeyState
More Linux Commands
manpages/qsort.3.html
qsort(3) - sorts an array (Library - Linux man page)........
The qsort() function sorts an array with nmemb elements of size size. The base argument points to the start of the array. The contents of the array are sorted i
manpages/vsnprintf.3.html
vsnprintf(3) - formatted output conversion - Linux man page
The functions in the printf() family produce output according to a format as described below. The functions printf() and vprintf() write output to stdout, the s
manpages/FcConfigGetRescanInterval.3.html
FcConfigGetRescanInterval(3) - Get config rescan interval...
Returns the interval between automatic checks of the configuration (in seconds) specified in config. The configuration is checked during a call to FcFontList wh
manpages/XML::XPath::Node::Attribute.3pm.html
XML::XPath::Node::Attribute(3pm) - a single attribute.......
new ( key, value, prefix ) Create a new attribute node. getName Returns the key for the attribute getLocalName As getName above, but without namespace informati
manpages/Tk_StrictMotif.3.html
Tk_StrictMotif(3) - Return value of tk_strictMotif variable
This procedure returns the current value of the tk_strictMotif variable in the interpreter associated with tkwins application. The value is returned as an integ
manpages/ecvt_r.3.html
ecvt_r(3) - convert a floating-point number to a string.....
ecvt_r.3 - The functions ecvt_r(), fcvt_r(), qecvt_r() and qfcvt_r() are identical to ecvt(3), fcvt(3), qecvt(3) and qfcvt(3), respectively, except that they do
manpages/tfind.3.html
tfind(3) - manage a binary tree (Library - Linux man page)
tsearch(), tfind(), twalk(), and tdelete() manage a binary tree. They are generalized from Knuth (6.2.2) Algorithm T. The first field in each node of the tree i
manpages/XShapeGetRectangles.3.html
XShapeGetRectangles(3) - X nonrectangular shape functions...
The X11 Nonrectangular Window Shape Extension adds nonrectangular windows to the X Window System. PREDEFINED VALUES Operations: ShapeSet ShapeUnion ShapeInterse
manpages/Tcl_ConvertElement.3.html
Tcl_ConvertElement(3) - manipulate Tcl lists (Man Page).....
These procedures may be used to disassemble and reassemble Tcl lists. Tcl_SplitList breaks a list up into its constituent elements, returning an array of pointe
manpages/Tcl_FSGetCwd.3.html
Tcl_FSGetCwd(3) - procedures to interact with any filesystem
There are several reasons for calling the Tcl_FS API functions (e.g. Tcl_FSAccess and Tcl_FSStat) rather than calling system level functions like access and sta
manpages/git-credential-cache.1.html
git-credential-cache(1) Helper to temporarily store password
This command caches credentials in memory for use by future Git programs. The stored credentials never touch the disk, and are forgotten after a configurable ti
manpages/djpeg.1.html
djpeg(1) - decompress a JPEG file to an image file (ManPage)
djpeg decompresses the named JPEG file, or the standard input if no file is named, and produces an image file on the standard output. PBMPLUS (PPM/PGM), BMP, GI
