CSFML
Main Page
Data Structures
Files
File List
Globals
include
SFML
Window
Keyboard.h
Go to the documentation of this file.
1
2
//
3
// SFML - Simple and Fast Multimedia Library
4
// Copyright (C) 2007-2013 Laurent Gomila (laurent.gom@gmail.com)//
5
// This software is provided 'as-is', without any express or implied warranty.
6
// In no event will the authors be held liable for any damages arising from the use of this software.
7
//
8
// Permission is granted to anyone to use this software for any purpose,
9
// including commercial applications, and to alter it and redistribute it freely,
10
// subject to the following restrictions:
11
//
12
// 1. The origin of this software must not be misrepresented;
13
// you must not claim that you wrote the original software.
14
// If you use this software in a product, an acknowledgment
15
// in the product documentation would be appreciated but is not required.
16
//
17
// 2. Altered source versions must be plainly marked as such,
18
// and must not be misrepresented as being the original software.
19
//
20
// 3. This notice may not be removed or altered from any source distribution.
21
//
23
24
#ifndef SFML_KEYBOARD_H
25
#define SFML_KEYBOARD_H
26
28
// Headers
30
#include <
SFML/Window/Export.h
>
31
32
37
typedef
enum
38
{
39
sfKeyUnknown
= -1,
40
sfKeyA
,
41
sfKeyB
,
42
sfKeyC
,
43
sfKeyD
,
44
sfKeyE
,
45
sfKeyF
,
46
sfKeyG
,
47
sfKeyH
,
48
sfKeyI
,
49
sfKeyJ
,
50
sfKeyK
,
51
sfKeyL
,
52
sfKeyM
,
53
sfKeyN
,
54
sfKeyO
,
55
sfKeyP
,
56
sfKeyQ
,
57
sfKeyR
,
58
sfKeyS
,
59
sfKeyT
,
60
sfKeyU
,
61
sfKeyV
,
62
sfKeyW
,
63
sfKeyX
,
64
sfKeyY
,
65
sfKeyZ
,
66
sfKeyNum0
,
67
sfKeyNum1
,
68
sfKeyNum2
,
69
sfKeyNum3
,
70
sfKeyNum4
,
71
sfKeyNum5
,
72
sfKeyNum6
,
73
sfKeyNum7
,
74
sfKeyNum8
,
75
sfKeyNum9
,
76
sfKeyEscape
,
77
sfKeyLControl
,
78
sfKeyLShift
,
79
sfKeyLAlt
,
80
sfKeyLSystem
,
81
sfKeyRControl
,
82
sfKeyRShift
,
83
sfKeyRAlt
,
84
sfKeyRSystem
,
85
sfKeyMenu
,
86
sfKeyLBracket
,
87
sfKeyRBracket
,
88
sfKeySemiColon
,
89
sfKeyComma
,
90
sfKeyPeriod
,
91
sfKeyQuote
,
92
sfKeySlash
,
93
sfKeyBackSlash
,
94
sfKeyTilde
,
95
sfKeyEqual
,
96
sfKeyDash
,
97
sfKeySpace
,
98
sfKeyReturn
,
99
sfKeyBack
,
100
sfKeyTab
,
101
sfKeyPageUp
,
102
sfKeyPageDown
,
103
sfKeyEnd
,
104
sfKeyHome
,
105
sfKeyInsert
,
106
sfKeyDelete
,
107
sfKeyAdd
,
108
sfKeySubtract
,
109
sfKeyMultiply
,
110
sfKeyDivide
,
111
sfKeyLeft
,
112
sfKeyRight
,
113
sfKeyUp
,
114
sfKeyDown
,
115
sfKeyNumpad0
,
116
sfKeyNumpad1
,
117
sfKeyNumpad2
,
118
sfKeyNumpad3
,
119
sfKeyNumpad4
,
120
sfKeyNumpad5
,
121
sfKeyNumpad6
,
122
sfKeyNumpad7
,
123
sfKeyNumpad8
,
124
sfKeyNumpad9
,
125
sfKeyF1
,
126
sfKeyF2
,
127
sfKeyF3
,
128
sfKeyF4
,
129
sfKeyF5
,
130
sfKeyF6
,
131
sfKeyF7
,
132
sfKeyF8
,
133
sfKeyF9
,
134
sfKeyF10
,
135
sfKeyF11
,
136
sfKeyF12
,
137
sfKeyF13
,
138
sfKeyF14
,
139
sfKeyF15
,
140
sfKeyPause
,
141
142
sfKeyCount
143
}
sfKeyCode
;
144
145
154
CSFML_WINDOW_API
sfBool
sfKeyboard_isKeyPressed
(
sfKeyCode
key);
155
156
157
#endif // SFML_KEYBOARD_H