Mercurial > sdl-ios-xcode
diff src/video/x11/SDL_x11video.h @ 1951:7177581dc9fa
Initial work on X11 window code in.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 27 Jul 2006 06:53:23 +0000 |
parents | a344e42bce3b |
children | 420716272158 |
line wrap: on
line diff
--- a/src/video/x11/SDL_x11video.h Wed Jul 26 06:34:54 2006 +0000 +++ b/src/video/x11/SDL_x11video.h Thu Jul 27 06:53:23 2006 +0000 @@ -30,14 +30,6 @@ #include <X11/Xutil.h> #include <X11/Xatom.h> -//#include "SDL_x11events.h" -//#include "SDL_x11gamma.h" -#include "SDL_x11keyboard.h" -#include "SDL_x11modes.h" -#include "SDL_x11mouse.h" -//#include "SDL_x11opengl.h" -//#include "SDL_x11window.h" - #if SDL_VIDEO_DRIVER_X11_XINERAMA #include "../Xext/extensions/Xinerama.h" #endif @@ -56,13 +48,28 @@ #include "SDL_x11dyn.h" +#include "SDL_x11events.h" +//#include "SDL_x11gamma.h" +#include "SDL_x11keyboard.h" +#include "SDL_x11modes.h" +#include "SDL_x11mouse.h" +//#include "SDL_x11opengl.h" +#include "SDL_x11window.h" + /* Private display data */ typedef struct SDL_VideoData { Display *display; + char *classname; + XIM im; + int screensaver_timeout; + BOOL dpms_enabled; + int numwindows; + SDL_WindowData **windowlist; int mouse; int keyboard; + Atom WM_DELETE_WINDOW; } SDL_VideoData; #endif /* _SDL_x11video_h */