Mercurial > mplayer.hg
annotate libvo/x11_common.c @ 5672:1f8b34f1e7c0
ifdef reading dvd args, without it non-dvd compilation fails.
(correct me if i'm wrong)
author | eyck |
---|---|
date | Thu, 18 Apr 2002 14:03:50 +0000 |
parents | f066c0be8d42 |
children | 104fce2b92b6 |
rev | line source |
---|---|
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1 |
32 | 2 #include <stdio.h> |
3 #include <stdlib.h> | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
4 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
5 #include "config.h" |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
6 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
7 #ifdef X11_FULLSCREEN |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
8 |
440
d19a3da6ac13
Pontscho's mixer, select, and hell-a-lot-of-stuff patch ;)
gabucino
parents:
416
diff
changeset
|
9 #include <string.h> |
32 | 10 #include <unistd.h> |
11 #include <sys/mman.h> | |
12 | |
13 #include "video_out.h" | |
14 | |
324 | 15 #include <X11/Xmd.h> |
32 | 16 #include <X11/Xlib.h> |
17 #include <X11/Xutil.h> | |
18 #include <X11/Xatom.h> | |
19 | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
20 #ifdef HAVE_XDPMS |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
21 #include <X11/extensions/dpms.h> |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
22 #endif |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
23 |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
24 #ifdef HAVE_XINERAMA |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
25 #include <X11/extensions/Xinerama.h> |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
26 #endif |
1732 | 27 |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
28 #ifdef HAVE_XF86VM |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
29 #include <X11/extensions/xf86vmode.h> |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
30 #endif |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
31 |
4658 | 32 #ifdef HAVE_NEW_INPUT |
33 #include "../input/input.h" | |
34 #include "../input/mouse.h" | |
35 #endif | |
36 | |
4798 | 37 #ifdef HAVE_NEW_GUI |
38 #include "../Gui/interface.h" | |
39 #endif | |
40 | |
1732 | 41 /* |
42 * If SCAN_VISUALS is defined, vo_init() scans all available TrueColor | |
43 * visuals for the 'best' visual for MPlayer video display. Note that | |
44 * the 'best' visual might be different from the default visual that | |
45 * is in use on the root window of the display/screen. | |
46 */ | |
47 #define SCAN_VISUALS | |
48 | |
49 | |
4812 | 50 extern int verbose; |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1447
diff
changeset
|
51 |
324 | 52 static int dpms_disabled=0; |
53 static int timeout_save=0; | |
54 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
55 char* mDisplayName=NULL; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
56 Display* mDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
57 Window mRootWin; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
58 int mScreen; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
59 int mLocalDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
60 |
3830 | 61 /* output window id */ |
62 int WinID=-1; | |
384 | 63 |
4017 | 64 #ifdef HAVE_XINERAMA |
65 int xinerama_screen = 0; | |
66 int xinerama_x = 0; | |
67 int xinerama_y = 0; | |
68 #endif | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
69 #ifdef HAVE_XF86VM |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
70 XF86VidModeModeInfo **vidmodes=NULL; |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
71 XF86VidModeModeLine modeline; |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
72 #endif |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
73 |
384 | 74 void vo_hidecursor ( Display *disp , Window win ) |
75 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
76 Cursor no_ptr; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
77 Pixmap bm_no; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
78 XColor black,dummy; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
79 Colormap colormap; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
80 static unsigned char bm_no_data[] = { 0,0,0,0, 0,0,0,0 }; |
3954 | 81 |
82 if(WinID==0) return; // do not hide, if we're playing at rootwin | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
83 |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
84 colormap = DefaultColormap(disp,DefaultScreen(disp)); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
85 XAllocNamedColor(disp,colormap,"black",&black,&dummy); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
86 bm_no = XCreateBitmapFromData(disp, win, bm_no_data, 8,8); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
87 no_ptr=XCreatePixmapCursor(disp, bm_no, bm_no,&black, &black,0, 0); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
88 XDefineCursor(disp,win,no_ptr); |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
89 XFreeCursor( disp,no_ptr ); |
384 | 90 } |
91 | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
92 void vo_showcursor( Display *disp, Window win ) |
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
93 { XDefineCursor( disp,win,0 ); } |
384 | 94 |
1732 | 95 #ifdef SCAN_VISUALS |
96 /* | |
97 * Scan the available visuals on this Display/Screen. Try to find | |
98 * the 'best' available TrueColor visual that has a decent color | |
99 * depth (at least 15bit). If there are multiple visuals with depth | |
100 * >= 15bit, we prefer visuals with a smaller color depth. | |
101 */ | |
102 int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return) | |
103 { | |
104 XVisualInfo visual_tmpl; | |
105 XVisualInfo *visuals; | |
106 int nvisuals, i; | |
107 int bestvisual = -1; | |
108 int bestvisual_depth = -1; | |
109 | |
110 visual_tmpl.screen = screen; | |
111 visual_tmpl.class = TrueColor; | |
112 visuals = XGetVisualInfo(dpy, | |
113 VisualScreenMask | VisualClassMask, &visual_tmpl, | |
114 &nvisuals); | |
115 if (visuals != NULL) { | |
116 for (i = 0; i < nvisuals; i++) { | |
117 if (verbose) | |
118 printf("vo: X11 truecolor visual %#x, depth %d, R:%lX G:%lX B:%lX\n", | |
119 visuals[i].visualid, visuals[i].depth, | |
120 visuals[i].red_mask, visuals[i].green_mask, | |
121 visuals[i].blue_mask); | |
122 /* | |
123 * save the visual index and it's depth, if this is the first | |
124 * truecolor visul, or a visual that is 'preferred' over the | |
125 * previous 'best' visual | |
126 */ | |
127 if (bestvisual_depth == -1 | |
128 || (visuals[i].depth >= 15 | |
129 && ( visuals[i].depth < bestvisual_depth | |
130 || bestvisual_depth < 15))) { | |
131 bestvisual = i; | |
132 bestvisual_depth = visuals[i].depth; | |
133 } | |
134 } | |
135 | |
136 if (bestvisual != -1 && visual_return != NULL) | |
137 *visual_return = visuals[bestvisual].visual; | |
138 | |
139 XFree(visuals); | |
140 } | |
141 return bestvisual_depth; | |
142 } | |
143 #endif | |
144 | |
4742 | 145 static void x11_errorhandler(Display *display, XErrorEvent *event) |
146 { | |
147 #define MSGLEN 60 | |
148 char msg[MSGLEN]; | |
149 | |
4812 | 150 XGetErrorText(display, event->error_code, (char *)&msg, MSGLEN); |
4742 | 151 |
152 printf("X11 error: %s\n", msg); | |
153 | |
154 if (verbose) | |
155 { | |
156 printf("Type: %x, display: %x, resourceid: %x, serial: %x\n", | |
157 event->type, event->display, event->resourceid, event->serial); | |
158 printf("Error code: %x, request code: %x, minor code: %x\n", | |
159 event->error_code, event->request_code, event->minor_code); | |
160 } | |
161 | |
162 exit_player("X11 error"); | |
163 #undef MSGLEN | |
164 } | |
1732 | 165 |
32 | 166 int vo_init( void ) |
167 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
168 // int mScreen; |
1732 | 169 int depth, bpp; |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
170 unsigned int mask; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
171 // char * DisplayName = ":0.0"; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
172 // Display * mDisplay; |
1732 | 173 XImage * mXImage = NULL; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
174 // Window mRootWin; |
1732 | 175 XWindowAttributes attribs; |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
176 char* dispName; |
32 | 177 |
178 if(vo_depthonscreen) return 1; // already called | |
179 | |
4812 | 180 XSetErrorHandler(x11_errorhandler); |
181 | |
182 #if 0 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
183 if (!mDisplayName) |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
184 if (!(mDisplayName=getenv("DISPLAY"))) |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
185 mDisplayName=strdup(":0.0"); |
4812 | 186 #else |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
187 dispName = XDisplayName(mDisplayName); |
4812 | 188 #endif |
189 | |
190 if (verbose) | |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
191 printf("X11 opening display: %s\n", dispName); |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
192 |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
193 mDisplay=XOpenDisplay(dispName); |
32 | 194 if ( !mDisplay ) |
195 { | |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
196 printf( "vo: couldn't open the X11 display (%s)!\n",dispName ); |
32 | 197 return 0; |
198 } | |
199 mScreen=DefaultScreen( mDisplay ); // Screen ID. | |
200 mRootWin=RootWindow( mDisplay,mScreen );// Root window ID. | |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
201 |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
202 #ifdef HAVE_XINERAMA |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
203 if(XineramaIsActive(mDisplay)) |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
204 { |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
205 XineramaScreenInfo *screens; |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
206 int num_screens; |
3990 | 207 |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
208 screens = XineramaQueryScreens(mDisplay, &num_screens); |
4017 | 209 if(xinerama_screen >= num_screens) xinerama_screen = 0; |
3461
6b4ff1eb79bf
xinerama: allow to override xinerama screen_w/screen_h and setting size of screen where the window is placed
alex
parents:
2364
diff
changeset
|
210 if (! vo_screenwidth) |
4017 | 211 vo_screenwidth=screens[xinerama_screen].width; |
3461
6b4ff1eb79bf
xinerama: allow to override xinerama screen_w/screen_h and setting size of screen where the window is placed
alex
parents:
2364
diff
changeset
|
212 if (! vo_screenheight) |
4017 | 213 vo_screenheight=screens[xinerama_screen].height; |
214 xinerama_x = screens[xinerama_screen].x_org; | |
215 xinerama_y = screens[xinerama_screen].y_org; | |
216 | |
3990 | 217 XFree(screens); |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
218 } |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
219 else |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
220 #endif |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
221 #ifdef HAVE_XF86VM |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
222 { |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
223 int clock; |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
224 XF86VidModeGetModeLine( mDisplay,mScreen,&clock ,&modeline ); |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
225 if ( !vo_screenwidth ) vo_screenwidth=modeline.hdisplay; |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
226 if ( !vo_screenheight ) vo_screenheight=modeline.vdisplay; |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
227 } |
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
228 #endif |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
229 { |
2364 | 230 if (! vo_screenwidth) |
231 vo_screenwidth=DisplayWidth( mDisplay,mScreen ); | |
232 if (! vo_screenheight) | |
233 vo_screenheight=DisplayHeight( mDisplay,mScreen ); | |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
234 } |
1732 | 235 // get color depth (from root window, or the best visual): |
32 | 236 XGetWindowAttributes(mDisplay, mRootWin, &attribs); |
1732 | 237 depth=attribs.depth; |
238 | |
239 #ifdef SCAN_VISUALS | |
240 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) { | |
241 Visual *visual; | |
242 | |
243 depth = vo_find_depth_from_visuals(mDisplay, mScreen, &visual); | |
244 if (depth != -1) | |
245 mXImage=XCreateImage(mDisplay, visual, depth, ZPixmap, | |
246 0, NULL, 1, 1, 8, 1); | |
247 } else | |
248 #endif | |
249 mXImage=XGetImage( mDisplay,mRootWin,0,0,1,1,AllPlanes,ZPixmap ); | |
250 | |
251 vo_depthonscreen = depth; // display depth on screen | |
252 | |
253 // get bits/pixel from XImage structure: | |
254 if (mXImage == NULL) { | |
255 mask = 0; | |
256 } else { | |
257 /* | |
258 * for the depth==24 case, the XImage structures might use | |
259 * 24 or 32 bits of data per pixel. The global variable | |
260 * vo_depthonscreen stores the amount of data per pixel in the | |
261 * XImage structure! | |
262 * | |
263 * Maybe we should rename vo_depthonscreen to (or add) vo_bpp? | |
264 */ | |
32 | 265 bpp=mXImage->bits_per_pixel; |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
266 if((vo_depthonscreen+7)/8 != (bpp+7)/8) vo_depthonscreen=bpp; // by A'rpi |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
267 mask=mXImage->red_mask|mXImage->green_mask|mXImage->blue_mask; |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1447
diff
changeset
|
268 if(verbose) |
1732 | 269 printf("vo: X11 color mask: %X (R:%lX G:%lX B:%lX)\n", |
270 mask,mXImage->red_mask,mXImage->green_mask,mXImage->blue_mask); | |
4181 | 271 XDestroyImage( mXImage ); |
1732 | 272 } |
273 if(((vo_depthonscreen+7)/8)==2){ | |
274 if(mask==0x7FFF) vo_depthonscreen=15; else | |
275 if(mask==0xFFFF) vo_depthonscreen=16; | |
276 } | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
277 // XCloseDisplay( mDisplay ); |
1447
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
278 /* slightly improved local display detection AST */ |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
279 if ( strncmp(dispName, "unix:", 5) == 0) |
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
280 dispName += 4; |
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
281 else if ( strncmp(dispName, "localhost:", 10) == 0) |
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
282 dispName += 9; |
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
283 if (*dispName==':') mLocalDisplay=1; else mLocalDisplay=0; |
1732 | 284 printf("vo: X11 running at %dx%d with depth %d and %d bits/pixel (\"%s\" => %s display)\n", |
285 vo_screenwidth,vo_screenheight, | |
286 depth, vo_depthonscreen, | |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
287 dispName,mLocalDisplay?"local":"remote"); |
4742 | 288 |
32 | 289 return 1; |
290 } | |
291 | |
4436 | 292 |
32 | 293 #include "../linux/keycodes.h" |
294 #include "wskeys.h" | |
295 | |
296 extern void mplayer_put_key(int code); | |
297 | |
298 void vo_x11_putkey(int key){ | |
299 switch ( key ) | |
300 { | |
301 case wsLeft: mplayer_put_key(KEY_LEFT); break; | |
302 case wsRight: mplayer_put_key(KEY_RIGHT); break; | |
303 case wsUp: mplayer_put_key(KEY_UP); break; | |
304 case wsDown: mplayer_put_key(KEY_DOWN); break; | |
305 case wsSpace: mplayer_put_key(' '); break; | |
306 case wsEscape: mplayer_put_key(KEY_ESC); break; | |
307 case wsEnter: mplayer_put_key(KEY_ENTER); break; | |
651 | 308 case wsPageUp: mplayer_put_key(KEY_PAGE_UP); break; |
309 case wsPageDown: mplayer_put_key(KEY_PAGE_DOWN); break; | |
32 | 310 case wsq: |
311 case wsQ: mplayer_put_key('q'); break; | |
312 case wsp: | |
313 case wsP: mplayer_put_key('p'); break; | |
314 case wsMinus: | |
315 case wsGrayMinus: mplayer_put_key('-'); break; | |
316 case wsPlus: | |
317 case wsGrayPlus: mplayer_put_key('+'); break; | |
464 | 318 case wsGrayMul: |
319 case wsMul: mplayer_put_key('*'); break; | |
320 case wsGrayDiv: | |
321 case wsDiv: mplayer_put_key('/'); break; | |
3490 | 322 case wsLess: mplayer_put_key('<'); break; |
323 case wsMore: mplayer_put_key('>'); break; | |
516 | 324 case wsm: |
325 case wsM: mplayer_put_key('m'); break; | |
655 | 326 case wso: |
327 case wsO: mplayer_put_key('o'); break; | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1456
diff
changeset
|
328 default: if((key>='a' && key<='z')||(key>='A' && key<='Z')|| |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1456
diff
changeset
|
329 (key>='0' && key<='9')) mplayer_put_key(key); |
32 | 330 } |
369 | 331 |
32 | 332 } |
333 | |
334 | |
335 // ----- Motif header: ------- | |
336 | |
1236 | 337 #define MWM_HINTS_FUNCTIONS (1L << 0) |
338 #define MWM_HINTS_DECORATIONS (1L << 1) | |
339 #define MWM_HINTS_INPUT_MODE (1L << 2) | |
340 #define MWM_HINTS_STATUS (1L << 3) | |
341 | |
342 #define MWM_FUNC_ALL (1L << 0) | |
343 #define MWM_FUNC_RESIZE (1L << 1) | |
344 #define MWM_FUNC_MOVE (1L << 2) | |
345 #define MWM_FUNC_MINIMIZE (1L << 3) | |
346 #define MWM_FUNC_MAXIMIZE (1L << 4) | |
347 #define MWM_FUNC_CLOSE (1L << 5) | |
348 | |
349 #define MWM_DECOR_ALL (1L << 0) | |
350 #define MWM_DECOR_BORDER (1L << 1) | |
351 #define MWM_DECOR_RESIZEH (1L << 2) | |
352 #define MWM_DECOR_TITLE (1L << 3) | |
353 #define MWM_DECOR_MENU (1L << 4) | |
354 #define MWM_DECOR_MINIMIZE (1L << 5) | |
355 #define MWM_DECOR_MAXIMIZE (1L << 6) | |
356 | |
357 #define MWM_INPUT_MODELESS 0 | |
358 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1 | |
359 #define MWM_INPUT_SYSTEM_MODAL 2 | |
360 #define MWM_INPUT_FULL_APPLICATION_MODAL 3 | |
361 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL | |
362 | |
363 #define MWM_TEAROFF_WINDOW (1L<<0) | |
32 | 364 |
365 typedef struct | |
366 { | |
367 long flags; | |
368 long functions; | |
369 long decorations; | |
370 long input_mode; | |
1236 | 371 long state; |
32 | 372 } MotifWmHints; |
373 | |
374 extern MotifWmHints vo_MotifWmHints; | |
375 extern Atom vo_MotifHints; | |
376 extern int vo_depthonscreen; | |
377 extern int vo_screenwidth; | |
378 extern int vo_screenheight; | |
379 | |
380 static MotifWmHints vo_MotifWmHints; | |
381 static Atom vo_MotifHints = None; | |
382 | |
1266 | 383 // Note: always d==0 ! |
32 | 384 void vo_x11_decoration( Display * vo_Display,Window w,int d ) |
385 { | |
1266 | 386 |
387 if(vo_fsmode&1){ | |
388 XSetWindowAttributes attr; | |
389 attr.override_redirect = True; | |
390 XChangeWindowAttributes(vo_Display, w, CWOverrideRedirect, &attr); | |
4437 | 391 // XMapWindow(vo_Display, w); |
1266 | 392 } |
393 | |
1415 | 394 if(vo_fsmode&8){ |
395 XSetTransientForHint (vo_Display, w, RootWindow(vo_Display,mScreen)); | |
396 } | |
397 | |
32 | 398 vo_MotifHints=XInternAtom( vo_Display,"_MOTIF_WM_HINTS",0 ); |
399 if ( vo_MotifHints != None ) | |
400 { | |
1236 | 401 memset( &vo_MotifWmHints,0,sizeof( MotifWmHints ) ); |
402 vo_MotifWmHints.flags=MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS; | |
4993 | 403 if ( d ) |
404 { | |
405 vo_MotifWmHints.functions=MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE | MWM_FUNC_MAXIMIZE; | |
406 d=MWM_DECOR_ALL; | |
407 } | |
408 #if 0 | |
1266 | 409 vo_MotifWmHints.decorations=d|((vo_fsmode&2)?0:MWM_DECOR_MENU); |
4993 | 410 #else |
411 vo_MotifWmHints.decorations=d|((vo_fsmode&2)?MWM_DECOR_MENU:0); | |
412 #endif | |
32 | 413 XChangeProperty( vo_Display,w,vo_MotifHints,vo_MotifHints,32, |
1266 | 414 PropModeReplace,(unsigned char *)&vo_MotifWmHints,(vo_fsmode&4)?4:5 ); |
32 | 415 } |
416 } | |
417 | |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
418 void vo_x11_classhint( Display * display,Window window,char *name ){ |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
419 XClassHint wmClass; |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
420 wmClass.res_name = name; |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
421 wmClass.res_class = "MPlayer"; |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
422 XSetClassHint(display,window,&wmClass); |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
423 } |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
424 |
4993 | 425 Window vo_window = None; |
426 GC vo_gc; | |
427 XSizeHints vo_hint; | |
4795 | 428 |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
429 #ifdef HAVE_NEW_GUI |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
430 void vo_setwindow( Window w,GC g ) { |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
431 vo_window=w; vo_gc=g; |
1746 | 432 } |
723 | 433 #endif |
434 | |
4437 | 435 int vo_x11_uninit(Display *display, Window window) |
436 { | |
4742 | 437 XSetErrorHandler(NULL); |
5658 | 438 vo_showcursor( display,window ); |
4742 | 439 |
4437 | 440 #ifdef HAVE_NEW_GUI |
441 /* destroy window only if it's not controlled by GUI */ | |
442 if (vo_window == None) | |
443 #endif | |
444 { | |
445 /* and -wid is set */ | |
446 if (!(WinID > 0)) | |
447 XDestroyWindow(display, window); | |
4438
e01ee848935f
grr, 10l. vo_x11_uninit: close display only if window not created by GUI
alex
parents:
4437
diff
changeset
|
448 XCloseDisplay(display); |
4815
178b524e5213
Bugfix in x11_common.c mainly. Don't screw up the display name,
albeu
parents:
4812
diff
changeset
|
449 vo_depthonscreen = 0; |
4437 | 450 } |
451 return(1); | |
452 } | |
453 | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
454 int vo_mouse_timer_const = 30; |
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
455 static int vo_mouse_counter = 30; |
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
456 |
32 | 457 int vo_x11_check_events(Display *mydisplay){ |
458 int ret=0; | |
459 XEvent Event; | |
460 char buf[100]; | |
461 KeySym keySym; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by Jrgen Keil <jk@tools.de>
arpi_esp
parents:
922
diff
changeset
|
462 static XComposeStatus stat; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
463 |
32 | 464 // unsigned long vo_KeyTable[512]; |
465 | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
466 if ( --vo_mouse_counter == 0 ) vo_hidecursor( mydisplay,vo_window ); |
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
467 |
4795 | 468 while ( XPending( mydisplay ) ) |
469 { | |
470 XNextEvent( mydisplay,&Event ); | |
4798 | 471 #ifdef HAVE_NEW_GUI |
5061 | 472 if ( use_gui ) |
473 { | |
474 guiGetEvent( 0,(char*)&Event ); | |
475 if ( vo_window != Event.xany.window ) continue; | |
476 } | |
4798 | 477 #endif |
4795 | 478 switch( Event.type ) |
479 { | |
480 case Expose: | |
481 ret|=VO_EVENT_EXPOSE; | |
482 break; | |
483 case ConfigureNotify: | |
484 vo_dwidth=Event.xconfigure.width; | |
485 vo_dheight=Event.xconfigure.height; | |
4812 | 486 #if 0 |
487 /* when resizing, x and y are zero :( */ | |
488 vo_dx=Event.xconfigure.x; | |
489 vo_dy=Event.xconfigure.y; | |
490 #else | |
491 { | |
492 Window root; | |
493 int foo; | |
494 XGetGeometry(mydisplay, vo_window, &root, &foo, &foo, | |
495 &foo/*width*/, &foo/*height*/, &foo, &foo); | |
496 XTranslateCoordinates(mydisplay, vo_window, root, 0, 0, | |
497 &vo_dx, &vo_dy, (Window *)&foo); | |
498 } | |
499 #endif | |
500 if (verbose) | |
501 printf("X11 Window %dx%d-%dx%d\n", vo_dx, vo_dy, vo_dwidth, vo_dheight); | |
4795 | 502 ret|=VO_EVENT_RESIZE; |
503 break; | |
504 case KeyPress: | |
4974 | 505 { |
506 int key; | |
507 XLookupString( &Event.xkey,buf,sizeof(buf),&keySym,&stat ); | |
508 key=( (keySym&0xff00) != 0?( (keySym&0x00ff) + 256 ):( keySym ) ); | |
509 #ifdef HAVE_NEW_GUI | |
510 if ( ( use_gui )&&( key == wsEnter ) ) break; | |
511 #endif | |
512 vo_x11_putkey( key ); | |
513 ret|=VO_EVENT_KEYPRESS; | |
514 } | |
4795 | 515 break; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
516 case MotionNotify: |
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
517 vo_showcursor( mydisplay,vo_window ); vo_mouse_counter=vo_mouse_timer_const; |
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
518 break; |
4658 | 519 #ifdef HAVE_NEW_INPUT |
4795 | 520 case ButtonPress: |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
521 vo_showcursor( mydisplay,vo_window ); vo_mouse_counter=vo_mouse_timer_const; |
4795 | 522 // Ignore mouse whell press event |
5656
70031f0cc4d2
Bug fix in mouse button handling for 2 scroller (I hope it work
albeu
parents:
5651
diff
changeset
|
523 if(Event.xbutton.button > 3) { |
70031f0cc4d2
Bug fix in mouse button handling for 2 scroller (I hope it work
albeu
parents:
5651
diff
changeset
|
524 mplayer_put_key(MOUSE_BTN0+Event.xbutton.button-1); |
70031f0cc4d2
Bug fix in mouse button handling for 2 scroller (I hope it work
albeu
parents:
5651
diff
changeset
|
525 break; |
70031f0cc4d2
Bug fix in mouse button handling for 2 scroller (I hope it work
albeu
parents:
5651
diff
changeset
|
526 } |
5062 | 527 #ifdef HAVE_NEW_GUI |
528 // Ignor mouse button 1 - 3 under gui | |
529 if ( use_gui && ( Event.xbutton.button >= 1 )&&( Event.xbutton.button <= 3 ) ) break; | |
530 #endif | |
4795 | 531 mplayer_put_key((MOUSE_BTN0+Event.xbutton.button-1)|MP_KEY_DOWN); |
532 break; | |
533 case ButtonRelease: | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
534 vo_showcursor( mydisplay,vo_window ); vo_mouse_counter=vo_mouse_timer_const; |
5062 | 535 #ifdef HAVE_NEW_GUI |
536 // Ignor mouse button 1 - 3 under gui | |
537 if ( use_gui && ( Event.xbutton.button >= 1 )&&( Event.xbutton.button <= 3 ) ) break; | |
538 #endif | |
4795 | 539 mplayer_put_key(MOUSE_BTN0+Event.xbutton.button-1); |
540 break; | |
4658 | 541 #endif |
723 | 542 } |
4795 | 543 } |
32 | 544 |
545 return ret; | |
546 } | |
547 | |
4993 | 548 void vo_x11_sizehint( int x, int y, int width, int height ) |
549 { | |
550 vo_hint.flags=PPosition | PSize | PWinGravity; | |
551 vo_hint.x=x; vo_hint.y=y; vo_hint.width=width; vo_hint.height=height; | |
552 vo_hint.win_gravity=StaticGravity; | |
553 XSetWMNormalHints( mDisplay,vo_window,&vo_hint ); | |
554 } | |
555 | |
4981 | 556 void vo_x11_fullscreen( void ) |
557 { | |
558 XUnmapWindow( mDisplay,vo_window ); | |
559 if ( !vo_fs ) | |
560 { | |
561 vo_fs=VO_TRUE; | |
562 vo_old_x=vo_dx; vo_old_y=vo_dy; vo_old_width=vo_dwidth; vo_old_height=vo_dheight; | |
5061 | 563 // { |
564 // Window root; int foo, foo2; | |
4993 | 565 // XGetGeometry( mDisplay,vo_window,&root,&vo_old_x,&vo_old_y,&vo_old_width,vo_old_height,&foo,&foo2 ); |
566 // XTranslateCoordinates( mDisplay,vo_window,root,0,0,&vo_old_x,&vo_old_y,(Window *)&foo); | |
5061 | 567 // } |
4981 | 568 vo_dx=0; vo_dy=0; vo_dwidth=vo_screenwidth; vo_dheight=vo_screenheight; |
569 vo_x11_decoration( mDisplay,vo_window,0 ); | |
570 } | |
571 else | |
572 { | |
573 vo_fs=VO_FALSE; | |
574 vo_dx=vo_old_x; vo_dy=vo_old_y; vo_dwidth=vo_old_width; vo_dheight=vo_old_height; | |
575 vo_x11_decoration( mDisplay,vo_window,1 ); | |
576 } | |
4993 | 577 vo_x11_sizehint( vo_dx,vo_dy,vo_dwidth,vo_dheight ); |
4981 | 578 XMoveResizeWindow( mDisplay,vo_window,vo_dx,vo_dy,vo_dwidth,vo_dheight ); |
4993 | 579 XMapWindow( mDisplay,vo_window ); |
580 XSync( mDisplay,False ); | |
4981 | 581 } |
582 | |
324 | 583 void saver_on(Display *mDisplay) { |
584 | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
585 #ifdef HAVE_XDPMS |
324 | 586 int nothing; |
587 if (dpms_disabled) | |
588 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
589 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
590 { |
741 | 591 if (!DPMSEnable(mDisplay)) { // restoring power saving settings |
592 printf("DPMS not available?\n"); | |
593 } else { | |
594 // DPMS does not seem to be enabled unless we call DPMSInfo | |
595 BOOL onoff; | |
596 CARD16 state; | |
597 DPMSInfo(mDisplay, &state, &onoff); | |
598 if (onoff) { | |
599 printf ("Successfully enabled DPMS\n"); | |
600 } else { | |
601 printf ("Could not enable DPMS\n"); | |
602 } | |
603 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
604 } |
324 | 605 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
606 #endif |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
607 |
324 | 608 if (timeout_save) |
609 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
610 int dummy, interval, prefer_blank, allow_exp; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
611 XGetScreenSaver(mDisplay, &dummy, &interval, &prefer_blank, &allow_exp); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
612 XSetScreenSaver(mDisplay, timeout_save, interval, prefer_blank, allow_exp); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
613 XGetScreenSaver(mDisplay, &timeout_save, &interval, &prefer_blank, &allow_exp); |
324 | 614 } |
615 | |
616 } | |
617 | |
618 void saver_off(Display *mDisplay) { | |
619 | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
620 int interval, prefer_blank, allow_exp; |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
621 #ifdef HAVE_XDPMS |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
622 int nothing; |
324 | 623 |
624 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) | |
625 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
626 BOOL onoff; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
627 CARD16 state; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
628 DPMSInfo(mDisplay, &state, &onoff); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
629 if (onoff) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
630 { |
741 | 631 Status stat; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
632 printf ("Disabling DPMS\n"); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
633 dpms_disabled=1; |
741 | 634 stat = DPMSDisable(mDisplay); // monitor powersave off |
635 printf ("stat: %d\n", stat); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
636 } |
324 | 637 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
638 #endif |
324 | 639 XGetScreenSaver(mDisplay, &timeout_save, &interval, &prefer_blank, &allow_exp); |
640 if (timeout_save) | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
641 XSetScreenSaver(mDisplay, 0, interval, prefer_blank, allow_exp); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
642 // turning off screensaver |
326 | 643 } |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
644 |
3990 | 645 |
646 | |
647 #ifdef HAVE_XINERAMA | |
648 void vo_x11_xinerama_move(Display *dsp, Window w) | |
649 { | |
650 if(XineramaIsActive(dsp)) | |
651 { | |
4017 | 652 /* printf("XXXX Xinerama screen: x: %hd y: %hd\n",xinerama_x,xinerama_y); */ |
653 XMoveWindow(dsp,w,xinerama_x,xinerama_y); | |
3990 | 654 } |
655 } | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
656 #endif |
3990 | 657 |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
658 #ifdef HAVE_XF86VM |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
659 void vo_vm_switch(uint32_t X, uint32_t Y, int* modeline_width, int* modeline_height) |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
660 { |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
661 unsigned int vm_event, vm_error; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
662 unsigned int vm_ver, vm_rev; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
663 int i,j,have_vm=0; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
664 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
665 int modecount; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
666 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
667 if (XF86VidModeQueryExtension(mDisplay, &vm_event, &vm_error)) { |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
668 XF86VidModeQueryVersion(mDisplay, &vm_ver, &vm_rev); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
669 printf("XF86VidMode Extension v%i.%i\n", vm_ver, vm_rev); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
670 have_vm=1; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
671 } else |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
672 printf("XF86VidMode Extenstion not available.\n"); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
673 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
674 if (have_vm) { |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
675 if (vidmodes==NULL) |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
676 XF86VidModeGetAllModeLines(mDisplay,mScreen,&modecount,&vidmodes); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
677 j=0; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
678 *modeline_width=vidmodes[0]->hdisplay; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
679 *modeline_height=vidmodes[0]->vdisplay; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
680 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
681 for (i=1; i<modecount; i++) |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
682 if ((vidmodes[i]->hdisplay >= X) && (vidmodes[i]->vdisplay >= Y)) |
5538 | 683 if ( (vidmodes[i]->hdisplay <= *modeline_width ) && (vidmodes[i]->vdisplay <= *modeline_height) ) |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
684 { |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
685 *modeline_width=vidmodes[i]->hdisplay; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
686 *modeline_height=vidmodes[i]->vdisplay; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
687 j=i; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
688 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
689 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
690 printf("XF86VM: Selected video mode %dx%d for image size %dx%d.\n",*modeline_width, *modeline_height, X, Y); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
691 XF86VidModeLockModeSwitch(mDisplay,mScreen,0); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
692 XF86VidModeSwitchToMode(mDisplay,mScreen,vidmodes[j]); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
693 XF86VidModeSwitchToMode(mDisplay,mScreen,vidmodes[j]); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
694 X=(vo_screenwidth-*modeline_width)/2; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
695 Y=(vo_screenheight-*modeline_height)/2; |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
696 XF86VidModeSetViewPort(mDisplay,mScreen,X,Y); |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
697 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
698 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
699 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
700 void vo_vm_close(Display *dpy) |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
701 { |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
702 #ifdef HAVE_NEW_GUI |
5019 | 703 if (vidmodes!=NULL && vo_window != None) |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
704 #else |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
705 if (vidmodes!=NULL) |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
706 #endif |
5019 | 707 { |
708 int i, modecount; | |
709 int screen; screen=DefaultScreen( dpy ); | |
710 | |
711 free(vidmodes); vidmodes=NULL; | |
712 XF86VidModeGetAllModeLines(mDisplay,mScreen,&modecount,&vidmodes); | |
713 for (i=0; i<modecount; i++) | |
714 if ((vidmodes[i]->hdisplay == vo_screenwidth) && (vidmodes[i]->vdisplay == vo_screenheight)) | |
715 { | |
716 printf("\nReturning to original mode %dx%d\n", vo_screenwidth, vo_screenheight); | |
717 break; | |
718 } | |
719 | |
720 XF86VidModeSwitchToMode(dpy,screen,vidmodes[i]); | |
721 XF86VidModeSwitchToMode(dpy,screen,vidmodes[i]); | |
722 free(vidmodes); | |
723 } | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
724 } |
3990 | 725 #endif |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
726 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
727 #endif |