Mercurial > sdl-ios-xcode
annotate src/video/cybergfx/SDL_amigamouse.c @ 1361:19418e4422cb
New configure-based build system. Still work in progress, but much improved
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 16 Feb 2006 10:11:48 +0000 |
parents | c71e05b4dc2e |
children | d910939febfa |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #include "SDL_mouse.h" | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
24 #include "../../events/SDL_events_c.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
25 #include "../SDL_cursor_c.h" |
0 | 26 #include "SDL_amigamouse_c.h" |
27 | |
28 | |
29 /* The implementation dependent data for the window manager cursor */ | |
30 | |
31 typedef void * WMCursor; | |
32 | |
33 void amiga_FreeWMCursor(_THIS, WMcursor *cursor) | |
34 { | |
35 } | |
36 | |
37 WMcursor *amiga_CreateWMCursor(_THIS, | |
38 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) | |
39 { | |
40 return (WMcursor *)1; // Amiga has an Hardware cursor, so it's ok to return something unuseful but true | |
41 } | |
42 | |
43 int amiga_ShowWMCursor(_THIS, WMcursor *cursor) | |
44 { | |
45 /* Don't do anything if the display is gone */ | |
46 if ( SDL_Display == NULL) { | |
47 return(0); | |
48 } | |
49 | |
50 /* Set the Amiga prefs cursor cursor, or blank if cursor is NULL */ | |
51 | |
52 if ( SDL_Window ) { | |
53 SDL_Lock_EventThread(); | |
54 if ( cursor == NULL ) { | |
55 if ( SDL_BlankCursor != NULL ) { | |
56 // Hide cursor HERE | |
57 SetPointer(SDL_Window,(UWORD *)SDL_BlankCursor,1,1,0,0); | |
58 } | |
59 } else { | |
60 // Show cursor | |
61 ClearPointer(SDL_Window); | |
62 } | |
63 SDL_Unlock_EventThread(); | |
64 } | |
65 return(1); | |
66 } | |
67 | |
68 void amiga_WarpWMCursor(_THIS, Uint16 x, Uint16 y) | |
69 { | |
70 /* FIXME: Not implemented */ | |
71 } | |
72 | |
73 /* Check to see if we need to enter or leave mouse relative mode */ | |
74 void amiga_CheckMouseMode(_THIS) | |
75 { | |
76 } |