2 Simple DirectMedia Layer
3 Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
25 * Include file for SDL custom system window manager hooks.
31 #include "SDL_stdinc.h"
32 #include "SDL_error.h"
33 #include "SDL_video.h"
34 #include "SDL_version.h"
36 #include "begin_code.h"
37 /* Set up for C function definitions, even when using C++ */
45 * Your application has access to a special type of event ::SDL_SYSWMEVENT,
46 * which contains window-manager specific information and arrives whenever
47 * an unhandled window event occurs. This event is ignored by default, but
48 * you can enable it with SDL_EventState().
50 #ifdef SDL_PROTOTYPES_ONLY
54 #if defined(SDL_VIDEO_DRIVER_WINDOWS)
55 #ifndef WIN32_LEAN_AND_MEAN
56 #define WIN32_LEAN_AND_MEAN
61 #if defined(SDL_VIDEO_DRIVER_WINRT)
62 #include <Inspectable.h>
65 /* This is the structure for custom window manager events */
66 #if defined(SDL_VIDEO_DRIVER_X11)
67 #if defined(__APPLE__) && defined(__MACH__)
68 /* conflicts with Quickdraw.h */
69 #define Cursor X11Cursor
73 #include <X11/Xatom.h>
75 #if defined(__APPLE__) && defined(__MACH__)
76 /* matches the re-define above */
80 #endif /* defined(SDL_VIDEO_DRIVER_X11) */
82 #if defined(SDL_VIDEO_DRIVER_DIRECTFB)
86 #if defined(SDL_VIDEO_DRIVER_COCOA)
90 typedef struct _NSWindow NSWindow;
94 #if defined(SDL_VIDEO_DRIVER_UIKIT)
96 #include <UIKit/UIKit.h>
98 typedef struct _UIWindow UIWindow;
99 typedef struct _UIViewController UIViewController;
101 typedef Uint32 GLuint;
104 #if defined(SDL_VIDEO_DRIVER_ANDROID)
105 typedef struct ANativeWindow ANativeWindow;
106 typedef void *EGLSurface;
109 #if defined(SDL_VIDEO_DRIVER_VIVANTE)
114 * These are the various supported windowing subsystems
132 * The custom event structure.
137 SDL_SYSWM_TYPE subsystem;
140 #if defined(SDL_VIDEO_DRIVER_WINDOWS)
142 HWND hwnd; /**< The window for the message */
143 UINT msg; /**< The type of message */
144 WPARAM wParam; /**< WORD message parameter */
145 LPARAM lParam; /**< LONG message parameter */
148 #if defined(SDL_VIDEO_DRIVER_X11)
153 #if defined(SDL_VIDEO_DRIVER_DIRECTFB)
158 #if defined(SDL_VIDEO_DRIVER_COCOA)
161 /* Latest version of Xcode clang complains about empty structs in C v. C++:
162 error: empty struct has size 0 in C, size 1 in C++
165 /* No Cocoa window events yet */
168 #if defined(SDL_VIDEO_DRIVER_UIKIT)
172 /* No UIKit window events yet */
175 #if defined(SDL_VIDEO_DRIVER_VIVANTE)
179 /* No Vivante window events yet */
182 /* Can't have an empty union */
188 * The custom window manager information structure.
190 * When this structure is returned, it holds information about which
191 * low level system it is using, and will be one of SDL_SYSWM_TYPE.
196 SDL_SYSWM_TYPE subsystem;
199 #if defined(SDL_VIDEO_DRIVER_WINDOWS)
202 HWND window; /**< The window handle */
203 HDC hdc; /**< The window device context */
206 #if defined(SDL_VIDEO_DRIVER_WINRT)
209 IInspectable * window; /**< The WinRT CoreWindow */
212 #if defined(SDL_VIDEO_DRIVER_X11)
215 Display *display; /**< The X11 display */
216 Window window; /**< The X11 window */
219 #if defined(SDL_VIDEO_DRIVER_DIRECTFB)
222 IDirectFB *dfb; /**< The directfb main interface */
223 IDirectFBWindow *window; /**< The directfb window handle */
224 IDirectFBSurface *surface; /**< The directfb client surface */
227 #if defined(SDL_VIDEO_DRIVER_COCOA)
230 #if defined(__OBJC__) && defined(__has_feature) && __has_feature(objc_arc)
231 NSWindow __unsafe_unretained *window; /* The Cocoa window */
233 NSWindow *window; /* The Cocoa window */
237 #if defined(SDL_VIDEO_DRIVER_UIKIT)
240 #if defined(__OBJC__) && defined(__has_feature) && __has_feature(objc_arc)
241 UIWindow __unsafe_unretained *window; /* The UIKit window */
243 UIWindow *window; /* The UIKit window */
245 GLuint framebuffer; /* The GL view's Framebuffer Object. It must be bound when rendering to the screen using GL. */
246 GLuint colorbuffer; /* The GL view's color Renderbuffer Object. It must be bound when SDL_GL_SwapWindow is called. */
247 GLuint resolveFramebuffer; /* The Framebuffer Object which holds the resolve color Renderbuffer, when MSAA is used. */
250 #if defined(SDL_VIDEO_DRIVER_WAYLAND)
253 struct wl_display *display; /**< Wayland display */
254 struct wl_surface *surface; /**< Wayland surface */
255 struct wl_shell_surface *shell_surface; /**< Wayland shell_surface (window manager handle) */
258 #if defined(SDL_VIDEO_DRIVER_MIR)
261 struct MirConnection *connection; /**< Mir display server connection */
262 struct MirSurface *surface; /**< Mir surface */
266 #if defined(SDL_VIDEO_DRIVER_ANDROID)
269 ANativeWindow *window;
274 #if defined(SDL_VIDEO_DRIVER_VIVANTE)
277 EGLNativeDisplayType display;
278 EGLNativeWindowType window;
282 /* Can't have an empty union */
287 #endif /* SDL_PROTOTYPES_ONLY */
289 typedef struct SDL_SysWMinfo SDL_SysWMinfo;
291 /* Function prototypes */
293 * \brief This function allows access to driver-dependent window information.
295 * \param window The window about which information is being requested
296 * \param info This structure must be initialized with the SDL version, and is
297 * then filled in with information about the given window.
299 * \return SDL_TRUE if the function is implemented and the version member of
300 * the \c info struct is valid, SDL_FALSE otherwise.
302 * You typically use this function like this:
304 * SDL_SysWMinfo info;
305 * SDL_VERSION(&info.version);
306 * if ( SDL_GetWindowWMInfo(window, &info) ) { ... }
309 extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowWMInfo(SDL_Window * window,
310 SDL_SysWMinfo * info);
313 /* Ends C function definitions when using C++ */
317 #include "close_code.h"
319 #endif /* _SDL_syswm_h */
321 /* vi: set ts=4 sw=4 expandtab: */