summaryrefslogtreecommitdiff
path: root/include/SFML/Window/Event.hpp
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@gmx.de>2008-11-01 17:37:58 +0100
committerChristoph Egger <Christoph.Egger@gmx.de>2008-11-01 17:37:58 +0100
commit9035708f4c5f7a78d8fb810e87e183fd61fd3350 (patch)
tree030e13b45c9882b799f793aa27007c74862fe934 /include/SFML/Window/Event.hpp
parenta96b4da2ed67a3e8dcc8e2a0d9af9463a23bb021 (diff)
Imported Upstream version 1.4~svn915
Diffstat (limited to 'include/SFML/Window/Event.hpp')
-rw-r--r--[-rwxr-xr-x]include/SFML/Window/Event.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/SFML/Window/Event.hpp b/include/SFML/Window/Event.hpp
index 2f03830..dd9814e 100755..100644
--- a/include/SFML/Window/Event.hpp
+++ b/include/SFML/Window/Event.hpp
@@ -208,7 +208,7 @@ public :
////////////////////////////////////////////////////////////
struct TextEvent
{
- Uint16 Unicode;
+ Uint32 Unicode;
};
////////////////////////////////////////////////////////////
@@ -216,8 +216,8 @@ public :
////////////////////////////////////////////////////////////
struct MouseMoveEvent
{
- unsigned int X;
- unsigned int Y;
+ int X;
+ int Y;
};
////////////////////////////////////////////////////////////
@@ -226,6 +226,8 @@ public :
struct MouseButtonEvent
{
Mouse::Button Button;
+ int X;
+ int Y;
};
////////////////////////////////////////////////////////////
@@ -280,6 +282,8 @@ public :
MouseButtonPressed,
MouseButtonReleased,
MouseMoved,
+ MouseEntered,
+ MouseLeft,
JoyButtonPressed,
JoyButtonReleased,
JoyMoved