2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_X11_COMMON_H
|
|
|
|
#define MPLAYER_X11_COMMON_H
|
2002-03-07 18:50:25 +01:00
|
|
|
|
2002-03-08 21:14:08 +01:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2005-02-06 11:12:34 +01:00
|
|
|
#ifdef X11_FULLSCREEN
|
|
|
|
|
2003-02-07 20:38:39 +01: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 21:47:14 +01:00
|
|
|
|
2004-06-02 04:34:39 +02: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 21:47:14 +01:00
|
|
|
extern int metacity_hack;
|
2005-08-21 03:20:31 +02:00
|
|
|
|
2003-02-07 20:38:39 +01:00
|
|
|
extern int vo_fs_layer;
|
2002-05-06 17:05:07 +02:00
|
|
|
extern int vo_wm_type;
|
2003-02-07 20:38:39 +01:00
|
|
|
extern int vo_fs_type;
|
|
|
|
extern char** vo_fstype_list;
|
2001-03-03 22:47:37 +01:00
|
|
|
|
2001-06-01 00:32:58 +02:00
|
|
|
extern char *mDisplayName;
|
|
|
|
extern Display *mDisplay;
|
2001-10-24 19:04:08 +02:00
|
|
|
extern Window mRootWin;
|
2001-06-01 00:32:58 +02:00
|
|
|
extern int mScreen;
|
|
|
|
extern int mLocalDisplay;
|
|
|
|
|
2002-05-03 22:57:13 +02:00
|
|
|
extern int vo_mouse_autohide;
|
2002-04-16 19:41:29 +02:00
|
|
|
|
2002-05-08 18:41:44 +02:00
|
|
|
extern int vo_init( void );
|
|
|
|
extern void vo_uninit( void );
|
2002-06-13 02:26:17 +02:00
|
|
|
extern void vo_hidecursor ( Display* , Window );
|
2002-04-16 19:41:29 +02:00
|
|
|
extern void vo_showcursor( Display *disp, Window win );
|
2002-05-08 18:41:44 +02:00
|
|
|
extern void vo_x11_decoration( Display * vo_Display,Window w,int d );
|
|
|
|
extern void vo_x11_classhint( Display * display,Window window,char *name );
|
2004-11-01 21:24:37 +01:00
|
|
|
extern void vo_x11_nofs_sizepos(int x, int y, int width, int height);
|
2002-05-08 18:41:44 +02:00
|
|
|
extern void vo_x11_sizehint( int x, int y, int width, int height, int max );
|
|
|
|
extern int vo_x11_check_events(Display *mydisplay);
|
2002-08-09 19:43:49 +02:00
|
|
|
extern void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask);
|
2002-05-08 18:41:44 +02:00
|
|
|
extern void vo_x11_fullscreen( void );
|
2003-01-09 21:47:14 +01:00
|
|
|
extern void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer );
|
2006-02-09 15:08:03 +01:00
|
|
|
extern void vo_x11_uninit(void);
|
2002-10-29 21:27:47 +01:00
|
|
|
extern Colormap vo_x11_create_colormap(XVisualInfo *vinfo);
|
|
|
|
extern uint32_t vo_x11_set_equalizer(char *name, int value);
|
|
|
|
extern uint32_t vo_x11_get_equalizer(char *name, int *value);
|
2003-02-07 20:38:39 +01:00
|
|
|
extern void fstype_help(void);
|
2003-09-01 01:13:45 +02:00
|
|
|
extern Window vo_x11_create_smooth_window( Display *mDisplay, Window mRoot,
|
|
|
|
Visual *vis, int x, int y, unsigned int width, unsigned int height,
|
|
|
|
int depth, Colormap col_map);
|
2007-06-27 12:26:13 +02:00
|
|
|
extern void vo_x11_create_vo_window(XVisualInfo *vis, int x, int y,
|
|
|
|
unsigned int width, unsigned int height, int flags,
|
|
|
|
Colormap col_map, const char *classname, const char *title);
|
2003-09-01 01:13:45 +02:00
|
|
|
extern void vo_x11_clearwindow_part(Display *mDisplay, Window vo_window,
|
|
|
|
int img_width, int img_height, int use_fs);
|
2003-09-12 17:48:33 +02:00
|
|
|
extern void vo_x11_clearwindow( Display *mDisplay, Window vo_window );
|
2006-02-09 15:08:03 +01:00
|
|
|
extern void vo_x11_ontop(void);
|
2004-06-02 04:34:39 +02:00
|
|
|
extern void vo_x11_ewmh_fullscreen( int action );
|
2002-05-15 01:44:35 +02:00
|
|
|
|
2001-03-03 22:47:37 +01:00
|
|
|
#endif
|
|
|
|
|
2002-03-08 21:14:08 +01:00
|
|
|
extern Window vo_window;
|
|
|
|
extern GC vo_gc;
|
|
|
|
extern XSizeHints vo_hint;
|
2002-02-21 22:11:01 +01:00
|
|
|
|
2003-07-01 23:37:20 +02:00
|
|
|
#ifdef HAVE_XV
|
2005-02-20 23:43:25 +01:00
|
|
|
//XvPortID xv_port;
|
|
|
|
extern unsigned int xv_port;
|
|
|
|
|
2003-07-01 23:37:20 +02:00
|
|
|
extern int vo_xv_set_eq(uint32_t xv_port, char * name, int value);
|
|
|
|
extern int vo_xv_get_eq(uint32_t xv_port, char * name, int *value);
|
2005-02-20 23:43:25 +01:00
|
|
|
|
2007-04-01 23:59:54 +02:00
|
|
|
extern int vo_xv_enable_vsync(void);
|
2005-06-30 12:16:35 +02:00
|
|
|
|
2005-11-10 03:39:31 +01:00
|
|
|
extern void vo_xv_get_max_img_dim( uint32_t * width, uint32_t * height );
|
|
|
|
|
2005-02-20 23:43:25 +01:00
|
|
|
/*** colorkey handling ***/
|
|
|
|
typedef struct xv_ck_info_s
|
|
|
|
{
|
|
|
|
int method; ///< CK_METHOD_* constants
|
|
|
|
int source; ///< CK_SRC_* constants
|
|
|
|
} xv_ck_info_t;
|
|
|
|
|
|
|
|
#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 )
|
|
|
|
|
|
|
|
extern xv_ck_info_t xv_ck_info;
|
|
|
|
extern unsigned long xv_colorkey;
|
|
|
|
|
2007-04-01 23:59:54 +02:00
|
|
|
extern int vo_xv_init_colorkey(void);
|
2005-04-10 18:02:28 +02:00
|
|
|
extern void vo_xv_draw_colorkey(int32_t x, int32_t y, int32_t w, int32_t h);
|
2005-03-01 23:54:24 +01:00
|
|
|
extern void xv_setup_colorkeyhandling(char const * ck_method_str, char const * ck_str);
|
2005-02-20 23:43:25 +01:00
|
|
|
|
|
|
|
/*** test functions for common suboptions ***/
|
|
|
|
int xv_test_ck( void * arg );
|
|
|
|
int xv_test_ckm( void * arg );
|
2003-07-01 23:37:20 +02:00
|
|
|
#endif
|
|
|
|
|
2001-08-28 01:56:44 +02:00
|
|
|
extern void vo_setwindow( Window w,GC g );
|
2001-08-31 23:18:22 +02:00
|
|
|
extern void vo_x11_putkey(int key);
|
2001-05-08 14:17:03 +02:00
|
|
|
|
2001-04-10 02:00:04 +02:00
|
|
|
void saver_off( Display * );
|
|
|
|
void saver_on( Display * );
|
2002-01-05 09:49:46 +01:00
|
|
|
|
2002-01-31 01:37:27 +01:00
|
|
|
#ifdef HAVE_XF86VM
|
|
|
|
void vo_vm_switch(uint32_t, uint32_t, int*, int*);
|
|
|
|
void vo_vm_close(Display*);
|
|
|
|
#endif
|
2002-03-07 18:50:25 +01:00
|
|
|
|
2006-04-21 20:42:55 +02:00
|
|
|
void update_xinerama_info(void);
|
|
|
|
|
2003-01-09 21:47:14 +01:00
|
|
|
int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return);
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_X11_COMMON_H */
|