author | Sam Lantinga |
Sun, 01 Jan 2017 18:33:28 -0800 | |
changeset 10737 | 3406a0f8b041 |
parent 9998 | f67cf37e9cd4 |
child 11382 | 2c50e79b19e0 |
permissions | -rw-r--r-- |
slouken@1931 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@10737 | 3 |
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org> |
slouken@1931 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
slouken@1931 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
slouken@1931 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@1931 | 20 |
*/ |
icculus@8093 | 21 |
#include "../../SDL_internal.h" |
slouken@1931 | 22 |
|
slouken@1931 | 23 |
#ifndef _SDL_cocoamouse_h |
slouken@1931 | 24 |
#define _SDL_cocoamouse_h |
slouken@1931 | 25 |
|
jorgen@7114 | 26 |
#include "SDL_cocoavideo.h" |
jorgen@7114 | 27 |
|
slouken@1931 | 28 |
extern void Cocoa_InitMouse(_THIS); |
slouken@3517 | 29 |
extern void Cocoa_HandleMouseEvent(_THIS, NSEvent * event); |
slouken@5058 | 30 |
extern void Cocoa_HandleMouseWheel(SDL_Window *window, NSEvent * event); |
jorgen@8261 | 31 |
extern void Cocoa_HandleMouseWarp(CGFloat x, CGFloat y); |
slouken@1931 | 32 |
extern void Cocoa_QuitMouse(_THIS); |
slouken@1931 | 33 |
|
jorgen@7114 | 34 |
typedef struct { |
jorgen@8261 | 35 |
/* Wether we've seen a cursor warp since the last move event. */ |
jorgen@8261 | 36 |
SDL_bool seenWarp; |
jorgen@8261 | 37 |
/* What location our last cursor warp was to. */ |
jorgen@8261 | 38 |
CGFloat lastWarpX; |
jorgen@8261 | 39 |
CGFloat lastWarpY; |
jorgen@8261 | 40 |
/* What location we last saw the cursor move to. */ |
jorgen@8261 | 41 |
CGFloat lastMoveX; |
jorgen@8261 | 42 |
CGFloat lastMoveY; |
jorgen@7593 | 43 |
void *tapdata; |
jorgen@7114 | 44 |
} SDL_MouseData; |
jorgen@7114 | 45 |
|
jorgen@7158 | 46 |
@interface NSCursor (InvisibleCursor) |
jorgen@7158 | 47 |
+ (NSCursor *)invisibleCursor; |
jorgen@7158 | 48 |
@end |
jorgen@7158 | 49 |
|
slouken@1931 | 50 |
#endif /* _SDL_cocoamouse_h */ |
slouken@1931 | 51 |
|
slouken@1931 | 52 |
/* vi: set ts=4 sw=4 expandtab: */ |