SDL_syswm.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997-2006 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Lesser General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2.1 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Lesser General Public License for more details.
  12.     You should have received a copy of the GNU Lesser General Public
  13.     License along with this library; if not, write to the Free Software
  14.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. /* Include file for SDL custom system window manager hooks */
  19. #ifndef _SDL_syswm_h
  20. #define _SDL_syswm_h
  21. #include "SDL_stdinc.h"
  22. #include "SDL_error.h"
  23. #include "SDL_version.h"
  24. #include "begin_code.h"
  25. /* Set up for C function definitions, even when using C++ */
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /* Your application has access to a special type of event 'SDL_SYSWMEVENT',
  30.    which contains window-manager specific information and arrives whenever
  31.    an unhandled window event occurs.  This event is ignored by default, but
  32.    you can enable it with SDL_EventState()
  33. */
  34. #ifdef SDL_PROTOTYPES_ONLY
  35. struct SDL_SysWMinfo;
  36. typedef struct SDL_SysWMinfo SDL_SysWMinfo;
  37. #else
  38. /* This is the structure for custom window manager events */
  39. #if defined(SDL_VIDEO_DRIVER_X11)
  40. #if defined(__APPLE__) && defined(__MACH__)
  41. /* conflicts with Quickdraw.h */
  42. #define Cursor X11Cursor
  43. #endif
  44. #include <X11/Xlib.h>
  45. #include <X11/Xatom.h>
  46. #if defined(__APPLE__) && defined(__MACH__)
  47. /* matches the re-define above */
  48. #undef Cursor
  49. #endif
  50. /* These are the various supported subsystems under UNIX */
  51. typedef enum {
  52. SDL_SYSWM_X11
  53. } SDL_SYSWM_TYPE;
  54. /* The UNIX custom event structure */
  55. struct SDL_SysWMmsg {
  56. SDL_version version;
  57. SDL_SYSWM_TYPE subsystem;
  58. union {
  59.     XEvent xevent;
  60. } event;
  61. };
  62. /* The UNIX custom window manager information structure.
  63.    When this structure is returned, it holds information about which
  64.    low level system it is using, and will be one of SDL_SYSWM_TYPE.
  65.  */
  66. typedef struct SDL_SysWMinfo {
  67. SDL_version version;
  68. SDL_SYSWM_TYPE subsystem;
  69. union {
  70.     struct {
  71.      Display *display; /* The X11 display */
  72.      Window window; /* The X11 display window */
  73. /* These locking functions should be called around
  74.                    any X11 functions using the display variable, 
  75.                    but not the gfxdisplay variable.
  76.                    They lock the event thread, so should not be
  77.    called around event functions or from event filters.
  78.  */
  79. void (*lock_func)(void);
  80. void (*unlock_func)(void);
  81. /* Introduced in SDL 1.0.2 */
  82.      Window fswindow; /* The X11 fullscreen window */
  83.      Window wmwindow; /* The X11 managed input window */
  84. /* Introduced in SDL 1.2.12 */
  85. Display *gfxdisplay; /* The X11 display to which rendering is done */
  86.     } x11;
  87. } info;
  88. } SDL_SysWMinfo;
  89. #elif defined(SDL_VIDEO_DRIVER_NANOX)
  90. #include <microwin/nano-X.h>
  91. /* The generic custom event structure */
  92. struct SDL_SysWMmsg {
  93. SDL_version version;
  94. int data;
  95. };
  96. /* The windows custom window manager information structure */
  97. typedef struct SDL_SysWMinfo {
  98. SDL_version version ;
  99. GR_WINDOW_ID window ; /* The display window */
  100. } SDL_SysWMinfo;
  101. #elif defined(SDL_VIDEO_DRIVER_WINDIB) || defined(SDL_VIDEO_DRIVER_DDRAW) || defined(SDL_VIDEO_DRIVER_GAPI)
  102. #define WIN32_LEAN_AND_MEAN
  103. #include <windows.h>
  104. /* The windows custom event structure */
  105. struct SDL_SysWMmsg {
  106. SDL_version version;
  107. HWND hwnd; /* The window for the message */
  108. UINT msg; /* The type of message */
  109. WPARAM wParam; /* WORD message parameter */
  110. LPARAM lParam; /* LONG message parameter */
  111. };
  112. /* The windows custom window manager information structure */
  113. typedef struct SDL_SysWMinfo {
  114. SDL_version version;
  115. HWND window; /* The Win32 display window */
  116. HGLRC hglrc; /* The OpenGL context, if any */
  117. } SDL_SysWMinfo;
  118. #elif defined(SDL_VIDEO_DRIVER_RISCOS)
  119. /* RISC OS custom event structure */
  120. struct SDL_SysWMmsg {
  121. SDL_version version;
  122. int eventCode; /* The window for the message */
  123. int pollBlock[64];
  124. };
  125. /* The RISC OS custom window manager information structure */
  126. typedef struct SDL_SysWMinfo {
  127. SDL_version version;
  128. int wimpVersion;    /* Wimp version running under */
  129. int taskHandle;     /* The RISC OS task handle */
  130. int window; /* The RISC OS display window */
  131. } SDL_SysWMinfo;
  132. #elif defined(SDL_VIDEO_DRIVER_PHOTON)
  133. #include <sys/neutrino.h>
  134. #include <Ph.h>
  135. /* The QNX custom event structure */
  136. struct SDL_SysWMmsg {
  137. SDL_version version;
  138. int data;
  139. };
  140. /* The QNX custom window manager information structure */
  141. typedef struct SDL_SysWMinfo {
  142. SDL_version version;
  143. int data;
  144. } SDL_SysWMinfo;
  145. #else
  146. /* The generic custom event structure */
  147. struct SDL_SysWMmsg {
  148. SDL_version version;
  149. int data;
  150. };
  151. /* The generic custom window manager information structure */
  152. typedef struct SDL_SysWMinfo {
  153. SDL_version version;
  154. int data;
  155. } SDL_SysWMinfo;
  156. #endif /* video driver type */
  157. #endif /* SDL_PROTOTYPES_ONLY */
  158. /* Function prototypes */
  159. /*
  160.  * This function gives you custom hooks into the window manager information.
  161.  * It fills the structure pointed to by 'info' with custom information and
  162.  * returns 1 if the function is implemented.  If it's not implemented, or
  163.  * the version member of the 'info' structure is invalid, it returns 0. 
  164.  *
  165.  * You typically use this function like this:
  166.  * SDL_SysWMInfo info;
  167.  * SDL_VERSION(&info.version);
  168.  * if ( SDL_GetWMInfo(&info) ) { ... }
  169.  */
  170. extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);
  171. /* Ends C function definitions when using C++ */
  172. #ifdef __cplusplus
  173. }
  174. #endif
  175. #include "close_code.h"
  176. #endif /* _SDL_syswm_h */