Mercurial > mplayer.hg
annotate libvo/x11_common.c @ 3419:dfdc17415fb9
I'm missing a file ...
author | jaf |
---|---|
date | Sun, 09 Dec 2001 22:15:51 +0000 |
parents | 2f8f83ddbab3 |
children | 6b4ff1eb79bf |
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 |
28 /* | |
29 * If SCAN_VISUALS is defined, vo_init() scans all available TrueColor | |
30 * visuals for the 'best' visual for MPlayer video display. Note that | |
31 * the 'best' visual might be different from the default visual that | |
32 * is in use on the root window of the display/screen. | |
33 */ | |
34 #define SCAN_VISUALS | |
35 | |
36 | |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1447
diff
changeset
|
37 extern verbose; |
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1447
diff
changeset
|
38 |
324 | 39 static int dpms_disabled=0; |
40 static int timeout_save=0; | |
41 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
42 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
|
43 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
|
44 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
|
45 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
|
46 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
|
47 |
384 | 48 |
49 void vo_hidecursor ( Display *disp , Window win ) | |
50 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
51 Cursor no_ptr; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
52 Pixmap bm_no; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
53 XColor black,dummy; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
54 Colormap colormap; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
55 static unsigned char bm_no_data[] = { 0,0,0,0, 0,0,0,0 }; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
56 |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
57 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
|
58 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
|
59 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
|
60 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
|
61 XDefineCursor(disp,win,no_ptr); |
384 | 62 } |
63 | |
64 | |
1732 | 65 #ifdef SCAN_VISUALS |
66 /* | |
67 * Scan the available visuals on this Display/Screen. Try to find | |
68 * the 'best' available TrueColor visual that has a decent color | |
69 * depth (at least 15bit). If there are multiple visuals with depth | |
70 * >= 15bit, we prefer visuals with a smaller color depth. | |
71 */ | |
72 int vo_find_depth_from_visuals(Display *dpy, int screen, Visual **visual_return) | |
73 { | |
74 XVisualInfo visual_tmpl; | |
75 XVisualInfo *visuals; | |
76 int nvisuals, i; | |
77 int bestvisual = -1; | |
78 int bestvisual_depth = -1; | |
79 | |
80 visual_tmpl.screen = screen; | |
81 visual_tmpl.class = TrueColor; | |
82 visuals = XGetVisualInfo(dpy, | |
83 VisualScreenMask | VisualClassMask, &visual_tmpl, | |
84 &nvisuals); | |
85 if (visuals != NULL) { | |
86 for (i = 0; i < nvisuals; i++) { | |
87 if (verbose) | |
88 printf("vo: X11 truecolor visual %#x, depth %d, R:%lX G:%lX B:%lX\n", | |
89 visuals[i].visualid, visuals[i].depth, | |
90 visuals[i].red_mask, visuals[i].green_mask, | |
91 visuals[i].blue_mask); | |
92 /* | |
93 * save the visual index and it's depth, if this is the first | |
94 * truecolor visul, or a visual that is 'preferred' over the | |
95 * previous 'best' visual | |
96 */ | |
97 if (bestvisual_depth == -1 | |
98 || (visuals[i].depth >= 15 | |
99 && ( visuals[i].depth < bestvisual_depth | |
100 || bestvisual_depth < 15))) { | |
101 bestvisual = i; | |
102 bestvisual_depth = visuals[i].depth; | |
103 } | |
104 } | |
105 | |
106 if (bestvisual != -1 && visual_return != NULL) | |
107 *visual_return = visuals[bestvisual].visual; | |
108 | |
109 XFree(visuals); | |
110 } | |
111 return bestvisual_depth; | |
112 } | |
113 #endif | |
114 | |
115 | |
32 | 116 int vo_init( void ) |
117 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
118 // int mScreen; |
1732 | 119 int depth, bpp; |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
120 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
|
121 // 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
|
122 // Display * mDisplay; |
1732 | 123 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
|
124 // Window mRootWin; |
1732 | 125 XWindowAttributes attribs; |
32 | 126 |
127 if(vo_depthonscreen) return 1; // already called | |
128 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
129 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
|
130 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
|
131 mDisplayName=strdup(":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
|
132 |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
133 mDisplay=XOpenDisplay(mDisplayName); |
32 | 134 if ( !mDisplay ) |
135 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
136 printf( "vo: couldn't open the X11 display (%s)!\n",mDisplayName ); |
32 | 137 return 0; |
138 } | |
139 mScreen=DefaultScreen( mDisplay ); // Screen ID. | |
140 mRootWin=RootWindow( mDisplay,mScreen );// Root window ID. | |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
141 |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
142 #ifdef HAVE_XINERAMA |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
143 if(XineramaIsActive(mDisplay)) |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
144 { |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
145 XineramaScreenInfo *screens; |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
146 int num_screens; |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
147 screens = XineramaQueryScreens(mDisplay, &num_screens); |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
148 vo_screenwidth=screens[0].width; |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
149 vo_screenheight=screens[0].height; |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
150 } |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
151 else |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
152 #endif |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
153 { |
2364 | 154 if (! vo_screenwidth) |
155 vo_screenwidth=DisplayWidth( mDisplay,mScreen ); | |
156 if (! vo_screenheight) | |
157 vo_screenheight=DisplayHeight( mDisplay,mScreen ); | |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
158 } |
1732 | 159 // get color depth (from root window, or the best visual): |
32 | 160 XGetWindowAttributes(mDisplay, mRootWin, &attribs); |
1732 | 161 depth=attribs.depth; |
162 | |
163 #ifdef SCAN_VISUALS | |
164 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) { | |
165 Visual *visual; | |
166 | |
167 depth = vo_find_depth_from_visuals(mDisplay, mScreen, &visual); | |
168 if (depth != -1) | |
169 mXImage=XCreateImage(mDisplay, visual, depth, ZPixmap, | |
170 0, NULL, 1, 1, 8, 1); | |
171 } else | |
172 #endif | |
173 mXImage=XGetImage( mDisplay,mRootWin,0,0,1,1,AllPlanes,ZPixmap ); | |
174 | |
175 vo_depthonscreen = depth; // display depth on screen | |
176 | |
177 // get bits/pixel from XImage structure: | |
178 if (mXImage == NULL) { | |
179 mask = 0; | |
180 } else { | |
181 /* | |
182 * for the depth==24 case, the XImage structures might use | |
183 * 24 or 32 bits of data per pixel. The global variable | |
184 * vo_depthonscreen stores the amount of data per pixel in the | |
185 * XImage structure! | |
186 * | |
187 * Maybe we should rename vo_depthonscreen to (or add) vo_bpp? | |
188 */ | |
32 | 189 bpp=mXImage->bits_per_pixel; |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
190 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
|
191 mask=mXImage->red_mask|mXImage->green_mask|mXImage->blue_mask; |
1732 | 192 XDestroyImage( mXImage ); |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1447
diff
changeset
|
193 if(verbose) |
1732 | 194 printf("vo: X11 color mask: %X (R:%lX G:%lX B:%lX)\n", |
195 mask,mXImage->red_mask,mXImage->green_mask,mXImage->blue_mask); | |
196 } | |
197 if(((vo_depthonscreen+7)/8)==2){ | |
198 if(mask==0x7FFF) vo_depthonscreen=15; else | |
199 if(mask==0xFFFF) vo_depthonscreen=16; | |
200 } | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
201 // XCloseDisplay( mDisplay ); |
1447
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
202 /* slightly improved local display detection AST */ |
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
203 if ( strncmp(mDisplayName, "unix:", 5) == 0) |
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
204 mDisplayName += 4; |
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
205 else if ( strncmp(mDisplayName, "localhost:", 10) == 0) |
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
206 mDisplayName += 9; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
207 if (*mDisplayName==':') mLocalDisplay=1; else mLocalDisplay=0; |
1732 | 208 printf("vo: X11 running at %dx%d with depth %d and %d bits/pixel (\"%s\" => %s display)\n", |
209 vo_screenwidth,vo_screenheight, | |
210 depth, vo_depthonscreen, | |
211 mDisplayName,mLocalDisplay?"local":"remote"); | |
32 | 212 return 1; |
213 } | |
214 | |
215 #include "../linux/keycodes.h" | |
216 #include "wskeys.h" | |
217 | |
218 extern void mplayer_put_key(int code); | |
219 | |
220 void vo_x11_putkey(int key){ | |
221 switch ( key ) | |
222 { | |
223 case wsLeft: mplayer_put_key(KEY_LEFT); break; | |
224 case wsRight: mplayer_put_key(KEY_RIGHT); break; | |
225 case wsUp: mplayer_put_key(KEY_UP); break; | |
226 case wsDown: mplayer_put_key(KEY_DOWN); break; | |
227 case wsSpace: mplayer_put_key(' '); break; | |
228 case wsEscape: mplayer_put_key(KEY_ESC); break; | |
229 case wsEnter: mplayer_put_key(KEY_ENTER); break; | |
651 | 230 case wsPageUp: mplayer_put_key(KEY_PAGE_UP); break; |
231 case wsPageDown: mplayer_put_key(KEY_PAGE_DOWN); break; | |
32 | 232 case wsq: |
233 case wsQ: mplayer_put_key('q'); break; | |
234 case wsp: | |
235 case wsP: mplayer_put_key('p'); break; | |
236 case wsMinus: | |
237 case wsGrayMinus: mplayer_put_key('-'); break; | |
238 case wsPlus: | |
239 case wsGrayPlus: mplayer_put_key('+'); break; | |
464 | 240 case wsGrayMul: |
241 case wsMul: mplayer_put_key('*'); break; | |
242 case wsGrayDiv: | |
243 case wsDiv: mplayer_put_key('/'); break; | |
516 | 244 case wsm: |
245 case wsM: mplayer_put_key('m'); break; | |
655 | 246 case wso: |
247 case wsO: mplayer_put_key('o'); break; | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1456
diff
changeset
|
248 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
|
249 (key>='0' && key<='9')) mplayer_put_key(key); |
32 | 250 } |
369 | 251 |
32 | 252 } |
253 | |
254 | |
255 // ----- Motif header: ------- | |
256 | |
1236 | 257 #define MWM_HINTS_FUNCTIONS (1L << 0) |
258 #define MWM_HINTS_DECORATIONS (1L << 1) | |
259 #define MWM_HINTS_INPUT_MODE (1L << 2) | |
260 #define MWM_HINTS_STATUS (1L << 3) | |
261 | |
262 #define MWM_FUNC_ALL (1L << 0) | |
263 #define MWM_FUNC_RESIZE (1L << 1) | |
264 #define MWM_FUNC_MOVE (1L << 2) | |
265 #define MWM_FUNC_MINIMIZE (1L << 3) | |
266 #define MWM_FUNC_MAXIMIZE (1L << 4) | |
267 #define MWM_FUNC_CLOSE (1L << 5) | |
268 | |
269 #define MWM_DECOR_ALL (1L << 0) | |
270 #define MWM_DECOR_BORDER (1L << 1) | |
271 #define MWM_DECOR_RESIZEH (1L << 2) | |
272 #define MWM_DECOR_TITLE (1L << 3) | |
273 #define MWM_DECOR_MENU (1L << 4) | |
274 #define MWM_DECOR_MINIMIZE (1L << 5) | |
275 #define MWM_DECOR_MAXIMIZE (1L << 6) | |
276 | |
277 #define MWM_INPUT_MODELESS 0 | |
278 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1 | |
279 #define MWM_INPUT_SYSTEM_MODAL 2 | |
280 #define MWM_INPUT_FULL_APPLICATION_MODAL 3 | |
281 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL | |
282 | |
283 #define MWM_TEAROFF_WINDOW (1L<<0) | |
32 | 284 |
285 typedef struct | |
286 { | |
287 long flags; | |
288 long functions; | |
289 long decorations; | |
290 long input_mode; | |
1236 | 291 long state; |
32 | 292 } MotifWmHints; |
293 | |
294 extern MotifWmHints vo_MotifWmHints; | |
295 extern Atom vo_MotifHints; | |
296 extern int vo_depthonscreen; | |
297 extern int vo_screenwidth; | |
298 extern int vo_screenheight; | |
299 | |
300 static MotifWmHints vo_MotifWmHints; | |
301 static Atom vo_MotifHints = None; | |
302 | |
1266 | 303 // Note: always d==0 ! |
32 | 304 void vo_x11_decoration( Display * vo_Display,Window w,int d ) |
305 { | |
1266 | 306 |
307 if(vo_fsmode&1){ | |
308 XSetWindowAttributes attr; | |
309 attr.override_redirect = True; | |
310 XChangeWindowAttributes(vo_Display, w, CWOverrideRedirect, &attr); | |
311 // XMapWindow(vo_Display], w); | |
312 } | |
313 | |
1415 | 314 if(vo_fsmode&8){ |
315 XSetTransientForHint (vo_Display, w, RootWindow(vo_Display,mScreen)); | |
316 } | |
317 | |
32 | 318 vo_MotifHints=XInternAtom( vo_Display,"_MOTIF_WM_HINTS",0 ); |
319 if ( vo_MotifHints != None ) | |
320 { | |
1236 | 321 memset( &vo_MotifWmHints,0,sizeof( MotifWmHints ) ); |
322 vo_MotifWmHints.flags=MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS; | |
323 vo_MotifWmHints.functions=MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE | MWM_FUNC_MAXIMIZE; | |
324 if ( d ) d=MWM_DECOR_ALL; | |
1266 | 325 vo_MotifWmHints.decorations=d|((vo_fsmode&2)?0:MWM_DECOR_MENU); |
32 | 326 XChangeProperty( vo_Display,w,vo_MotifHints,vo_MotifHints,32, |
1266 | 327 PropModeReplace,(unsigned char *)&vo_MotifWmHints,(vo_fsmode&4)?4:5 ); |
32 | 328 } |
329 } | |
330 | |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
331 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
|
332 XClassHint wmClass; |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
333 wmClass.res_name = name; |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
334 wmClass.res_class = "MPlayer"; |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
335 XSetClassHint(display,window,&wmClass); |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
336 } |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
337 |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
338 #ifdef HAVE_NEW_GUI |
723 | 339 Window vo_window = None; |
340 GC vo_gc; | |
341 int vo_xeventhandling = 1; | |
342 int vo_resize = 0; | |
343 int vo_expose = 0; | |
344 | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
345 void vo_setwindow( Window w,GC g ) { |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
346 vo_window=w; vo_gc=g; |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
347 vo_xeventhandling=0; |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
348 } |
1746 | 349 void vo_setwindowsize( int w,int h ) { |
350 vo_dwidth=w; vo_dheight=h; | |
351 } | |
723 | 352 #endif |
353 | |
32 | 354 int vo_x11_check_events(Display *mydisplay){ |
355 int ret=0; | |
356 XEvent Event; | |
357 char buf[100]; | |
358 KeySym keySym; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J«ärgen Keil <jk@tools.de>
arpi_esp
parents:
922
diff
changeset
|
359 static XComposeStatus stat; |
32 | 360 // unsigned long vo_KeyTable[512]; |
361 | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
362 #ifdef HAVE_NEW_GUI |
723 | 363 if ( vo_xeventhandling ) |
364 { | |
365 #endif | |
366 while ( XPending( mydisplay ) ) | |
367 { | |
368 XNextEvent( mydisplay,&Event ); | |
369 switch( Event.type ) | |
370 { | |
371 case Expose: | |
372 ret|=VO_EVENT_EXPOSE; | |
373 break; | |
374 case ConfigureNotify: | |
375 vo_dwidth=Event.xconfigure.width; | |
376 vo_dheight=Event.xconfigure.height; | |
377 ret|=VO_EVENT_RESIZE; | |
378 break; | |
379 case KeyPress: | |
380 XLookupString( &Event.xkey,buf,sizeof(buf),&keySym,&stat ); | |
381 vo_x11_putkey( ( (keySym&0xff00) != 0?( (keySym&0x00ff) + 256 ):( keySym ) ) ); | |
382 ret|=VO_EVENT_KEYPRESS; | |
383 break; | |
384 } | |
385 } | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
386 #ifdef HAVE_NEW_GUI |
32 | 387 } |
723 | 388 else |
389 { | |
390 if ( vo_resize ) | |
391 { | |
392 vo_resize=0; | |
393 ret|=VO_EVENT_RESIZE; | |
394 } | |
395 if ( vo_expose ) | |
396 { | |
397 vo_expose=0; | |
398 ret|=VO_EVENT_EXPOSE; | |
399 } | |
400 } | |
401 #endif | |
32 | 402 |
403 return ret; | |
404 } | |
405 | |
324 | 406 void saver_on(Display *mDisplay) { |
407 | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
408 #ifdef HAVE_XDPMS |
324 | 409 int nothing; |
410 if (dpms_disabled) | |
411 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
412 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
|
413 { |
741 | 414 if (!DPMSEnable(mDisplay)) { // restoring power saving settings |
415 printf("DPMS not available?\n"); | |
416 } else { | |
417 // DPMS does not seem to be enabled unless we call DPMSInfo | |
418 BOOL onoff; | |
419 CARD16 state; | |
420 DPMSInfo(mDisplay, &state, &onoff); | |
421 if (onoff) { | |
422 printf ("Successfully enabled DPMS\n"); | |
423 } else { | |
424 printf ("Could not enable DPMS\n"); | |
425 } | |
426 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
427 } |
324 | 428 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
429 #endif |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
430 |
324 | 431 if (timeout_save) |
432 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
433 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
|
434 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
|
435 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
|
436 XGetScreenSaver(mDisplay, &timeout_save, &interval, &prefer_blank, &allow_exp); |
324 | 437 } |
438 | |
439 } | |
440 | |
441 void saver_off(Display *mDisplay) { | |
442 | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
443 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
|
444 #ifdef HAVE_XDPMS |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
445 int nothing; |
324 | 446 |
447 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) | |
448 { | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
449 BOOL onoff; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
450 CARD16 state; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
451 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
|
452 if (onoff) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
453 { |
741 | 454 Status stat; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
456
diff
changeset
|
455 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
|
456 dpms_disabled=1; |
741 | 457 stat = DPMSDisable(mDisplay); // monitor powersave off |
458 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
|
459 } |
324 | 460 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
461 #endif |
324 | 462 XGetScreenSaver(mDisplay, &timeout_save, &interval, &prefer_blank, &allow_exp); |
463 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
|
464 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
|
465 // turning off screensaver |
326 | 466 } |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
467 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
468 #endif |