zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SDL_x11video.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4 
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.
8 
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:
12 
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.
20 */
21 #include "SDL_config.h"
22 
23 #ifndef _SDL_x11video_h
24 #define _SDL_x11video_h
25 
26 #include "SDL_keycode.h"
27 
28 #include "../SDL_sysvideo.h"
29 
30 #include <X11/Xlib.h>
31 #include <X11/Xutil.h>
32 #include <X11/Xatom.h>
33 
34 #if SDL_VIDEO_DRIVER_X11_XCURSOR
35 #include <X11/Xcursor/Xcursor.h>
36 #endif
37 #if SDL_VIDEO_DRIVER_X11_XINERAMA
38 #include <X11/extensions/Xinerama.h>
39 #endif
40 #if SDL_VIDEO_DRIVER_X11_XINPUT2
41 #include <X11/extensions/XInput2.h>
42 #endif
43 #if SDL_VIDEO_DRIVER_X11_XRANDR
44 #include <X11/extensions/Xrandr.h>
45 #endif
46 #if SDL_VIDEO_DRIVER_X11_XSCRNSAVER
47 #include <X11/extensions/scrnsaver.h>
48 #endif
49 #if SDL_VIDEO_DRIVER_X11_XSHAPE
50 #include <X11/extensions/shape.h>
51 #endif
52 #if SDL_VIDEO_DRIVER_X11_XVIDMODE
53 #include <X11/extensions/xf86vmode.h>
54 #endif
55 
56 #ifdef HAVE_DBUS_DBUS_H
57 #define SDL_USE_LIBDBUS 1
58 #include <dbus/dbus.h>
59 #endif
60 
61 #include "SDL_x11dyn.h"
62 
63 #include "SDL_x11clipboard.h"
64 #include "SDL_x11events.h"
65 #include "SDL_x11keyboard.h"
66 #include "SDL_x11modes.h"
67 #include "SDL_x11mouse.h"
68 #include "SDL_x11opengl.h"
69 #include "SDL_x11window.h"
70 
71 /* Private display data */
72 
73 typedef struct SDL_VideoData
74 {
75  Display *display;
76  char *classname;
77  pid_t pid;
78  XIM im;
83 
84  /* This is true for ICCCM2.0-compliant window managers */
86 
87  /* Useful atoms */
104  Atom PRIMARY;
105  Atom XdndEnter;
110  Atom XdndDrop;
113 
116 
117 #if SDL_USE_LIBDBUS
118  DBusConnection *dbus;
119 #endif
120 } SDL_VideoData;
121 
123 
124 #endif /* _SDL_x11video_h */
125 
126 /* vi: set ts=4 sw=4 expandtab: */
Display * display
Definition: SDL_x11video.h:75
Atom _NET_WM_STATE_FULLSCREEN
Definition: SDL_x11video.h:95
Atom _NET_WM_ALLOWED_ACTIONS
Definition: SDL_x11video.h:96
Atom _NET_WM_STATE_MAXIMIZED_VERT
Definition: SDL_x11video.h:93
SDL_bool
Definition: SDL_stdinc.h:116
int windowlistlength
Definition: SDL_x11video.h:82
SDL_bool X11_UseDirectColorVisuals(void)
SDL_WindowData ** windowlist
Definition: SDL_x11video.h:81
SDL_bool selection_waiting
Definition: SDL_x11video.h:115
Atom _NET_WM_STATE
Definition: SDL_x11video.h:90
uint32_t Uint32
An unsigned 32-bit integer type.
Definition: SDL_stdinc.h:145
char * classname
Definition: SDL_x11video.h:76
Atom _NET_WM_STATE_HIDDEN
Definition: SDL_x11video.h:91
Uint32 screensaver_activity
Atom _NET_ACTIVE_WINDOW
Definition: SDL_x11video.h:102
Atom WM_DELETE_WINDOW
Definition: SDL_x11video.h:89
Atom _NET_WM_ICON_NAME
Definition: SDL_x11video.h:99
Atom _NET_WM_ACTION_FULLSCREEN
Definition: SDL_x11video.h:97
Atom _NET_WM_STATE_MAXIMIZED_HORZ
Definition: SDL_x11video.h:94
Atom _NET_WM_STATE_FOCUSED
Definition: SDL_x11video.h:92
struct SDL_VideoData SDL_VideoData
SDL_bool net_wm
Definition: SDL_x11video.h:85
SDL_Scancode
The SDL keyboard scancode representation.
Definition: SDL_scancode.h:43