2001-03-03 21:47:37 +00:00
|
|
|
|
2002-03-07 17:50:25 +00:00
|
|
|
#ifndef X11_COMMON_H
|
|
|
|
#define X11_COMMON_H
|
|
|
|
|
2002-03-08 20:14:08 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
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;
|
|
|
|
extern Display *mDisplay;
|
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;
|
|
|
|
|
2002-04-16 17:41:29 +00:00
|
|
|
extern int vo_mouse_timer_const;
|
2002-05-03 20:57:13 +00:00
|
|
|
extern int vo_mouse_autohide;
|
2002-04-16 17:41:29 +00:00
|
|
|
|
2002-05-08 16:41:44 +00:00
|
|
|
extern int vo_init( void );
|
|
|
|
extern void vo_uninit( void );
|
2002-06-13 00:26:17 +00:00
|
|
|
extern void vo_hidecursor ( Display* , Window );
|
2002-04-16 17:41:29 +00:00
|
|
|
extern void vo_showcursor( Display *disp, Window win );
|
2002-05-08 16:41:44 +00: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 20:24:37 +00:00
|
|
|
extern void vo_x11_nofs_sizepos(int x, int y, int width, int height);
|
2002-05-08 16:41:44 +00: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 17:43:49 +00:00
|
|
|
extern void vo_x11_selectinput_witherr(Display *display, Window w, long event_mask);
|
2002-05-08 16:41:44 +00:00
|
|
|
extern void vo_x11_fullscreen( void );
|
2003-01-09 20:47:14 +00:00
|
|
|
extern void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer );
|
2002-05-14 23:44:35 +00:00
|
|
|
extern void vo_x11_uninit();
|
2002-10-29 20:27:47 +00: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 19:38:39 +00:00
|
|
|
extern void fstype_help(void);
|
2003-08-31 23:13:45 +00: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);
|
|
|
|
extern void vo_x11_clearwindow_part(Display *mDisplay, Window vo_window,
|
|
|
|
int img_width, int img_height, int use_fs);
|
2003-09-12 15:48:33 +00:00
|
|
|
extern void vo_x11_clearwindow( Display *mDisplay, Window vo_window );
|
2003-11-30 16:36:10 +00:00
|
|
|
extern void vo_x11_ontop();
|
2004-06-02 02:34:39 +00:00
|
|
|
extern void vo_x11_ewmh_fullscreen( int action );
|
2002-05-14 23:44:35 +00:00
|
|
|
|
2001-03-03 21:47:37 +00:00
|
|
|
#endif
|
|
|
|
|
2002-03-08 20:14:08 +00:00
|
|
|
extern Window vo_window;
|
|
|
|
extern GC vo_gc;
|
|
|
|
extern XSizeHints vo_hint;
|
2002-02-21 21:11:01 +00:00
|
|
|
|
2003-07-01 21:37:20 +00:00
|
|
|
#ifdef HAVE_XV
|
2005-02-20 22:43:25 +00:00
|
|
|
//XvPortID xv_port;
|
|
|
|
extern unsigned int xv_port;
|
|
|
|
|
2003-07-01 21:37:20 +00: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 22:43:25 +00:00
|
|
|
|
2005-06-30 10:16:35 +00:00
|
|
|
extern int vo_xv_enable_vsync();
|
|
|
|
|
2005-02-20 22:43:25 +00: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;
|
|
|
|
|
|
|
|
extern int vo_xv_init_colorkey();
|
2005-04-10 16:02:28 +00:00
|
|
|
extern void vo_xv_draw_colorkey(int32_t x, int32_t y, int32_t w, int32_t h);
|
2005-03-01 22:54:24 +00:00
|
|
|
extern void xv_setup_colorkeyhandling(char const * ck_method_str, char const * 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
|
|
|
#endif
|
|
|
|
|
2001-08-27 23:56:44 +00:00
|
|
|
#ifdef HAVE_NEW_GUI
|
|
|
|
extern void vo_setwindow( Window w,GC g );
|
2001-08-31 21:18:22 +00:00
|
|
|
extern void vo_x11_putkey(int key);
|
2001-08-27 23:56:44 +00:00
|
|
|
#endif
|
2001-05-08 12:17:03 +00:00
|
|
|
|
2001-04-10 00:00:04 +00:00
|
|
|
void saver_off( Display * );
|
|
|
|
void saver_on( Display * );
|
2002-01-05 08:49:46 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_XINERAMA
|
|
|
|
void vo_x11_xinerama_move(Display *dsp, Window w);
|
|
|
|
#endif
|
2002-01-31 00:37:27 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_XF86VM
|
|
|
|
void vo_vm_switch(uint32_t, uint32_t, int*, int*);
|
|
|
|
void vo_vm_close(Display*);
|
|
|
|
#endif
|
2002-03-07 17:50:25 +00:00
|
|
|
|
2003-01-09 20:47:14 +00:00
|
|
|
int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return);
|
|
|
|
|
2002-03-07 17:50:25 +00:00
|
|
|
#endif
|
2002-09-03 18:10:42 +00:00
|
|
|
|