/* * This file is part of MPlayer. * * MPlayer is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * MPlayer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with MPlayer; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */#ifndef MPLAYER_X11_COMMON_H#define MPLAYER_X11_COMMON_H#include <stdint.h>#include <X11/Xlib.h>#include <X11/Xutil.h>#include "config.h"#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)/* 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 */extern int metacity_hack;extern int vo_fs_layer;extern int vo_wm_type;extern int vo_fs_type;extern char** vo_fstype_list;extern char *mDisplayName;extern Display *mDisplay;extern Window mRootWin;extern int mScreen;extern int mLocalDisplay;extern int vo_mouse_autohide;extern int stop_xscreensaver;int vo_init( void );void vo_uninit( void );void vo_x11_decoration( Display * vo_Display,Window w,int d );void vo_x11_classhint( Display * display,Window window,const char *name );void vo_x11_nofs_sizepos(int x, int y, int width, int height);void vo_x11_sizehint( int x, int y, int width, int height, int max );int vo_x11_check_events(Display *mydisplay);void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask);int vo_x11_update_geometry(void);void vo_x11_fullscreen( void );void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer );void vo_x11_uninit(void);Colormap vo_x11_create_colormap(XVisualInfo *vinfo);uint32_t vo_x11_set_equalizer(const char *name, int value);uint32_t vo_x11_get_equalizer(const char *name, int *value);void fstype_help(void);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);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);void vo_x11_clearwindow_part(Display *mDisplay, Window vo_window, int img_width, int img_height, int use_fs);void vo_x11_clearwindow( Display *mDisplay, Window vo_window );void vo_x11_ontop(void);void vo_x11_border(void);void vo_x11_ewmh_fullscreen( Window win, int action );extern Window vo_window;extern GC vo_gc;extern XSizeHints vo_hint;// XVideo related declarationsextern unsigned int xv_port;int vo_xv_set_eq(uint32_t xv_port, const char * name, int value);int vo_xv_get_eq(uint32_t xv_port, const char * name, int *value);int vo_xv_enable_vsync(void);void vo_xv_get_max_img_dim( uint32_t * width, uint32_t * height );/*** 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;int vo_xv_init_colorkey(void);void vo_xv_draw_colorkey(int32_t x, int32_t y, int32_t w, int32_t h);void xv_setup_colorkeyhandling(char const * ck_method_str, char const * ck_str);/*** test functions for common suboptions ***/int xv_test_ck( void * arg );int xv_test_ckm( void * arg );void vo_setwindow( Window w,GC g );void vo_x11_putkey(int key);void xscreensaver_heartbeat(void);void saver_off( Display * );void saver_on( Display * );// XF86VM-related functionsvoid vo_vm_switch(void);void vo_vm_close(void);void update_xinerama_info(void);int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return);#endif /* MPLAYER_X11_COMMON_H */