TGUI 1.8
Loading...
Searching...
No Matches
Event.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2025 Bruno Van de Velde (vdv_b@tgui.eu)
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 TGUI_EVENT_HPP
26#define TGUI_EVENT_HPP
27
28#include <TGUI/Config.hpp>
29
31
32TGUI_MODULE_EXPORT namespace tgui
33{
35
36 // Based on sf::Event from SFML
37 struct Event
38 {
39 // Based on sf::KeyBoard::Key from SFML
146
148 enum class MouseButton
149 {
153 };
154
156 enum class KeyModifier
157 {
158 System,
159 Control,
160 Shift,
161 Alt
162 };
163
167 struct KeyEvent
168 {
170 bool alt;
171 bool control;
172 bool shift;
173 bool system;
174 };
175
180 {
181 char32_t unicode;
182 };
183
188 {
189 int x;
190 int y;
191 };
192
197 {
199 int x;
200 int y;
201 };
202
207 {
208 float delta;
209 int x;
210 int y;
211 };
212
217 {
218 unsigned int width;
219 unsigned int height;
220 };
221
240
242
244
245 union
246 {
253 };
254 };
255
257}
258
260
261#endif // TGUI_EVENT_HPP
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
KeyPressed event parameters.
Definition Event.hpp:168
KeyboardKey code
Code of the key that has been pressed.
Definition Event.hpp:169
bool system
Is the System key pressed?
Definition Event.hpp:173
bool control
Is the Control key pressed?
Definition Event.hpp:171
bool alt
Is the Alt key pressed?
Definition Event.hpp:170
bool shift
Is the Shift key pressed?
Definition Event.hpp:172
MouseButtonPressed/MouseButtonReleased events parameters.
Definition Event.hpp:197
MouseButton button
Code of the button that has been pressed.
Definition Event.hpp:198
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition Event.hpp:199
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition Event.hpp:200
MouseMoved event parameters.
Definition Event.hpp:188
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition Event.hpp:190
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition Event.hpp:189
MouseWheelScrolled events parameters.
Definition Event.hpp:207
int x
X position of the mouse pointer, relative to the left of the owner window.
Definition Event.hpp:209
int y
Y position of the mouse pointer, relative to the top of the owner window.
Definition Event.hpp:210
float delta
Wheel offset (positive is up, negative is down). High-precision mice may use non-integral offsets.
Definition Event.hpp:208
Resized events parameters.
Definition Event.hpp:217
unsigned int width
New width, in pixels.
Definition Event.hpp:218
unsigned int height
New height, in pixels.
Definition Event.hpp:219
TextEntered event parameters.
Definition Event.hpp:180
char32_t unicode
UTF-32 Unicode value of the character.
Definition Event.hpp:181
Definition Event.hpp:38
Type type
Type of the event.
Definition Event.hpp:243
MouseButton
Mouse buttons.
Definition Event.hpp:149
@ Middle
The middle (wheel) mouse button.
Definition Event.hpp:152
KeyModifier
Modifiers keys.
Definition Event.hpp:157
MouseWheelEvent mouseWheel
Mouse wheel event parameters (Event::MouseWheelScrolled)
Definition Event.hpp:251
KeyboardKey
Keyboard key codes.
Definition Event.hpp:42
@ Escape
The Escape key.
Definition Event.hpp:80
@ X
The X key.
Definition Event.hpp:67
@ Num6
The 6 key.
Definition Event.hpp:76
@ RAlt
The right Alt key.
Definition Event.hpp:87
@ Down
Down arrow.
Definition Event.hpp:118
@ Divide
The / key.
Definition Event.hpp:114
@ C
The C key.
Definition Event.hpp:46
@ Pause
The Pause key.
Definition Event.hpp:144
@ Numpad9
The numpad 9 key.
Definition Event.hpp:128
@ LBracket
The [ key.
Definition Event.hpp:90
@ Period
The . key.
Definition Event.hpp:94
@ Numpad0
The numpad 0 key.
Definition Event.hpp:119
@ Subtract
The - key (minus from numpad)
Definition Event.hpp:112
@ F6
The F6 key.
Definition Event.hpp:134
@ Z
The Z key.
Definition Event.hpp:69
@ F14
The F14 key.
Definition Event.hpp:142
@ Up
Up arrow.
Definition Event.hpp:117
@ RSystem
The right OS specific key (windows key / super key / command key)
Definition Event.hpp:88
@ Slash
The / key.
Definition Event.hpp:96
@ F5
The F5 key.
Definition Event.hpp:133
@ E
The E key.
Definition Event.hpp:48
@ Numpad7
The numpad 7 key.
Definition Event.hpp:126
@ P
The P key.
Definition Event.hpp:59
@ Minus
The - key (hyphen)
Definition Event.hpp:100
@ F7
The F7 key.
Definition Event.hpp:135
@ F8
The F8 key.
Definition Event.hpp:136
@ Num7
The 7 key.
Definition Event.hpp:77
@ F3
The F3 key.
Definition Event.hpp:131
@ U
The U key.
Definition Event.hpp:64
@ Numpad6
The numpad 6 key.
Definition Event.hpp:125
@ Numpad4
The numpad 4 key.
Definition Event.hpp:123
@ V
The V key.
Definition Event.hpp:65
@ Y
The Y key.
Definition Event.hpp:68
@ Comma
The , key.
Definition Event.hpp:93
@ Tab
The Tabulation key.
Definition Event.hpp:104
@ S
The S key.
Definition Event.hpp:62
@ Numpad3
The numpad 3 key.
Definition Event.hpp:122
@ W
The W key.
Definition Event.hpp:66
@ Numpad5
The numpad 5 key.
Definition Event.hpp:124
@ F11
The F11 key.
Definition Event.hpp:139
@ LShift
The left Shift key.
Definition Event.hpp:82
@ M
The M key.
Definition Event.hpp:56
@ Num2
The 2 key.
Definition Event.hpp:72
@ Tilde
The ~ key.
Definition Event.hpp:98
@ Num5
The 5 key.
Definition Event.hpp:75
@ A
The A key.
Definition Event.hpp:44
@ F
The F key.
Definition Event.hpp:49
@ Num0
The 0 key.
Definition Event.hpp:70
@ End
The End key.
Definition Event.hpp:107
@ Unknown
Unhandled key.
Definition Event.hpp:43
@ F9
The F9 key.
Definition Event.hpp:137
@ Num8
The 8 key.
Definition Event.hpp:78
@ Numpad8
The numpad 8 key.
Definition Event.hpp:127
@ Home
The Home key.
Definition Event.hpp:108
@ N
The N key.
Definition Event.hpp:57
@ RShift
The right Shift key.
Definition Event.hpp:86
@ Right
Right arrow.
Definition Event.hpp:116
@ Left
Left arrow.
Definition Event.hpp:115
@ F13
The F13 key.
Definition Event.hpp:141
@ Semicolon
The ; key.
Definition Event.hpp:92
@ PageUp
The Page up key.
Definition Event.hpp:105
@ B
The B key.
Definition Event.hpp:45
@ LControl
The left Control key.
Definition Event.hpp:81
@ Num3
The 3 key.
Definition Event.hpp:73
@ Insert
The Insert key.
Definition Event.hpp:109
@ K
The K key.
Definition Event.hpp:54
@ LAlt
The left Alt key.
Definition Event.hpp:83
@ RControl
The right Control key.
Definition Event.hpp:85
@ F10
The F10 key.
Definition Event.hpp:138
@ Menu
The Menu key.
Definition Event.hpp:89
@ T
The T key.
Definition Event.hpp:63
@ Num1
The 1 key.
Definition Event.hpp:71
@ H
The H key.
Definition Event.hpp:51
@ RBracket
The ] key.
Definition Event.hpp:91
@ Quote
The ' key.
Definition Event.hpp:95
@ Numpad1
The numpad 1 key.
Definition Event.hpp:120
@ Backspace
The Backspace key.
Definition Event.hpp:103
@ L
The L key.
Definition Event.hpp:55
@ Space
The Space key.
Definition Event.hpp:101
@ Num9
The 9 key.
Definition Event.hpp:79
@ I
The I key.
Definition Event.hpp:52
@ G
The G key.
Definition Event.hpp:50
@ Num4
The 4 key.
Definition Event.hpp:74
@ F1
The F1 key.
Definition Event.hpp:129
@ R
The R key.
Definition Event.hpp:61
@ Multiply
The * key.
Definition Event.hpp:113
@ F15
The F15 key.
Definition Event.hpp:143
@ F4
The F4 key.
Definition Event.hpp:132
@ F12
The F12 key.
Definition Event.hpp:140
@ Add
The + key.
Definition Event.hpp:111
@ PageDown
The Page down key.
Definition Event.hpp:106
@ Q
The Q key.
Definition Event.hpp:60
@ Enter
The Enter/Return keys.
Definition Event.hpp:102
@ O
The O key.
Definition Event.hpp:58
@ Delete
The Delete key.
Definition Event.hpp:110
@ Equal
The = key.
Definition Event.hpp:99
@ D
The D key.
Definition Event.hpp:47
@ Backslash
The \ key.
Definition Event.hpp:97
@ Numpad2
The numpad 2 key.
Definition Event.hpp:121
@ LSystem
The left OS specific key (windows key / super key / command key)
Definition Event.hpp:84
@ F2
The F2 key.
Definition Event.hpp:130
@ J
The J key.
Definition Event.hpp:53
MouseMoveEvent mouseMove
Mouse move event parameters (Event::MouseMoved)
Definition Event.hpp:249
MouseButtonEvent mouseButton
Mouse button event parameters (Event::MouseButtonPressed, Event::MouseButtonReleased)
Definition Event.hpp:250
TextEvent text
Text event parameters (Event::TextEntered)
Definition Event.hpp:248
Type
Enumeration of the different types of events.
Definition Event.hpp:226
@ Closed
The window was closed (no data)
Definition Event.hpp:238
@ MouseEntered
The mouse cursor entered the content area of the window (no data)
Definition Event.hpp:235
@ Resized
The window was resized (data in event.size)
Definition Event.hpp:237
@ GainedFocus
The window gained the focus (no data)
Definition Event.hpp:228
@ MouseButtonPressed
A mouse button was pressed (data in event.mouseButton)
Definition Event.hpp:232
@ MouseButtonReleased
A mouse button was released (data in event.mouseButton)
Definition Event.hpp:233
@ LostFocus
The window lost the focus (no data)
Definition Event.hpp:227
@ TextEntered
A character was entered (data in event.text)
Definition Event.hpp:229
@ MouseWheelScrolled
The mouse wheel was scrolled (data in event.mouseWheel)
Definition Event.hpp:231
@ MouseLeft
The mouse cursor left the content area of the window (no data)
Definition Event.hpp:236
@ KeyPressed
A key was pressed (data in event.key)
Definition Event.hpp:230
@ MouseMoved
The mouse cursor moved (data in event.mouseMove)
Definition Event.hpp:234
KeyEvent key
Key event parameters (Event::KeyPressed)
Definition Event.hpp:247
SizeEvent size
Size event parameters (Event::Resized)
Definition Event.hpp:252