2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_X11_COMMON_H
|
|
|
|
#define MPLAYER_X11_COMMON_H
|
2002-03-07 17:50:25 +00:00
|
|
|
|
2002-03-08 20:14:08 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2008-04-19 04:45:16 +00:00
|
|
|
struct vo;
|
|
|
|
|
2008-04-20 04:36:34 +00:00
|
|
|
struct vo_x11_state {
|
2008-04-20 06:34:27 +00:00
|
|
|
Display *display;
|
2008-04-21 00:14:37 +00:00
|
|
|
Window window;
|
2008-04-21 01:59:00 +00:00
|
|
|
Window rootwin;
|
|
|
|
int screen;
|
|
|
|
int display_is_local;
|
2008-04-20 22:50:19 +00:00
|
|
|
int depthonscreen;
|
2008-04-21 00:43:03 +00:00
|
|
|
|
2008-04-21 01:19:43 +00:00
|
|
|
GC vo_gc;
|
|
|
|
|
2008-04-21 00:43:03 +00:00
|
|
|
struct xv_ck_info_s {
|
|
|
|
int method; ///< CK_METHOD_* constants
|
|
|
|
int source; ///< CK_SRC_* constants
|
|
|
|
} xv_ck_info;
|
|
|
|
unsigned long xv_colorkey;
|
|
|
|
unsigned int xv_port;
|
|
|
|
|
2008-04-21 01:50:29 +00:00
|
|
|
int vo_mouse_autohide;
|
|
|
|
int wm_type;
|
|
|
|
int fs_type;
|
|
|
|
int fs_flip;
|
|
|
|
|
2008-04-21 01:19:43 +00:00
|
|
|
GC f_gc;
|
|
|
|
XSizeHints vo_hint;
|
2008-04-21 01:25:10 +00:00
|
|
|
unsigned int mouse_timer;
|
|
|
|
int mouse_waiting_hide;
|
2008-04-21 01:37:46 +00:00
|
|
|
int orig_layer;
|
|
|
|
int old_gravity;
|
2008-04-21 01:41:52 +00:00
|
|
|
int vo_old_x;
|
|
|
|
int vo_old_y;
|
|
|
|
int vo_old_width;
|
|
|
|
int vo_old_height;
|
|
|
|
|
2008-04-21 01:19:43 +00:00
|
|
|
|
2008-04-21 01:09:26 +00:00
|
|
|
unsigned int olddecor;
|
|
|
|
unsigned int oldfuncs;
|
|
|
|
XComposeStatus compose_status;
|
|
|
|
|
2008-04-20 23:50:40 +00:00
|
|
|
Atom XA_NET_SUPPORTED;
|
|
|
|
Atom XA_NET_WM_STATE;
|
|
|
|
Atom XA_NET_WM_STATE_FULLSCREEN;
|
|
|
|
Atom XA_NET_WM_STATE_ABOVE;
|
|
|
|
Atom XA_NET_WM_STATE_STAYS_ON_TOP;
|
|
|
|
Atom XA_NET_WM_STATE_BELOW;
|
|
|
|
Atom XA_NET_WM_PID;
|
|
|
|
Atom XA_WIN_PROTOCOLS;
|
|
|
|
Atom XA_WIN_LAYER;
|
|
|
|
Atom XA_WIN_HINTS;
|
|
|
|
Atom XA_BLACKBOX_PID;
|
|
|
|
Atom XAWM_PROTOCOLS;
|
|
|
|
Atom XAWM_DELETE_WINDOW;
|
2008-04-20 04:36:34 +00:00
|
|
|
};
|
|
|
|
|
2005-02-06 10:12:34 +00:00
|
|
|
#ifdef X11_FULLSCREEN
|
|
|
|
|
2003-02-07 19:38:39 +00:00
|
|
|
#define vo_wm_LAYER 1
|
|
|
|
#define vo_wm_FULLSCREEN 2
|
|
|
|
#define vo_wm_STAYS_ON_TOP 4
|
|
|
|
#define vo_wm_ABOVE 8
|
|
|
|
#define vo_wm_BELOW 16
|
|
|
|
#define vo_wm_NETWM (vo_wm_FULLSCREEN | vo_wm_STAYS_ON_TOP | vo_wm_ABOVE | vo_wm_BELOW)
|
2003-01-09 20:47:14 +00:00
|
|
|
|
2004-06-02 02:34:39 +00:00
|
|
|
/* EWMH state actions, see
|
|
|
|
http://freedesktop.org/Standards/wm-spec/index.html#id2768769 */
|
|
|
|
#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
|
|
|
|
#define _NET_WM_STATE_ADD 1 /* add/set property */
|
|
|
|
#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
|
|
|
|
|
2003-01-09 20:47:14 +00:00
|
|
|
extern int metacity_hack;
|
2005-08-21 01:20:31 +00:00
|
|
|
|
2003-02-07 19:38:39 +00:00
|
|
|
extern int vo_fs_layer;
|
2002-05-06 15:05:07 +00:00
|
|
|
extern int vo_wm_type;
|
2003-02-07 19:38:39 +00:00
|
|
|
extern int vo_fs_type;
|
|
|
|
extern char** vo_fstype_list;
|
2001-03-03 21:47:37 +00:00
|
|
|
|
2001-05-31 22:32:58 +00:00
|
|
|
extern char *mDisplayName;
|
2001-10-24 17:04:08 +00:00
|
|
|
extern Window mRootWin;
|
2001-05-31 22:32:58 +00:00
|
|
|
extern int mScreen;
|
|
|
|
extern int mLocalDisplay;
|
|
|
|
|
2008-04-20 04:36:34 +00:00
|
|
|
void vo_x11_init_state(struct vo_x11_state *s);
|
2008-04-20 06:34:27 +00:00
|
|
|
int vo_init(struct vo *vo);
|
|
|
|
void vo_uninit(struct vo_x11_state *x11);
|
2008-04-21 01:09:26 +00:00
|
|
|
extern void vo_x11_decoration(struct vo *vo, int d );
|
2008-04-20 23:50:40 +00:00
|
|
|
void vo_x11_classhint(struct vo *vo, Window window, char *name);
|
2008-04-20 06:34:27 +00:00
|
|
|
void vo_x11_sizehint(struct vo *vo, int x, int y, int width, int height, int max);
|
|
|
|
int vo_x11_check_events(struct vo *vo);
|
2002-08-09 17:43:49 +00:00
|
|
|
extern void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask);
|
2008-04-19 04:45:16 +00:00
|
|
|
void vo_x11_fullscreen(struct vo *vo);
|
2008-04-20 23:50:40 +00:00
|
|
|
void vo_x11_setlayer(struct vo *vo, Window vo_window, int layer);
|
2008-04-20 06:34:27 +00:00
|
|
|
void vo_x11_uninit(struct vo *vo);
|
|
|
|
Colormap vo_x11_create_colormap(struct vo *vo, XVisualInfo *vinfo);
|
|
|
|
uint32_t vo_x11_set_equalizer(struct vo *vo, char *name, int value);
|
2002-10-29 20:27:47 +00:00
|
|
|
extern uint32_t vo_x11_get_equalizer(char *name, int *value);
|
2003-02-07 19:38:39 +00:00
|
|
|
extern void fstype_help(void);
|
2008-04-19 04:45:16 +00:00
|
|
|
void vo_x11_create_vo_window(struct vo *vo, XVisualInfo *vis,
|
|
|
|
int x, int y, unsigned int width, unsigned int height, int flags,
|
2007-06-27 10:26:13 +00:00
|
|
|
Colormap col_map, const char *classname, const char *title);
|
2008-04-20 20:29:28 +00:00
|
|
|
void vo_x11_clearwindow_part(struct vo *vo, Window vo_window,
|
2003-08-31 23:13:45 +00:00
|
|
|
int img_width, int img_height, int use_fs);
|
2008-04-20 23:18:28 +00:00
|
|
|
void vo_x11_clearwindow(struct vo *vo, Window vo_window);
|
2008-04-19 04:45:16 +00:00
|
|
|
void vo_x11_ontop(struct vo *vo);
|
2008-04-21 00:14:37 +00:00
|
|
|
void vo_x11_ewmh_fullscreen(struct vo_x11_state *x11, int action);
|
2002-05-14 23:44:35 +00:00
|
|
|
|
2001-03-03 21:47:37 +00:00
|
|
|
#endif
|
|
|
|
|
2008-04-20 06:34:27 +00:00
|
|
|
int vo_xv_set_eq(struct vo *vo, uint32_t xv_port, char * name, int value);
|
|
|
|
int vo_xv_get_eq(struct vo *vo, uint32_t xv_port, char * name, int *value);
|
2005-02-20 22:43:25 +00:00
|
|
|
|
2008-04-20 06:34:27 +00:00
|
|
|
int vo_xv_enable_vsync(struct vo *vo);
|
2005-06-30 10:16:35 +00:00
|
|
|
|
2008-04-20 06:34:27 +00:00
|
|
|
void vo_xv_get_max_img_dim(struct vo *vo, uint32_t * width, uint32_t * height);
|
2005-11-10 02:39:31 +00:00
|
|
|
|
2005-02-20 22:43:25 +00:00
|
|
|
/*** colorkey handling ***/
|
|
|
|
|
|
|
|
#define CK_METHOD_NONE 0 ///< no colorkey drawing
|
|
|
|
#define CK_METHOD_BACKGROUND 1 ///< set colorkey as window background
|
|
|
|
#define CK_METHOD_AUTOPAINT 2 ///< let xv draw the colorkey
|
|
|
|
#define CK_METHOD_MANUALFILL 3 ///< manually draw the colorkey
|
|
|
|
#define CK_SRC_USE 0 ///< use specified / default colorkey
|
|
|
|
#define CK_SRC_SET 1 ///< use and set specified / default colorkey
|
|
|
|
#define CK_SRC_CUR 2 ///< use current colorkey ( get it from xv )
|
|
|
|
|
2008-04-20 06:34:27 +00:00
|
|
|
int vo_xv_init_colorkey(struct vo *vo);
|
|
|
|
void vo_xv_draw_colorkey(struct vo *vo, int32_t x, int32_t y, int32_t w, int32_t h);
|
2008-04-21 00:43:03 +00:00
|
|
|
void xv_setup_colorkeyhandling(struct vo *vo, const char *ck_method_str, const char *ck_str);
|
2005-02-20 22:43:25 +00:00
|
|
|
|
|
|
|
/*** test functions for common suboptions ***/
|
|
|
|
int xv_test_ck( void * arg );
|
|
|
|
int xv_test_ckm( void * arg );
|
2003-07-01 21:37:20 +00:00
|
|
|
|
2001-08-31 21:18:22 +00:00
|
|
|
extern void vo_x11_putkey(int key);
|
2001-05-08 12:17:03 +00:00
|
|
|
|
2002-01-31 00:37:27 +00:00
|
|
|
#ifdef HAVE_XF86VM
|
2008-04-20 06:34:27 +00:00
|
|
|
void vo_vm_switch(struct vo *vo, uint32_t, uint32_t, int*, int*);
|
2008-04-20 23:18:28 +00:00
|
|
|
void vo_vm_close(struct vo *vo);
|
2002-01-31 00:37:27 +00:00
|
|
|
#endif
|
2002-03-07 17:50:25 +00:00
|
|
|
|
2008-04-20 06:34:27 +00:00
|
|
|
void update_xinerama_info(struct vo *vo);
|
2006-04-21 18:42:55 +00:00
|
|
|
|
2003-01-09 20:47:14 +00:00
|
|
|
int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return);
|
|
|
|
|
2008-04-19 04:45:16 +00:00
|
|
|
// Old VOs use incompatible function calls, translate them to new
|
|
|
|
// prototypes
|
|
|
|
#ifdef IS_OLD_VO
|
|
|
|
#define vo_x11_create_vo_window(...) vo_x11_create_vo_window(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_x11_fullscreen() vo_x11_fullscreen(global_vo)
|
|
|
|
#define vo_x11_ontop() vo_x11_ontop(global_vo)
|
2008-04-20 06:34:27 +00:00
|
|
|
#define vo_init() vo_init(global_vo)
|
|
|
|
#define vo_x11_ewmh_fullscreen(action) vo_x11_ewmh_fullscreen(global_vo->x11->display, action)
|
|
|
|
#define update_xinerama_info() update_xinerama_info(global_vo)
|
|
|
|
#define vo_x11_uninit() vo_x11_uninit(global_vo)
|
|
|
|
#define vo_x11_check_events(display) vo_x11_check_events(global_vo)
|
|
|
|
#define vo_x11_sizehint(...) vo_x11_sizehint(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_vm_switch(...) vo_vm_switch(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_x11_create_colormap(vinfo) vo_x11_create_colormap(global_vo, vinfo)
|
|
|
|
#define vo_x11_set_equalizer(...) vo_x11_set_equalizer(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_xv_set_eq(...) vo_xv_set_eq(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_xv_get_eq(...) vo_xv_get_eq(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_xv_enable_vsync() vo_xv_enable_vsync(global_vo)
|
|
|
|
#define vo_xv_get_max_img_dim(...) vo_xv_get_max_img_dim(global_vo, __VA_ARGS__)
|
|
|
|
#define vo_xv_init_colorkey() vo_xv_init_colorkey(global_vo)
|
|
|
|
#define vo_xv_draw_colorkey(...) vo_xv_draw_colorkey(global_vo, __VA_ARGS__)
|
2008-04-20 20:29:28 +00:00
|
|
|
#define vo_x11_clearwindow_part(display, ...) vo_x11_clearwindow_part(global_vo, __VA_ARGS__)
|
2008-04-20 23:18:28 +00:00
|
|
|
#define vo_vm_close(display) vo_vm_close(global_vo)
|
|
|
|
#define vo_x11_clearwindow(display, window) vo_x11_clearwindow(global_vo, window)
|
2008-04-20 23:50:40 +00:00
|
|
|
#define vo_x11_classhint(display, window, name) vo_x11_classhint(global_vo, window, name)
|
|
|
|
#define vo_x11_setlayer(display, window, layer) vo_x11_setlayer(global_vo, window, layer)
|
2008-04-21 00:43:03 +00:00
|
|
|
#define xv_setup_colorkeyhandling(a, b) xv_setup_colorkeyhandling(global_vo, a, b)
|
2008-04-20 06:34:27 +00:00
|
|
|
|
|
|
|
#define mDisplay global_vo->x11->display
|
2008-04-20 22:50:19 +00:00
|
|
|
#define vo_depthonscreen global_vo->x11->depthonscreen
|
2008-04-21 00:14:37 +00:00
|
|
|
#define vo_window global_vo->x11->window
|
2008-04-21 00:43:03 +00:00
|
|
|
#define xv_ck_info global_vo->x11->xv_ck_info
|
|
|
|
#define xv_colorkey global_vo->x11->xv_colorkey
|
|
|
|
#define xv_port global_vo->x11->xv_port
|
2008-04-21 01:19:43 +00:00
|
|
|
#define vo_gc global_vo->x11->vo_gc
|
2008-04-21 01:50:29 +00:00
|
|
|
#define vo_mouse_autohide global_vo->x11->vo_mouse_autohide
|
2008-04-21 01:59:00 +00:00
|
|
|
#define mRootWin global_vo->x11->rootwin
|
|
|
|
#define mScreen global_vo->x11->screen
|
|
|
|
#define mLocalDisplay global_vo->x11->display_is_local
|
2008-04-19 04:45:16 +00:00
|
|
|
#endif
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_X11_COMMON_H */
|