Mercurial > mplayer.hg
annotate libvo/x11_common.h @ 3696:dbdd943ed670
similar to 1.136, Cinepak decoder author addedTV input doesn't need --enable-tv anymore
author | jaf |
---|---|
date | Mon, 24 Dec 2001 10:20:09 +0000 |
parents | 712a46dff92d |
children | fc1db33734e7 |
rev | line source |
---|---|
32 | 1 |
2 #ifdef X11_FULLSCREEN | |
3 | |
4 extern int vo_depthonscreen; | |
5 extern int vo_screenwidth; | |
6 extern int vo_screenheight; | |
7 extern int vo_dwidth; | |
8 extern int vo_dheight; | |
9 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
10 extern char *mDisplayName; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
11 extern Display *mDisplay; |
2455 | 12 extern Window mRootWin; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
13 extern int mScreen; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
14 extern int mLocalDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
723
diff
changeset
|
15 |
32 | 16 int vo_init( void ); |
384 | 17 int vo_hidecursor ( Display* , Window ); |
32 | 18 void vo_x11_decoration( Display * vo_Display,Window w,int d ); |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
922
diff
changeset
|
19 void vo_x11_classhint( Display * display,Window window,char *name ); |
32 | 20 int vo_x11_check_events(Display *mydisplay); |
21 #endif | |
22 | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1137
diff
changeset
|
23 #ifdef HAVE_NEW_GUI |
723 | 24 extern Window vo_window; |
25 extern GC vo_gc; | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1137
diff
changeset
|
26 extern void vo_setwindow( Window w,GC g ); |
1746 | 27 extern void vo_setwindowsize( int w,int h ); |
723 | 28 extern int vo_xeventhandling; |
29 extern int vo_expose; | |
30 extern int vo_resize; | |
1811 | 31 extern void vo_x11_putkey(int key); |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1137
diff
changeset
|
32 #endif |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1137
diff
changeset
|
33 #ifdef HAVE_GUI |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1137
diff
changeset
|
34 extern Display * vo_display; |
723 | 35 #endif |
36 | |
324 | 37 void saver_off( Display * ); |
38 void saver_on( Display * ); |