Merge svn changes up to r28310
[mplayer/glamo.git] / libvo / x11_common.h
blob7bcbd08d677924440e42773af298487237154109
1 #ifndef MPLAYER_X11_COMMON_H
2 #define MPLAYER_X11_COMMON_H
4 #include <X11/Xlib.h>
5 #include <X11/Xutil.h>
7 #include "config.h"
9 struct vo;
11 struct vo_x11_state {
12 Display *display;
13 Window window;
14 Window rootwin;
15 int screen;
16 int display_is_local;
17 int depthonscreen;
19 GC vo_gc;
21 struct xv_ck_info_s {
22 int method; ///< CK_METHOD_* constants
23 int source; ///< CK_SRC_* constants
24 } xv_ck_info;
25 unsigned long xv_colorkey;
26 unsigned int xv_port;
28 int vo_mouse_autohide;
29 int wm_type;
30 int fs_type;
31 int fs_flip;
33 GC f_gc;
34 XSizeHints vo_hint;
35 unsigned int mouse_timer;
36 int mouse_waiting_hide;
37 int orig_layer;
38 int old_gravity;
39 int vo_old_x;
40 int vo_old_y;
41 int vo_old_width;
42 int vo_old_height;
45 unsigned int olddecor;
46 unsigned int oldfuncs;
47 XComposeStatus compose_status;
49 Atom XA_NET_SUPPORTED;
50 Atom XA_NET_WM_STATE;
51 Atom XA_NET_WM_STATE_FULLSCREEN;
52 Atom XA_NET_WM_STATE_ABOVE;
53 Atom XA_NET_WM_STATE_STAYS_ON_TOP;
54 Atom XA_NET_WM_STATE_BELOW;
55 Atom XA_NET_WM_PID;
56 Atom XA_WIN_PROTOCOLS;
57 Atom XA_WIN_LAYER;
58 Atom XA_WIN_HINTS;
59 Atom XAWM_PROTOCOLS;
60 Atom XAWM_DELETE_WINDOW;
63 #if defined(CONFIG_GL) || defined(CONFIG_X11) || defined(CONFIG_XV)
64 #define X11_FULLSCREEN 1
65 #endif
67 #ifdef X11_FULLSCREEN
69 #define vo_wm_LAYER 1
70 #define vo_wm_FULLSCREEN 2
71 #define vo_wm_STAYS_ON_TOP 4
72 #define vo_wm_ABOVE 8
73 #define vo_wm_BELOW 16
74 #define vo_wm_NETWM (vo_wm_FULLSCREEN | vo_wm_STAYS_ON_TOP | vo_wm_ABOVE | vo_wm_BELOW)
76 /* EWMH state actions, see
77 http://freedesktop.org/Standards/wm-spec/index.html#id2768769 */
78 #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
79 #define _NET_WM_STATE_ADD 1 /* add/set property */
80 #define _NET_WM_STATE_TOGGLE 2 /* toggle property */
82 extern int metacity_hack;
84 extern int vo_fs_layer;
85 extern int vo_wm_type;
86 extern int vo_fs_type;
87 extern char** vo_fstype_list;
89 extern char *mDisplayName;
90 extern Window mRootWin;
91 extern int mScreen;
92 extern int mLocalDisplay;
94 struct vo_x11_state *vo_x11_init_state(void);
95 int vo_init(struct vo *vo);
96 void vo_uninit(struct vo_x11_state *x11);
97 void vo_x11_decoration(struct vo *vo, int d );
98 void vo_x11_classhint(struct vo *vo, Window window, char *name);
99 void vo_x11_sizehint(struct vo *vo, int x, int y, int width, int height, int max);
100 int vo_x11_check_events(struct vo *vo);
101 void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask);
102 void vo_x11_fullscreen(struct vo *vo);
103 int vo_x11_update_geometry(struct vo *vo);
104 void vo_x11_setlayer(struct vo *vo, Window vo_window, int layer);
105 void vo_x11_uninit(struct vo *vo);
106 Colormap vo_x11_create_colormap(struct vo *vo, XVisualInfo *vinfo);
107 uint32_t vo_x11_set_equalizer(struct vo *vo, char *name, int value);
108 uint32_t vo_x11_get_equalizer(char *name, int *value);
109 void fstype_help(void);
110 void vo_x11_create_vo_window(struct vo *vo, XVisualInfo *vis,
111 int x, int y, unsigned int width, unsigned int height, int flags,
112 Colormap col_map, const char *classname, const char *title);
113 void vo_x11_clearwindow_part(struct vo *vo, Window vo_window,
114 int img_width, int img_height, int use_fs);
115 void vo_x11_clearwindow(struct vo *vo, Window vo_window);
116 void vo_x11_ontop(struct vo *vo);
117 void vo_x11_border(struct vo *vo);
118 void vo_x11_ewmh_fullscreen(struct vo_x11_state *x11, int action);
120 #endif
122 int vo_xv_set_eq(struct vo *vo, uint32_t xv_port, char * name, int value);
123 int vo_xv_get_eq(struct vo *vo, uint32_t xv_port, char * name, int *value);
125 int vo_xv_enable_vsync(struct vo *vo);
127 void vo_xv_get_max_img_dim(struct vo *vo, uint32_t * width, uint32_t * height);
129 /*** colorkey handling ***/
131 #define CK_METHOD_NONE 0 ///< no colorkey drawing
132 #define CK_METHOD_BACKGROUND 1 ///< set colorkey as window background
133 #define CK_METHOD_AUTOPAINT 2 ///< let xv draw the colorkey
134 #define CK_METHOD_MANUALFILL 3 ///< manually draw the colorkey
135 #define CK_SRC_USE 0 ///< use specified / default colorkey
136 #define CK_SRC_SET 1 ///< use and set specified / default colorkey
137 #define CK_SRC_CUR 2 ///< use current colorkey ( get it from xv )
139 int vo_xv_init_colorkey(struct vo *vo);
140 void vo_xv_draw_colorkey(struct vo *vo, int32_t x, int32_t y, int32_t w, int32_t h);
141 void xv_setup_colorkeyhandling(struct vo *vo, const char *ck_method_str, const char *ck_str);
143 /*** test functions for common suboptions ***/
144 int xv_test_ck( void * arg );
145 int xv_test_ckm( void * arg );
147 void vo_x11_putkey(struct vo *vo, int key);
149 #ifdef CONFIG_XF86VM
150 void vo_vm_switch(struct vo *vo);
151 void vo_vm_close(struct vo *vo);
152 #endif
154 void update_xinerama_info(struct vo *vo);
156 int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return);
157 void vo_calc_drwXY(struct vo *vo, uint32_t *drwX, uint32_t *drwY);
159 void xscreensaver_heartbeat(struct vo_x11_state *x11);
161 // Old VOs use incompatible function calls, translate them to new
162 // prototypes
163 #ifdef IS_OLD_VO
164 #define vo_x11_create_vo_window(...) vo_x11_create_vo_window(global_vo, __VA_ARGS__)
165 #define vo_x11_fullscreen() vo_x11_fullscreen(global_vo)
166 #define vo_x11_update_geometry() vo_x11_update_geometry(global_vo)
167 #define vo_x11_ontop() vo_x11_ontop(global_vo)
168 #define vo_init() vo_init(global_vo)
169 #define vo_x11_ewmh_fullscreen(action) vo_x11_ewmh_fullscreen(global_vo->x11->display, action)
170 #define update_xinerama_info() update_xinerama_info(global_vo)
171 #define vo_x11_uninit() vo_x11_uninit(global_vo)
172 #define vo_x11_check_events(display) vo_x11_check_events(global_vo)
173 #define vo_x11_sizehint(...) vo_x11_sizehint(global_vo, __VA_ARGS__)
174 #define vo_vm_switch() vo_vm_switch(global_vo)
175 #define vo_x11_create_colormap(vinfo) vo_x11_create_colormap(global_vo, vinfo)
176 #define vo_x11_set_equalizer(...) vo_x11_set_equalizer(global_vo, __VA_ARGS__)
177 #define vo_xv_set_eq(...) vo_xv_set_eq(global_vo, __VA_ARGS__)
178 #define vo_xv_get_eq(...) vo_xv_get_eq(global_vo, __VA_ARGS__)
179 #define vo_xv_enable_vsync() vo_xv_enable_vsync(global_vo)
180 #define vo_xv_get_max_img_dim(...) vo_xv_get_max_img_dim(global_vo, __VA_ARGS__)
181 #define vo_xv_init_colorkey() vo_xv_init_colorkey(global_vo)
182 #define vo_xv_draw_colorkey(...) vo_xv_draw_colorkey(global_vo, __VA_ARGS__)
183 #define vo_x11_clearwindow_part(display, ...) vo_x11_clearwindow_part(global_vo, __VA_ARGS__)
184 #define vo_vm_close() vo_vm_close(global_vo)
185 #define vo_x11_clearwindow(display, window) vo_x11_clearwindow(global_vo, window)
186 #define vo_x11_classhint(display, window, name) vo_x11_classhint(global_vo, window, name)
187 #define vo_x11_setlayer(display, window, layer) vo_x11_setlayer(global_vo, window, layer)
188 #define xv_setup_colorkeyhandling(a, b) xv_setup_colorkeyhandling(global_vo, a, b)
189 #define vo_calc_drwXY(drwX, drwY) vo_calc_drwXY(global_vo, drwX, drwY)
191 #define mDisplay global_vo->x11->display
192 #define vo_depthonscreen global_vo->x11->depthonscreen
193 #define vo_window global_vo->x11->window
194 #define xv_ck_info global_vo->x11->xv_ck_info
195 #define xv_colorkey global_vo->x11->xv_colorkey
196 #define xv_port global_vo->x11->xv_port
197 #define vo_gc global_vo->x11->vo_gc
198 #define mRootWin global_vo->x11->rootwin
199 #define mScreen global_vo->x11->screen
200 #define mLocalDisplay global_vo->x11->display_is_local
201 #endif
203 #endif /* MPLAYER_X11_COMMON_H */