2006-07-10 21:04:37 +00:00
|
|
|
/*
|
2011-04-08 13:03:26 -07:00
|
|
|
Simple DirectMedia Layer
|
2016-01-02 10:10:34 -08:00
|
|
|
Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
|
2011-04-08 13:03:26 -07:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
2006-07-10 21:04:37 +00:00
|
|
|
*/
|
2013-11-24 23:56:17 -05:00
|
|
|
#include "../SDL_internal.h"
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2016-11-20 21:34:54 -08:00
|
|
|
#ifndef SDL_mouse_c_h_
|
|
|
|
#define SDL_mouse_c_h_
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2011-02-21 10:50:53 -08:00
|
|
|
#include "SDL_mouse.h"
|
|
|
|
|
2013-03-02 20:44:16 -08:00
|
|
|
typedef Uint32 SDL_MouseID;
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
struct SDL_Cursor
|
|
|
|
{
|
2011-01-13 18:31:15 -08:00
|
|
|
struct SDL_Cursor *next;
|
2006-07-10 21:04:37 +00:00
|
|
|
void *driverdata;
|
|
|
|
};
|
|
|
|
|
2013-12-23 12:17:52 -08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int last_x, last_y;
|
|
|
|
Uint32 last_timestamp;
|
|
|
|
Uint8 click_count;
|
|
|
|
} SDL_MouseClickState;
|
|
|
|
|
2011-02-21 10:50:53 -08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* Create a cursor from a surface */
|
|
|
|
SDL_Cursor *(*CreateCursor) (SDL_Surface * surface, int hot_x, int hot_y);
|
|
|
|
|
2012-11-19 15:11:10 -08:00
|
|
|
/* Create a system cursor */
|
2013-05-18 14:17:52 -07:00
|
|
|
SDL_Cursor *(*CreateSystemCursor) (SDL_SystemCursor id);
|
2012-11-19 15:11:10 -08:00
|
|
|
|
2011-02-21 10:50:53 -08:00
|
|
|
/* Show the specified cursor, or hide if cursor is NULL */
|
|
|
|
int (*ShowCursor) (SDL_Cursor * cursor);
|
|
|
|
|
|
|
|
/* This is called when a mouse motion event occurs */
|
|
|
|
void (*MoveCursor) (SDL_Cursor * cursor);
|
|
|
|
|
|
|
|
/* Free a window manager cursor */
|
|
|
|
void (*FreeCursor) (SDL_Cursor * cursor);
|
|
|
|
|
2014-06-04 10:55:26 -07:00
|
|
|
/* Warp the mouse to (x,y) within a window */
|
2011-02-21 10:50:53 -08:00
|
|
|
void (*WarpMouse) (SDL_Window * window, int x, int y);
|
|
|
|
|
2014-06-04 10:55:26 -07:00
|
|
|
/* Warp the mouse to (x,y) in screen space */
|
2015-07-17 21:03:58 -04:00
|
|
|
int (*WarpMouseGlobal) (int x, int y);
|
2014-06-04 10:55:26 -07:00
|
|
|
|
2011-02-27 22:06:46 -08:00
|
|
|
/* Set relative mode */
|
|
|
|
int (*SetRelativeMouseMode) (SDL_bool enabled);
|
|
|
|
|
2014-05-24 01:30:37 -04:00
|
|
|
/* Set mouse capture */
|
|
|
|
int (*CaptureMouse) (SDL_Window * window);
|
|
|
|
|
2014-06-05 00:03:33 -04:00
|
|
|
/* Get absolute mouse coordinates. (x) and (y) are never NULL and set to zero before call. */
|
2014-06-25 16:16:55 -04:00
|
|
|
Uint32 (*GetGlobalMouseState) (int *x, int *y);
|
2014-06-05 00:03:33 -04:00
|
|
|
|
2011-02-21 10:50:53 -08:00
|
|
|
/* Data common to all mice */
|
2013-03-02 20:44:16 -08:00
|
|
|
SDL_MouseID mouseID;
|
2011-02-21 10:50:53 -08:00
|
|
|
SDL_Window *focus;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int xdelta;
|
|
|
|
int ydelta;
|
|
|
|
int last_x, last_y; /* the last reported x and y coordinates */
|
2012-11-12 12:14:44 -08:00
|
|
|
Uint32 buttonstate;
|
2011-02-21 10:50:53 -08:00
|
|
|
SDL_bool relative_mode;
|
2013-12-23 17:37:22 -08:00
|
|
|
SDL_bool relative_mode_warp;
|
2011-02-21 10:50:53 -08:00
|
|
|
|
2013-12-23 12:17:52 -08:00
|
|
|
/* Data for double-click tracking */
|
|
|
|
int num_clickstates;
|
|
|
|
SDL_MouseClickState *clickstate;
|
|
|
|
|
2011-02-21 10:50:53 -08:00
|
|
|
SDL_Cursor *cursors;
|
|
|
|
SDL_Cursor *def_cursor;
|
|
|
|
SDL_Cursor *cur_cursor;
|
|
|
|
SDL_bool cursor_shown;
|
2013-04-25 18:40:29 -07:00
|
|
|
|
|
|
|
/* Driver-dependent data. */
|
|
|
|
void *driverdata;
|
2011-02-21 10:50:53 -08:00
|
|
|
} SDL_Mouse;
|
|
|
|
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Initialize the mouse subsystem */
|
|
|
|
extern int SDL_MouseInit(void);
|
|
|
|
|
2011-02-21 10:50:53 -08:00
|
|
|
/* Get the mouse state structure */
|
|
|
|
SDL_Mouse *SDL_GetMouse(void);
|
|
|
|
|
2013-12-23 12:17:52 -08:00
|
|
|
/* Set the default double-click interval */
|
|
|
|
extern void SDL_SetDoubleClickTime(Uint32 interval);
|
|
|
|
|
2011-02-27 21:36:23 -08:00
|
|
|
/* Set the default mouse cursor */
|
|
|
|
extern void SDL_SetDefaultCursor(SDL_Cursor * cursor);
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Set the mouse focus window */
|
2010-05-09 20:47:22 -07:00
|
|
|
extern void SDL_SetMouseFocus(SDL_Window * window);
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2010-05-09 20:47:22 -07:00
|
|
|
/* Send a mouse motion event */
|
2013-03-02 20:44:16 -08:00
|
|
|
extern int SDL_SendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relative, int x, int y);
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2010-05-09 20:47:22 -07:00
|
|
|
/* Send a mouse button event */
|
2013-03-02 20:44:16 -08:00
|
|
|
extern int SDL_SendMouseButton(SDL_Window * window, SDL_MouseID mouseID, Uint8 state, Uint8 button);
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2016-09-24 18:46:34 -03:00
|
|
|
/* Send a mouse button event with a click count */
|
|
|
|
extern int SDL_SendMouseButtonClicks(SDL_Window * window, SDL_MouseID mouseID, Uint8 state, Uint8 button, int clicks);
|
|
|
|
|
2010-05-09 20:47:22 -07:00
|
|
|
/* Send a mouse wheel event */
|
2014-11-23 21:09:54 -05:00
|
|
|
extern int SDL_SendMouseWheel(SDL_Window * window, SDL_MouseID mouseID, int x, int y, SDL_MouseWheelDirection direction);
|
2008-08-26 07:34:23 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Shutdown the mouse subsystem */
|
|
|
|
extern void SDL_MouseQuit(void);
|
|
|
|
|
2016-11-20 21:34:54 -08:00
|
|
|
#endif /* SDL_mouse_c_h_ */
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|