MyGL
Loading...
Searching...
No Matches
Event.hpp
Go to the documentation of this file.
1
2#ifndef MYGL_EVENT
3#define MYGL_EVENT
4
5#include "mygl_export.h"
6
7#include <glm/glm.hpp>
8
9namespace my
10{
14 enum class EventType
15 {
24
33
43
52
62
72
82
92
102
107
112
117 unknown
118 };
119
131 enum class Key
132 {
133 unknown = -1,
134 space = 32,
135 apostrophe = 39,
136 comma = 44,
137 minus,
138 period,
139 slash,
140 n0,
141 n1,
142 n2,
143 n3,
144 n4,
145 n5,
146 n6,
147 n7,
148 n8,
149 n9,
150 semicolon = 59,
151 equal = 61,
152 a = 65,
153 b,
154 c,
155 d,
156 e,
157 f,
158 g,
159 h,
160 i,
161 j,
162 k,
163 l,
164 m,
165 n,
166 o,
167 p,
168 q,
169 r,
170 s,
171 t,
172 u,
173 v,
174 w,
175 x,
176 y,
177 z,
178 left_bracket,
179 backslash,
180 right_bracket,
181 grave_accent = 96,
182 non_us1 = 161,
183 non_us2,
184 escape = 256,
185 enter,
186 tab,
187 backspace,
188 insert,
189 del,
190 right,
191 left,
192 down,
193 up,
194 page_up,
195 page_down,
196 home,
197 end,
198 caps_lock = 280,
199 scroll_lock,
200 num_lock,
201 print_screen,
202 pause,
203 f1 = 290,
204 f2,
205 f3,
206 f4,
207 f5,
208 f6,
209 f7,
210 f8,
211 f9,
212 f10,
213 f11,
214 f12,
215 f13,
216 f14,
217 f15,
218 f16,
219 f17,
220 f18,
221 f19,
222 f20,
223 f21,
224 f22,
225 f23,
226 f24,
227 f25,
228 np0 = 320,
229 np1,
230 np2,
231 np3,
232 np4,
233 np5,
234 np6,
235 np7,
236 np8,
237 np9,
238 np_dot,
239 np_divide,
240 np_multiply,
241 np_substract,
242 np_add,
243 np_enter,
244 np_equal,
245 left_shift = 340,
246 left_ctrl,
247 left_alt,
248 left_os,
249 right_shift,
250 right_ctrl,
251 right_alt,
252 right_os,
253 menu
254 };
255
259 enum class MouseButton
260 {
261 left,
262 right,
263 middle,
264 extra_1,
265 extra_2,
266 extra_3,
267 extra_4,
268 extra_5,
269 none
270 };
271
279 struct MouseInfo {
280 MouseButton button;
281 glm::vec2 pos;
282 };
283
295 struct MYGL_EXPORT Event {
299 struct MYGL_EXPORT Modifiers {
300 bool shift = false;
301 bool ctrl = false;
302 bool alt = false;
303 bool os = false;
304 bool caps_lock = false;
305 bool num_lock = false;
306
307 Modifiers() = default;
308 };
309
314
315 union {
331 glm::ivec2 scrollOffset;
337 glm::ivec2 windowSize;
338 };
339
348
349 Event() noexcept;
350 };
351
352} // namespace my
353
354#endif // MYGL_EVENT
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10
EventType
Types that an event can have.
Definition Event.hpp:15
@ mouseMoved
Event triggered when the mouse cursor moves inside the window.
@ keyRepeated
Event triggered when a key is held down.
@ mouseButtonPressed
Event triggered when a mouse button is pressed.
@ cursorLeft
Event triggered when the cursor leaves the window's content area.
@ windowResized
Event triggered when the window is resized.
@ keyReleased
Event triggered when a key is released.
@ keyPressed
Event triggered when a key is pressed.
@ unknown
Special value used to signal that an event variable is not associated to any event.
@ windowShouldClose
Event triggered when the user tries to close the window.
@ mouseButtonReleased
Event triggered when a mouse button is released.
@ mouseScrolled
Event triggered when scrolling (mouse wheel movement or touchpad gesture)
@ cursorEntered
Event triggered when the cursor enters the window's content area.
Key
Key codes for every key of a fullsize US qwerty layout.
Definition Event.hpp:132
MouseButton
Codes for mouse buttons (used in mouseButtonPressed / Released events)
Definition Event.hpp:260
A struct for storing the state of the keyboard modifier keys.
Definition Event.hpp:299
Struct for representing events and informations associated with them.
Definition Event.hpp:295
Key keyCode
The key code associated with a keyPressed, keyReleased or keyRepeated event.
Definition Event.hpp:320
EventType type
The event's type.
Definition Event.hpp:313
glm::ivec2 scrollOffset
The scroll wheel offset in a mouseScrolled event.
Definition Event.hpp:331
MouseInfo mouse
The mouse informations associated with mouse events.
Definition Event.hpp:324
Modifiers mods
A variable storing the state of the modifier keys.
Definition Event.hpp:347
glm::ivec2 windowSize
The new size of a window which have been resized.
Definition Event.hpp:337
Mouse informations for events involving mouse buttons.
Definition Event.hpp:279