5#include "mygl_export.h"
304 bool caps_lock =
false;
305 bool num_lock =
false;
Namespace containing every class, function and enum of the library.
EventType
Types that an event can have.
@ 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.
MouseButton
Codes for mouse buttons (used in mouseButtonPressed / Released events)
A struct for storing the state of the keyboard modifier keys.
Struct for representing events and informations associated with them.
Key keyCode
The key code associated with a keyPressed, keyReleased or keyRepeated event.
EventType type
The event's type.
glm::ivec2 scrollOffset
The scroll wheel offset in a mouseScrolled event.
MouseInfo mouse
The mouse informations associated with mouse events.
Modifiers mods
A variable storing the state of the modifier keys.
glm::ivec2 windowSize
The new size of a window which have been resized.
Mouse informations for events involving mouse buttons.