Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
75 lines (49 loc) · 2.23 KB

SDL_touch_c.h

File metadata and controls

75 lines (49 loc) · 2.23 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997-2010 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
Jun 1, 2010
Jun 1, 2010
23
#include "../../include/SDL_touch.h"
24
25
26
27
28
#ifndef _SDL_touch_c_h
#define _SDL_touch_c_h
May 27, 2010
May 27, 2010
29
30
31
32
/* Initialize the touch subsystem */
extern int SDL_TouchInit(void);
May 28, 2010
May 28, 2010
33
34
35
36
37
38
39
40
41
42
43
44
/*Get the touch at an index */
extern SDL_Touch *SDL_GetTouchIndex(int index);
/* Get the touch with id = id */
extern SDL_Touch *SDL_GetTouch(int id);
/*Get the finger at an index */
extern SDL_Finger *SDL_GetFingerIndex(SDL_Touch *touch, int index);
/* Get the finger with id = id */
extern SDL_Finger *SDL_GetFinger(SDL_Touch *touch,int id);
45
46
/* Add a touch, possibly reattaching at a particular index (or -1),
May 28, 2010
May 28, 2010
47
48
49
returning the index of the touch, or -1 if there was an error. */
extern int SDL_AddTouch(const SDL_Touch * touch, char *name);
50
51
52
53
54
55
56
57
/* Remove a touch at an index, clearing the slot for later */
extern void SDL_DelTouch(int index);
/* Set the touch focus window */
extern void SDL_SetTouchFocus(int id, SDL_Window * window);
/* Send a touch motion event for a touch */
May 27, 2010
May 27, 2010
58
59
extern int SDL_SendTouchMotion(int id, int fingerid,
int relative, int x, int y, int z);
60
61
62
63
64
65
66
/* Send a touch button event for a touch */
extern int SDL_SendTouchButton(int id, Uint8 state, Uint8 button);
/* Shutdown the touch subsystem */
extern void SDL_TouchQuit(void);
Jun 3, 2010
Jun 3, 2010
67
/* Get the index of a touch device */
Jun 3, 2010
Jun 3, 2010
68
extern int SDL_GetTouchIndexId(int id);
Jun 3, 2010
Jun 3, 2010
69
70
71
72
73
74
75
#endif /* _SDL_touch_c_h */
/* vi: set ts=4 sw=4 expandtab: */