# HG changeset patch # User Szymon Wilczek # Date 1215288127 0 # Node ID ed9b7fe8f902614b3abca005b79623434603bfd8 # Parent 2970fcfbdd5445155d25527419a14cadb1b1741f Estethic changes noted on the SDL meeting 05.07.08 diff -r 2970fcfbdd54 -r ed9b7fe8f902 include/SDL_events.h --- a/include/SDL_events.h Thu Jul 03 22:03:58 2008 +0000 +++ b/include/SDL_events.h Sat Jul 05 20:02:07 2008 +0000 @@ -174,7 +174,10 @@ Uint8 state; /**< The current button state */ int x; /**< X coordinate, relative to window */ int y; /**< Y coordinate, relative to window */ - int z; + int z; /**< Z coordinate, for future use*/ + int pressure; /**< Pressure reported by tablets */ + int rotation; /**xdelta += xrel; mouse->ydelta += yrel; - mouse->z=z; + mouse->pressure=z; /* Move the mouse cursor, if needed */ if (mouse->cursor_shown && !mouse->relative_mode && @@ -434,7 +434,7 @@ event.motion.state = mouse->buttonstate; event.motion.x = mouse->x; event.motion.y = mouse->y; - event.motion.z = mouse->z; + event.motion.pressure= mouse->pressure; event.motion.xrel = xrel; event.motion.yrel = yrel; event.motion.windowID = mouse->focus; diff -r 2970fcfbdd54 -r ed9b7fe8f902 src/events/SDL_mouse_c.h --- a/src/events/SDL_mouse_c.h Thu Jul 03 22:03:58 2008 +0000 +++ b/src/events/SDL_mouse_c.h Sat Jul 05 20:02:07 2008 +0000 @@ -61,9 +61,12 @@ int which; int x; int y; - int z; + int z;/*for future use*/ int xdelta; int ydelta; + int pressure; + int tilt;/*for future use*/ + int rotation;/*for future use*/ char* name; Uint8 buttonstate; SDL_bool relative_mode;