Mercurial > sdl-ios-xcode
comparison include/SDL_events.h @ 3765:ed9b7fe8f902 gsoc2008_manymouse
Estethic changes noted on the SDL meeting 05.07.08
author | Szymon Wilczek <kazeuser@gmail.com> |
---|---|
date | Sat, 05 Jul 2008 20:02:07 +0000 |
parents | 81ea7d9a6624 |
children | 24db5d326f57 |
comparison
equal
deleted
inserted
replaced
3764:2970fcfbdd54 | 3765:ed9b7fe8f902 |
---|---|
172 Uint8 type; /**< SDL_MOUSEMOTION */ | 172 Uint8 type; /**< SDL_MOUSEMOTION */ |
173 Uint8 which; /**< The mouse device index */ | 173 Uint8 which; /**< The mouse device index */ |
174 Uint8 state; /**< The current button state */ | 174 Uint8 state; /**< The current button state */ |
175 int x; /**< X coordinate, relative to window */ | 175 int x; /**< X coordinate, relative to window */ |
176 int y; /**< Y coordinate, relative to window */ | 176 int y; /**< Y coordinate, relative to window */ |
177 int z; | 177 int z; /**< Z coordinate, for future use*/ |
178 int pressure; /**< Pressure reported by tablets */ | |
179 int rotation; /**<For future use */ | |
180 int tilt; /**<For future use */ | |
178 int xrel; /**< The relative motion in the X direction */ | 181 int xrel; /**< The relative motion in the X direction */ |
179 int yrel; /**< The relative motion in the Y direction */ | 182 int yrel; /**< The relative motion in the Y direction */ |
180 SDL_WindowID windowID; /**< The window with mouse focus, if any */ | 183 SDL_WindowID windowID; /**< The window with mouse focus, if any */ |
181 } SDL_MouseMotionEvent; | 184 } SDL_MouseMotionEvent; |
182 | 185 |