Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
168 lines (145 loc) · 4.86 KB

SDL_keyboard.h

File metadata and controls

168 lines (145 loc) · 4.86 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
*/
Jul 10, 2006
Jul 10, 2006
23
24
25
26
27
/**
* \file SDL_keyboard.h
*
* Include file for SDL keyboard event handling
*/
Apr 26, 2001
Apr 26, 2001
28
29
30
31
#ifndef _SDL_keyboard_h
#define _SDL_keyboard_h
Feb 10, 2006
Feb 10, 2006
32
#include "SDL_stdinc.h"
Feb 10, 2006
Feb 10, 2006
33
#include "SDL_error.h"
Apr 26, 2001
Apr 26, 2001
34
35
36
37
38
#include "SDL_keysym.h"
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
39
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
40
extern "C" {
Jul 10, 2006
Jul 10, 2006
41
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
42
43
#endif
Jul 10, 2006
Jul 10, 2006
44
45
46
47
/**
* \struct SDL_keysym
*
* \brief The SDL keysym structure, used in key events.
Apr 26, 2001
Apr 26, 2001
48
*/
Jul 10, 2006
Jul 10, 2006
49
50
typedef struct SDL_keysym
{
Feb 5, 2008
Feb 5, 2008
51
SDL_scancode scancode; /**< SDL physical key code - see ::SDL_scancode for details */
Aug 19, 2007
Aug 19, 2007
52
SDLKey sym; /**< SDL virtual key code - see ::SDLKey for details */
Jul 10, 2006
Jul 10, 2006
53
54
Uint16 mod; /**< current key modifiers */
Uint32 unicode; /**< OBSOLETE, use SDL_TextInputEvent instead */
Apr 26, 2001
Apr 26, 2001
55
56
57
} SDL_keysym;
/* Function prototypes */
Jul 10, 2006
Jul 10, 2006
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
* \fn int SDL_GetNumKeyboards(void)
*
* \brief Get the number of keyboard input devices available.
*
* \sa SDL_SelectKeyboard()
*/
extern DECLSPEC int SDLCALL SDL_GetNumKeyboards(void);
/**
* \fn int SDL_SelectKeyboard(int index)
*
* \brief Set the index of the currently selected keyboard.
*
* \return The index of the previously selected keyboard.
*
* \note You can query the currently selected keyboard by passing an index of -1.
*
* \sa SDL_GetNumKeyboards()
*/
extern DECLSPEC int SDLCALL SDL_SelectKeyboard(int index);
/**
Feb 5, 2008
Feb 5, 2008
82
* \fn Uint8 *SDL_GetKeyboardState(int *numkeys)
Jul 10, 2006
Jul 10, 2006
83
84
85
*
* \brief Get a snapshot of the current state of the selected keyboard.
*
Aug 19, 2007
Aug 19, 2007
86
87
* \param numkeys if non-NULL, receives the length of the returned array.
*
Feb 5, 2008
Feb 5, 2008
88
* \return An array of key states. Indexes into this array are obtained by using ::SDL_scancode values.
Jul 10, 2006
Jul 10, 2006
89
90
*
* Example:
Feb 5, 2008
Feb 5, 2008
91
92
* Uint8 *state = SDL_GetKeyboardState(NULL);
* if ( state[SDL_SCANCODE_RETURN)] ) ... <RETURN> is pressed.
Apr 26, 2001
Apr 26, 2001
93
*/
Feb 5, 2008
Feb 5, 2008
94
extern DECLSPEC Uint8 *SDLCALL SDL_GetKeyboardState(int *numkeys);
Apr 26, 2001
Apr 26, 2001
95
Jul 10, 2006
Jul 10, 2006
96
97
98
99
/**
* \fn SDLMod SDL_GetModState(void)
*
* \brief Get the current key modifier state for the selected keyboard.
Apr 26, 2001
Apr 26, 2001
100
*/
Apr 11, 2002
Apr 11, 2002
101
extern DECLSPEC SDLMod SDLCALL SDL_GetModState(void);
Apr 26, 2001
Apr 26, 2001
102
Jul 10, 2006
Jul 10, 2006
103
104
105
106
107
108
/**
* \fn void SDL_SetModState(SDLMod modstate)
*
* \brief Set the current key modifier state for the selected keyboard.
*
* \note This does not change the keyboard state, only the key modifier flags.
Apr 26, 2001
Apr 26, 2001
109
*/
Apr 11, 2002
Apr 11, 2002
110
extern DECLSPEC void SDLCALL SDL_SetModState(SDLMod modstate);
Apr 26, 2001
Apr 26, 2001
111
Jul 10, 2006
Jul 10, 2006
112
/**
Feb 5, 2008
Feb 5, 2008
113
* \fn SDLKey SDL_GetKeyFromScancode(SDL_scancode scancode)
Aug 19, 2007
Aug 19, 2007
114
*
Feb 5, 2008
Feb 5, 2008
115
* \brief Get the key code corresponding to the given scancode according to the current keyboard layout.
Aug 19, 2007
Aug 19, 2007
116
117
118
119
120
*
* See ::SDLKey for details.
*
* \sa SDL_GetKeyName()
*/
Feb 5, 2008
Feb 5, 2008
121
extern DECLSPEC SDLKey SDLCALL SDL_GetKeyFromScancode(SDL_scancode scancode);
Aug 19, 2007
Aug 19, 2007
122
123
/**
Feb 5, 2008
Feb 5, 2008
124
* \fn SDL_scancode SDL_GetScancodeFromKey(SDLKey key)
Jul 10, 2006
Jul 10, 2006
125
*
Feb 5, 2008
Feb 5, 2008
126
127
128
* \brief Get the scancode corresponding to the given key code according to the current keyboard layout.
*
* See ::SDL_scancode for details.
Aug 19, 2007
Aug 19, 2007
129
*
Feb 5, 2008
Feb 5, 2008
130
131
132
133
134
135
136
137
138
139
* \sa SDL_GetScancodeName()
*/
extern DECLSPEC SDL_scancode SDLCALL SDL_GetScancodeFromKey(SDLKey key);
/**
* \fn const char *SDL_GetScancodeName(SDL_scancode scancode)
*
* \brief Get a human-readable name for a scancode.
*
* \return A pointer to a UTF-8 string that stays valid at least until the next call to this function. If you need it around any longer, you must copy it. If the scancode doesn't have a name, this function returns "".
Aug 19, 2007
Aug 19, 2007
140
*
Feb 5, 2008
Feb 5, 2008
141
142
143
144
145
146
147
148
149
* \sa SDL_scancode
*/
extern DECLSPEC const char *SDLCALL SDL_GetScancodeName(SDL_scancode
scancode);
/**
* \fn const char *SDL_GetKeyName(SDLKey key)
*
* \brief Get a human-readable name for a key.
Aug 19, 2007
Aug 19, 2007
150
*
Feb 5, 2008
Feb 5, 2008
151
* \return A pointer to a UTF-8 string that stays valid at least until the next call to this function. If you need it around any longer, you must copy it. If the key doesn't have a name, this function returns "".
Aug 19, 2007
Aug 19, 2007
152
153
*
* \sa SDLKey
Apr 26, 2001
Apr 26, 2001
154
*/
Feb 5, 2008
Feb 5, 2008
155
extern DECLSPEC const char *SDLCALL SDL_GetKeyName(SDLKey key);
Apr 26, 2001
Apr 26, 2001
156
157
158
159
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
160
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
161
}
Jul 10, 2006
Jul 10, 2006
162
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
163
164
165
166
#endif
#include "close_code.h"
#endif /* _SDL_keyboard_h */
Jul 10, 2006
Jul 10, 2006
167
168
/* vi: set ts=4 sw=4 expandtab: */