Mercurial > sdl-ios-xcode
annotate src/video/maccommon/SDL_lowvideo.h @ 1280:f61f045343d3
Re-query the SDL_WINDOWID each time we initialize the video
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 29 Jan 2006 06:11:38 +0000 |
parents | 609c060fd2a2 |
children | c9b51268668f |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
769
b8d311d90021
Updated copyright information for 2004 (Happy New Year!)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
3 Copyright (C) 1997-2004 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
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 | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
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 #ifdef SAVE_RCSID | |
24 static char rcsid = | |
25 "@(#) $Id$"; | |
26 #endif | |
27 | |
28 #ifndef _SDL_lowvideo_h | |
29 #define _SDL_lowvideo_h | |
30 | |
1133
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
774
diff
changeset
|
31 #if defined(__APPLE__) && defined(__MACH__) |
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
774
diff
changeset
|
32 #include <Carbon/Carbon.h> |
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
774
diff
changeset
|
33 #elif TARGET_API_MAC_CARBON && (UNIVERSAL_INTERFACES_VERSION > 0x0335) |
0 | 34 #include <Carbon.h> |
35 #else | |
36 #include <Quickdraw.h> | |
37 #include <Palettes.h> | |
38 #include <Menus.h> | |
39 #include <DrawSprocket.h> | |
40 #endif | |
41 | |
42 #ifdef HAVE_OPENGL | |
43 #ifdef MACOSX | |
44 #include <OpenGL/gl.h> /* OpenGL.framework */ | |
45 #include <AGL/agl.h> /* AGL.framework */ | |
46 #else | |
47 #include <GL/gl.h> | |
48 #include <agl.h> | |
49 #endif /* MACOSX */ | |
50 #endif /* HAVE_OPENGL */ | |
51 | |
52 #include "SDL_video.h" | |
53 #include "SDL_sysvideo.h" | |
54 | |
55 /* Hidden "this" pointer for the video functions */ | |
56 #define _THIS SDL_VideoDevice *this | |
57 | |
58 #if !TARGET_API_MAC_CARBON /* not available in OS X (or more accurately, Carbon) */ | |
59 /* Global QuickDraw data */ | |
60 extern QDGlobals *theQD; | |
61 #endif | |
62 | |
63 /* Private display data */ | |
64 struct SDL_PrivateVideoData { | |
65 GDevice **SDL_Display; | |
66 WindowRef SDL_Window; | |
67 SDL_Rect **SDL_modelist; | |
68 CTabHandle SDL_CTab; | |
69 PaletteHandle SDL_CPal; | |
70 | |
71 #if TARGET_API_MAC_CARBON | |
72 /* For entering and leaving fullscreen mode */ | |
73 Ptr fullscreen_ctx; | |
74 #endif | |
75 | |
76 /* The current window document style */ | |
77 int current_style; | |
78 | |
79 /* Information about the last cursor position */ | |
80 Point last_where; | |
81 | |
82 /* Information about the last keys down */ | |
83 EventModifiers last_mods; | |
84 KeyMap last_keys; | |
85 | |
86 /* A handle to the Apple Menu */ | |
87 MenuRef apple_menu; | |
88 | |
89 /* Information used by DrawSprocket driver */ | |
90 struct DSpInfo *dspinfo; | |
91 | |
92 #ifdef HAVE_OPENGL | |
93 AGLContext appleGLContext; | |
774
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
94 |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
95 void *libraryHandle; |
0 | 96 #endif |
97 }; | |
98 /* Old variable names */ | |
99 #define SDL_Display (this->hidden->SDL_Display) | |
100 #define SDL_Window (this->hidden->SDL_Window) | |
101 #define SDL_modelist (this->hidden->SDL_modelist) | |
102 #define SDL_CTab (this->hidden->SDL_CTab) | |
103 #define SDL_CPal (this->hidden->SDL_CPal) | |
104 #define fullscreen_ctx (this->hidden->fullscreen_ctx) | |
105 #define current_style (this->hidden->current_style) | |
106 #define last_where (this->hidden->last_where) | |
107 #define last_mods (this->hidden->last_mods) | |
108 #define last_keys (this->hidden->last_keys) | |
109 #define apple_menu (this->hidden->apple_menu) | |
110 #define glContext (this->hidden->appleGLContext) | |
111 | |
112 #endif /* _SDL_lowvideo_h */ |