El Octavio  1.0
This is a video game about adventures.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Event.hpp
Go to the documentation of this file.
1
2//
3// SFML - Simple and Fast Multimedia Library
4// Copyright (C) 2007-2018 Laurent Gomila (laurent@sfml-dev.org)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef SFML_EVENT_HPP
26#define SFML_EVENT_HPP
27
29// Headers
31#include <SFML/Config.hpp>
34#include <SFML/Window/Mouse.hpp>
36
37
38namespace sf
39{
44class Event
45{
46public:
47
52 struct SizeEvent
53 {
54 unsigned int width;
55 unsigned int height;
56 };
57
62 struct KeyEvent
63 {
65 bool alt;
66 bool control;
67 bool shift;
68 bool system;
69 };
70
75 struct TextEvent
76 {
78 };
79
85 {
86 int x;
87 int y;
88 };
89
96 {
98 int x;
99 int y;
100 };
101
110 {
111 int delta;
112 int x;
113 int y;
114 };
115
121 {
123 float delta;
124 int x;
125 int y;
126 };
127
134 {
135 unsigned int joystickId;
136 };
137
143 {
144 unsigned int joystickId;
146 float position;
147 };
148
155 {
156 unsigned int joystickId;
157 unsigned int button;
158 };
159
165 {
166 unsigned int finger;
167 int x;
168 int y;
169 };
170
176 {
178 float x;
179 float y;
180 float z;
181 };
182
188 {
212
213 Count
214 };
215
217 // Member data
220
221 union
222 {
235 };
236};
237
238} // namespace sf
239
240
241#endif // SFML_EVENT_HPP
242
243
Defines a system event and its parameters.
Definition: Event.hpp:45
TextEvent text
Text event parameters (Event::TextEntered)
Definition: Event.hpp:225
MouseButtonEvent mouseButton
Mouse button event parameters (Event::MouseButtonPressed, Event::MouseButtonReleased)
Definition: Event.hpp:227
JoystickButtonEvent joystickButton
Joystick button event parameters (Event::JoystickButtonPressed, Event::JoystickButtonReleased)
Definition: Event.hpp:231
KeyEvent key
Key event parameters (Event::KeyPressed, Event::KeyReleased)
Definition: Event.hpp:224
TouchEvent touch
Touch events parameters (Event::TouchBegan, Event::TouchMoved, Event::TouchEnded)
Definition: Event.hpp:233
MouseWheelScrollEvent mouseWheelScroll
Mouse wheel event parameters (Event::MouseWheelScrolled)
Definition: Event.hpp:229
MouseMoveEvent mouseMove
Mouse move event parameters (Event::MouseMoved)
Definition: Event.hpp:226
SizeEvent size
Size event parameters (Event::Resized)
Definition: Event.hpp:223
MouseWheelEvent mouseWheel
Mouse wheel event parameters (Event::MouseWheelMoved) (deprecated)
Definition: Event.hpp:228
JoystickConnectEvent joystickConnect
Joystick (dis)connect event parameters (Event::JoystickConnected, Event::JoystickDisconnected)
Definition: Event.hpp:232
JoystickMoveEvent joystickMove
Joystick move event parameters (Event::JoystickMoved)
Definition: Event.hpp:230
SensorEvent sensor
Sensor event parameters (Event::SensorChanged)
Definition: Event.hpp:234
EventType type
Type of the event.
Definition: Event.hpp:219
EventType
Enumeration of the different types of events.
Definition: Event.hpp:188
@ JoystickButtonReleased
A joystick button was released (data in event.joystickButton)
Definition: Event.hpp:204
@ MouseWheelScrolled
The mouse wheel was scrolled (data in event.mouseWheelScroll)
Definition: Event.hpp:197
@ Closed
The window requested to be closed (no data)
Definition: Event.hpp:189
@ JoystickMoved
The joystick moved along an axis (data in event.joystickMove)
Definition: Event.hpp:205
@ MouseMoved
The mouse cursor moved (data in event.mouseMove)
Definition: Event.hpp:200
@ MouseEntered
The mouse cursor entered the area of the window (no data)
Definition: Event.hpp:201
@ MouseButtonPressed
A mouse button was pressed (data in event.mouseButton)
Definition: Event.hpp:198
@ MouseWheelMoved
The mouse wheel was scrolled (data in event.mouseWheel) (deprecated)
Definition: Event.hpp:196
@ Resized
The window was resized (data in event.size)
Definition: Event.hpp:190
@ JoystickButtonPressed
A joystick button was pressed (data in event.joystickButton)
Definition: Event.hpp:203
@ TextEntered
A character was entered (data in event.text)
Definition: Event.hpp:193
@ GainedFocus
The window gained the focus (no data)
Definition: Event.hpp:192
@ TouchMoved
A touch moved (data in event.touch)
Definition: Event.hpp:209
@ MouseButtonReleased
A mouse button was released (data in event.mouseButton)
Definition: Event.hpp:199
@ KeyReleased
A key was released (data in event.key)
Definition: Event.hpp:195
@ MouseLeft
The mouse cursor left the area of the window (no data)
Definition: Event.hpp:202
@ JoystickConnected
A joystick was connected (data in event.joystickConnect)
Definition: Event.hpp:206
@ SensorChanged
A sensor value changed (data in event.sensor)
Definition: Event.hpp:211
@ JoystickDisconnected
A joystick was disconnected (data in event.joystickConnect)
Definition: Event.hpp:207
@ TouchEnded
A touch event ended (data in event.touch)
Definition: Event.hpp:210
@ LostFocus
The window lost the focus (no data)
Definition: Event.hpp:191
@ KeyPressed
A key was pressed (data in event.key)
Definition: Event.hpp:194
@ Count
Keep last – the total number of event types.
Definition: Event.hpp:213
@ TouchBegan
A touch event began (data in event.touch)
Definition: Event.hpp:208
Axis
Axes supported by SFML joysticks.
Definition: Joystick.hpp:61
Key
Key codes.
Definition: Keyboard.hpp:49
Button
Mouse buttons.
Definition: Mouse.hpp:52
Wheel
Mouse wheels.
Definition: Mouse.hpp:67
Type
Sensor type.
Definition: Sensor.hpp:51
unsigned int Uint32
Definition: Config.hpp:222
Joystick buttons events parameters (JoystickButtonPressed, JoystickButtonReleased)
Definition: Event.hpp:155
unsigned int joystickId
Index of the joystick (in range [0 .. Joystick::Count - 1])
Definition: Event.hpp:156
unsigned int button
Index of the button that has been pressed (in range [0 .. Joystick::ButtonCount - 1])
Definition: Event.hpp:157
Joystick connection events parameters (JoystickConnected, JoystickDisconnected)
Definition: Event.hpp:134
unsigned int joystickId
Index of the joystick (in range [0 .. Joystick::Count - 1])
Definition: Event.hpp:135
Joystick axis move event parameters (JoystickMoved)
Definition: Event.hpp:143
unsigned int joystickId
Index of the joystick (in range [0 .. Joystick::Count - 1])
Definition: Event.hpp:144
float position
New position on the axis (in range [-100 .. 100])
Definition: Event.hpp:146
Joystick::Axis axis
Axis on which the joystick moved.
Definition: Event.hpp:145
Keyboard event parameters (KeyPressed, KeyReleased)
Definition: Event.hpp:63
Keyboard::Key code
Code of the key that has been pressed.
Definition: Event.hpp:64
bool shift
Is the Shift key pressed?
Definition: Event.hpp:67
bool alt
Is the Alt key pressed?
Definition: Event.hpp:65
bool control
Is the Control key pressed?
Definition: Event.hpp:66
bool system
Is the System key pressed?
Definition: Event.hpp:68
Mouse buttons events parameters (MouseButtonPressed, MouseButtonReleased)
Definition: Event.hpp:96
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition: Event.hpp:98
Mouse::Button button
Code of the button that has been pressed.
Definition: Event.hpp:97
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition: Event.hpp:99
Mouse move event parameters (MouseMoved)
Definition: Event.hpp:85
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition: Event.hpp:87
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition: Event.hpp:86
Mouse wheel events parameters (MouseWheelMoved)
Definition: Event.hpp:110
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition: Event.hpp:112
int delta
Number of ticks the wheel has moved (positive is up, negative is down)
Definition: Event.hpp:111
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition: Event.hpp:113
Mouse wheel events parameters (MouseWheelScrolled)
Definition: Event.hpp:121
Mouse::Wheel wheel
Which wheel (for mice with multiple ones)
Definition: Event.hpp:122
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition: Event.hpp:124
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition: Event.hpp:125
float delta
Wheel offset (positive is up/left, negative is down/right). High-precision mice may use non-integral ...
Definition: Event.hpp:123
Sensor event parameters (SensorChanged)
Definition: Event.hpp:176
float z
Current value of the sensor on Z axis.
Definition: Event.hpp:180
float x
Current value of the sensor on X axis.
Definition: Event.hpp:178
Sensor::Type type
Type of the sensor.
Definition: Event.hpp:177
float y
Current value of the sensor on Y axis.
Definition: Event.hpp:179
Size events parameters (Resized)
Definition: Event.hpp:53
unsigned int width
New width, in pixels.
Definition: Event.hpp:54
unsigned int height
New height, in pixels.
Definition: Event.hpp:55
Text event parameters (TextEntered)
Definition: Event.hpp:76
Uint32 unicode
UTF-32 Unicode value of the character.
Definition: Event.hpp:77
Touch events parameters (TouchBegan, TouchMoved, TouchEnded)
Definition: Event.hpp:165
int x
X position of the touch, relative to the left of the owner window.
Definition: Event.hpp:167
unsigned int finger
Index of the finger in case of multi-touch events.
Definition: Event.hpp:166
int y
Y position of the touch, relative to the top of the owner window.
Definition: Event.hpp:168