Mercurial > mplayer.hg
annotate Gui/wm/ws.c @ 11928:7d603ceb4ac1
new filter: vf_noformat.
like vf_format, but in reverse.
this time I committed the filter, too. :)
author | joey |
---|---|
date | Fri, 06 Feb 2004 20:44:09 +0000 |
parents | 85e503ddf65f |
children | 94e66acdb706 |
rev | line source |
---|---|
1693 | 1 |
2 // -------------------------------------------------------------------------- | |
3 // AutoSpace Window System for Linux/Win32 v0.85 | |
4 // Writed by pontscho/fresh!mindworkz | |
5 // -------------------------------------------------------------------------- | |
6 | |
7 #include <X11/Xlib.h> | |
8 #include <X11/Xproto.h> | |
9 #include <X11/Xutil.h> | |
10 #include <X11/keysym.h> | |
11 #include <X11/Xatom.h> | |
2081 | 12 |
13 #include <stdio.h> | |
1693 | 14 #include <stdlib.h> |
2081 | 15 #include <string.h> |
16 #include <unistd.h> | |
17 #include <errno.h> | |
1693 | 18 |
2733 | 19 #include <inttypes.h> |
20 | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4566
diff
changeset
|
21 #include "../../config.h" |
8864 | 22 #include "../../libvo/x11_common.h" |
1693 | 23 #include "ws.h" |
6967
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
24 #include "wsxdnd.h" |
10170
2f9e8ff57e9e
This could be a 10l, but the codes check later if the wsConvFunc is valid, so no sig11 if it's NULL, but at least no XShape support on PPC :) After all, finally the GUI works on my PPC!%#^^
alex
parents:
9317
diff
changeset
|
25 #include "../../cpudetect.h" |
2f9e8ff57e9e
This could be a 10l, but the codes check later if the wsConvFunc is valid, so no sig11 if it's NULL, but at least no XShape support on PPC :) After all, finally the GUI works on my PPC!%#^^
alex
parents:
9317
diff
changeset
|
26 #include "../../postproc/swscale.h" |
2733 | 27 #include "../../postproc/rgb2rgb.h" |
10233
35f52ad860a0
vf_scale.h & related cleanup & some small warning fix by dominik
michael
parents:
10194
diff
changeset
|
28 #include "../../libmpcodecs/vf_scale.h" |
5919 | 29 #include "../../mp_msg.h" |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
30 #include "../../mplayer.h" |
1693 | 31 |
32 #include <X11/extensions/XShm.h> | |
2476 | 33 #ifdef HAVE_XSHAPE |
1693 | 34 #include <X11/extensions/shape.h> |
2476 | 35 #endif |
36 | |
10194 | 37 #ifdef HAVE_XINERAMA |
38 #include <X11/extensions/Xinerama.h> | |
39 #endif | |
40 | |
1693 | 41 #include <sys/ipc.h> |
42 #include <sys/shm.h> | |
43 | |
8864 | 44 #undef ENABLE_DPMS |
8478 | 45 |
10194 | 46 #ifdef HAVE_XINERAMA |
47 extern int xinerama_screen; | |
48 #endif | |
49 | |
1693 | 50 typedef struct |
51 { | |
3054 | 52 unsigned long flags; |
53 unsigned long functions; | |
54 unsigned long decorations; | |
1693 | 55 long input_mode; |
3054 | 56 unsigned long status; |
1693 | 57 } MotifWmHints; |
58 | |
59 Atom wsMotifHints; | |
60 | |
4465 | 61 int wsMaxX = 0; // Screen width. |
62 int wsMaxY = 0; // Screen height. | |
10194 | 63 int wsOrgX = 0; // Screen origin x. |
64 int wsOrgY = 0; // Screen origin y. | |
1693 | 65 |
66 Display * wsDisplay; | |
67 int wsScreen; | |
68 Window wsRootWin; | |
69 XEvent wsEvent; | |
70 int wsWindowDepth; | |
71 GC wsHGC; | |
72 MotifWmHints wsMotifWmHints; | |
73 Atom wsTextProperlyAtom = None; | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
74 int wsLayer = 0; |
1693 | 75 |
76 int wsDepthOnScreen = 0; | |
77 int wsRedMask = 0; | |
78 int wsGreenMask = 0; | |
79 int wsBlueMask = 0; | |
80 int wsOutMask = 0; | |
81 | |
82 int wsTrue = True; | |
83 | |
8949 | 84 #define wsWLCount 5 |
85 wsTWindow * wsWindowList[wsWLCount] = { NULL,NULL,NULL,NULL,NULL }; | |
1693 | 86 |
87 unsigned long wsKeyTable[512]; | |
88 | |
89 int wsUseXShm = 1; | |
90 int wsUseXShape = 1; | |
91 | |
92 int XShmGetEventBase( Display* ); | |
93 inline int wsSearch( Window win ); | |
94 | |
7206 | 95 // --- |
96 | |
97 #define PACK_RGB16(r,g,b,pixel) pixel=(b>>3);\ | |
98 pixel<<=6;\ | |
99 pixel|=(g>>2);\ | |
100 pixel<<=5;\ | |
101 pixel|=(r>>3) | |
102 | |
103 #define PACK_RGB15(r,g,b,pixel) pixel=(b>>3);\ | |
104 pixel<<=5;\ | |
105 pixel|=(g>>3);\ | |
106 pixel<<=5;\ | |
107 pixel|=(r>>3) | |
108 | |
109 typedef void(*wsTConvFunc)( const unsigned char * in_pixels, unsigned char * out_pixels, unsigned num_pixels ); | |
110 wsTConvFunc wsConvFunc = NULL; | |
7706 | 111 |
112 void rgb32torgb32( const unsigned char * src, unsigned char * dst,unsigned int src_size ) | |
7206 | 113 { memcpy( dst,src,src_size ); } |
114 | |
115 // --- | |
116 | |
1693 | 117 #define MWM_HINTS_FUNCTIONS (1L << 0) |
118 #define MWM_HINTS_DECORATIONS (1L << 1) | |
119 #define MWM_HINTS_INPUT_MODE (1L << 2) | |
120 #define MWM_HINTS_STATUS (1L << 3) | |
121 | |
122 #define MWM_FUNC_ALL (1L << 0) | |
123 #define MWM_FUNC_RESIZE (1L << 1) | |
124 #define MWM_FUNC_MOVE (1L << 2) | |
125 #define MWM_FUNC_MINIMIZE (1L << 3) | |
126 #define MWM_FUNC_MAXIMIZE (1L << 4) | |
127 #define MWM_FUNC_CLOSE (1L << 5) | |
128 | |
129 #define MWM_DECOR_ALL (1L << 0) | |
130 #define MWM_DECOR_BORDER (1L << 1) | |
131 #define MWM_DECOR_RESIZEH (1L << 2) | |
132 #define MWM_DECOR_TITLE (1L << 3) | |
133 #define MWM_DECOR_MENU (1L << 4) | |
134 #define MWM_DECOR_MINIMIZE (1L << 5) | |
135 #define MWM_DECOR_MAXIMIZE (1L << 6) | |
136 | |
137 #define MWM_INPUT_MODELESS 0 | |
138 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1 | |
139 #define MWM_INPUT_SYSTEM_MODAL 2 | |
140 #define MWM_INPUT_FULL_APPLICATION_MODAL 3 | |
141 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL | |
142 | |
143 #define MWM_TEAROFF_WINDOW (1L<<0) | |
144 | |
145 void wsWindowDecoration( wsTWindow * win,long d ) | |
146 { | |
147 wsMotifHints=XInternAtom( wsDisplay,"_MOTIF_WM_HINTS",0 ); | |
3054 | 148 if ( wsMotifHints == None ) return; |
149 | |
150 memset( &wsMotifWmHints,0,sizeof( MotifWmHints ) ); | |
5031 | 151 wsMotifWmHints.flags=MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS; |
152 if ( d ) | |
153 { | |
154 wsMotifWmHints.functions=MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE | MWM_FUNC_MAXIMIZE | MWM_FUNC_RESIZE; | |
155 wsMotifWmHints.decorations=MWM_DECOR_ALL; | |
156 } | |
3054 | 157 XChangeProperty( wsDisplay,win->WindowID,wsMotifHints,wsMotifHints,32, |
158 PropModeReplace,(unsigned char *)&wsMotifWmHints,5 ); | |
1693 | 159 } |
160 | |
161 // ---------------------------------------------------------------------------------------------- | |
162 // Init X Window System. | |
163 // ---------------------------------------------------------------------------------------------- | |
164 | |
165 int wsIOErrorHandler( Display * dpy ) | |
166 { | |
167 fprintf( stderr,"[ws] io error in display.\n" ); | |
168 exit( 0 ); | |
169 } | |
170 | |
171 int wsErrorHandler( Display * dpy,XErrorEvent * Event ) | |
172 { | |
173 char type[128]; | |
174 XGetErrorText( wsDisplay,Event->error_code,type,128 ); | |
175 fprintf(stderr,"[ws] Error in display.\n"); | |
176 fprintf(stderr,"[ws] Error code: %d ( %s )\n",Event->error_code,type ); | |
177 fprintf(stderr,"[ws] Request code: %d\n",Event->request_code ); | |
178 fprintf(stderr,"[ws] Minor code: %d\n",Event->minor_code ); | |
7801
48b7d7fd7075
- wsErrorHandler was crashing on solaris with a null pointer access in printf;
jkeil
parents:
7751
diff
changeset
|
179 fprintf(stderr,"[ws] Modules: %s\n",current_module?current_module:"(NULL)" ); |
1693 | 180 exit( 0 ); |
181 } | |
182 | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
183 void wsXInit( void* mDisplay ) |
1693 | 184 { |
185 int eventbase; | |
186 int errorbase; | |
187 | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
188 if(mDisplay){ |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
189 wsDisplay=mDisplay; |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
190 } else { |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
191 char * DisplayName = ":0.0"; |
1693 | 192 if ( getenv( "DISPLAY" ) ) DisplayName=getenv( "DISPLAY" ); |
193 wsDisplay=XOpenDisplay( DisplayName ); | |
194 if ( !wsDisplay ) | |
195 { | |
5919 | 196 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] couldn't open the display !\n" ); |
1693 | 197 exit( 0 ); |
198 } | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
199 } |
1693 | 200 |
6967
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
201 /* enable DND atoms */ |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
202 wsXDNDInitialize(); |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
203 |
1838 | 204 { /* on remote display XShm will be disabled - LGB */ |
205 char *dispname=DisplayString(wsDisplay); | |
206 int localdisp=1; | |
207 if (dispname&&*dispname!=':') { | |
208 localdisp=0; | |
209 wsUseXShm=0; | |
210 } | |
5919 | 211 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"[ws] Display name: %s => %s display.\n",dispname,localdisp?"local":"REMOTE"); |
212 if (!localdisp) mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[ws] Remote display, disabling XMITSHM\n"); | |
1838 | 213 } |
8864 | 214 |
1693 | 215 if ( !XShmQueryExtension( wsDisplay ) ) |
216 { | |
5919 | 217 mp_msg( MSGT_GPLAYER,MSGL_ERR,"[ws] sorry, your system is not supported X shared memory extension.\n" ); |
1693 | 218 wsUseXShm=0; |
219 } | |
1699 | 220 #ifdef HAVE_XSHAPE |
1693 | 221 if ( !XShapeQueryExtension( wsDisplay,&eventbase,&errorbase ) ) |
222 { | |
5919 | 223 mp_msg( MSGT_GPLAYER,MSGL_ERR,"[ws] sorry, your system is not supported XShape extension.\n" ); |
1693 | 224 wsUseXShape=0; |
225 } | |
1699 | 226 #else |
1693 | 227 wsUseXShape=0; |
1699 | 228 #endif |
1693 | 229 |
230 XSynchronize( wsDisplay,True ); | |
231 | |
232 wsScreen=DefaultScreen( wsDisplay ); | |
233 wsRootWin=RootWindow( wsDisplay,wsScreen ); | |
10194 | 234 #ifdef HAVE_XINERAMA |
235 if(XineramaIsActive(wsDisplay)) | |
236 { | |
237 XineramaScreenInfo *screens; | |
238 int num_screens; | |
239 | |
240 screens = XineramaQueryScreens(wsDisplay, &num_screens); | |
241 if(xinerama_screen >= num_screens) xinerama_screen = 0; | |
242 wsOrgX = screens[xinerama_screen].x_org; | |
243 wsOrgY = screens[xinerama_screen].y_org; | |
244 wsMaxX=screens[xinerama_screen].width; | |
245 wsMaxY=screens[xinerama_screen].height; | |
246 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[ws] screens %d Max %d, %d Org %d,%d\n", | |
247 num_screens, wsMaxX, wsMaxY, wsOrgX, wsOrgY); | |
248 XFree(screens); | |
249 } | |
250 else | |
251 #endif | |
252 { | |
253 wsOrgX = wsOrgY = 0; | |
1693 | 254 wsMaxX=DisplayWidth( wsDisplay,wsScreen ); |
255 wsMaxY=DisplayHeight( wsDisplay,wsScreen ); | |
10194 | 256 } |
1693 | 257 |
258 wsGetDepthOnScreen(); | |
1699 | 259 #ifdef DEBUG |
1693 | 260 { |
261 int minor,major,shp; | |
5919 | 262 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] Screen depth: %d\n",wsDepthOnScreen ); |
263 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] size: %dx%d\n",wsMaxX,wsMaxY ); | |
10194 | 264 #ifdef HAVE_XINERAMA |
265 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] origin: +%d+%d\n",wsOrgX,wsOrgY ); | |
266 #endif | |
5919 | 267 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] red mask: 0x%x\n",wsRedMask ); |
268 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] green mask: 0x%x\n",wsGreenMask ); | |
269 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] blue mask: 0x%x\n",wsBlueMask ); | |
1693 | 270 if ( wsUseXShm ) |
271 { | |
272 XShmQueryVersion( wsDisplay,&major,&minor,&shp ); | |
5919 | 273 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] XShm version is %d.%d\n",major,minor ); |
1693 | 274 } |
275 #ifdef HAVE_XSHAPE | |
276 if ( wsUseXShape ) | |
277 { | |
278 XShapeQueryVersion( wsDisplay,&major,&minor ); | |
5919 | 279 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[ws] XShape version is %d.%d\n",major,minor ); |
1693 | 280 } |
281 #endif | |
282 } | |
1699 | 283 #endif |
1693 | 284 wsOutMask=wsGetOutMask(); |
5919 | 285 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"[ws] Initialized converter: " ); |
10411 | 286 sws_rgb2rgb_init(get_sws_cpuflags()); |
1693 | 287 switch ( wsOutMask ) |
288 { | |
289 case wsRGB32: | |
5919 | 290 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to rgb32\n" ); |
7206 | 291 wsConvFunc=rgb32torgb32; |
1693 | 292 break; |
293 case wsBGR32: | |
5919 | 294 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to bgr32\n" ); |
2782 | 295 wsConvFunc=rgb32tobgr32; |
1693 | 296 break; |
297 case wsRGB24: | |
5919 | 298 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to rgb24\n" ); |
2733 | 299 wsConvFunc=rgb32to24; |
1693 | 300 break; |
301 case wsBGR24: | |
5919 | 302 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to bgr24\n" ); |
7206 | 303 wsConvFunc=rgb32tobgr24; |
1693 | 304 break; |
305 case wsRGB16: | |
5919 | 306 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to rgb16\n" ); |
2733 | 307 wsConvFunc=rgb32to16; |
1693 | 308 break; |
309 case wsBGR16: | |
5919 | 310 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to bgr16\n" ); |
7206 | 311 wsConvFunc=rgb32tobgr16; |
1693 | 312 break; |
313 case wsRGB15: | |
5919 | 314 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to rgb15\n" ); |
2733 | 315 wsConvFunc=rgb32to15; |
1693 | 316 break; |
317 case wsBGR15: | |
5919 | 318 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"rgb32 to bgr15\n" ); |
7206 | 319 wsConvFunc=rgb32tobgr15; |
1693 | 320 break; |
321 } | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
322 XSetErrorHandler( wsErrorHandler ); |
1693 | 323 } |
324 | |
325 // ---------------------------------------------------------------------------------------------- | |
326 // Create window. | |
327 // X,Y : window position | |
328 // wX,wY : size of window | |
329 // bW : border width | |
330 // cV : visible mouse cursor on window | |
331 // D : visible frame, title, etc. | |
332 // sR : screen ratio | |
333 // ---------------------------------------------------------------------------------------------- | |
334 | |
335 XClassHint wsClassHint; | |
336 XTextProperty wsTextProperty; | |
337 Window LeaderWindow; | |
338 | |
339 void wsCreateWindow( wsTWindow * win,int X,int Y,int wX,int hY,int bW,int cV,unsigned char D,char * label ) | |
340 { | |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
341 int depth; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
342 |
1693 | 343 win->Property=D; |
344 if ( D & wsShowFrame ) win->Decorations=1; | |
345 wsHGC=DefaultGC( wsDisplay,wsScreen ); | |
346 // The window position and size. | |
347 switch ( X ) | |
348 { | |
10194 | 349 case -1: win->X=( wsMaxX / 2 ) - ( wX / 2 ) + wsOrgX; break; |
350 case -2: win->X=wsMaxX - wX - 1 + wsOrgX; break; | |
1693 | 351 default: win->X=X; break; |
352 } | |
353 switch ( Y ) | |
354 { | |
10194 | 355 case -1: win->Y=( wsMaxY / 2 ) - ( hY / 2 ) + wsOrgY; break; |
356 case -2: win->Y=wsMaxY - hY - 1 + wsOrgY; break; | |
1693 | 357 default: win->Y=Y; break; |
358 } | |
359 win->Width=wX; | |
360 win->Height=hY; | |
361 win->OldX=win->X; | |
362 win->OldY=win->Y; | |
363 win->OldWidth=win->Width; | |
364 win->OldHeight=win->Height; | |
365 | |
366 // Border size for window. | |
367 win->BorderWidth=bW; | |
368 // Hide Mouse Cursor | |
369 win->wsCursor=None; | |
370 win->wsMouseEventType=cV; | |
371 win->wsCursorData[0]=0; | |
372 win->wsCursorPixmap=XCreateBitmapFromData( wsDisplay,wsRootWin,win->wsCursorData,1,1 ); | |
373 if ( !(cV & wsShowMouseCursor) ) win->wsCursor=XCreatePixmapCursor( wsDisplay,win->wsCursorPixmap,win->wsCursorPixmap,&win->wsColor,&win->wsColor,0,0 ); | |
374 | |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
375 depth = vo_find_depth_from_visuals( wsDisplay,wsScreen,NULL ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
376 if ( depth < 15 ) |
1693 | 377 { |
5919 | 378 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] sorry, this color depth is not enough.\n" ); |
1693 | 379 exit( 0 ); |
380 } | |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
381 XMatchVisualInfo( wsDisplay,wsScreen,depth,TrueColor,&win->VisualInfo ); |
1693 | 382 |
383 // --- | |
384 win->AtomLeaderClient=XInternAtom( wsDisplay,"WM_CLIENT_LEADER",False ); | |
385 win->AtomDeleteWindow=XInternAtom( wsDisplay,"WM_DELETE_WINDOW",False ); | |
386 win->AtomTakeFocus=XInternAtom( wsDisplay,"WM_TAKE_FOCUS",False ); | |
387 win->AtomRolle=XInternAtom( wsDisplay,"WM_WINDOW_ROLE",False ); | |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
388 win->AtomWMSizeHint=XInternAtom( wsDisplay,"WM_SIZE_HINT",False ); |
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
389 win->AtomWMNormalHint=XInternAtom( wsDisplay,"WM_NORMAL_HINT",False ); |
1693 | 390 win->AtomProtocols=XInternAtom( wsDisplay,"WM_PROTOCOLS",False ); |
391 win->AtomsProtocols[0]=win->AtomDeleteWindow; | |
392 win->AtomsProtocols[1]=win->AtomTakeFocus; | |
393 win->AtomsProtocols[2]=win->AtomRolle; | |
394 // --- | |
395 | |
396 win->WindowAttrib.background_pixel=BlackPixel( wsDisplay,wsScreen ); | |
397 win->WindowAttrib.border_pixel=WhitePixel( wsDisplay,wsScreen ); | |
398 win->WindowAttrib.colormap=XCreateColormap( wsDisplay,wsRootWin,win->VisualInfo.visual,AllocNone ); | |
399 win->WindowAttrib.event_mask=StructureNotifyMask | FocusChangeMask | | |
400 ExposureMask | PropertyChangeMask | | |
401 EnterWindowMask | LeaveWindowMask | | |
402 VisibilityChangeMask | | |
403 KeyPressMask | KeyReleaseMask; | |
404 if ( ( cV & wsHandleMouseButton ) ) win->WindowAttrib.event_mask|=ButtonPressMask | ButtonReleaseMask; | |
405 if ( ( cV & wsHandleMouseMove ) ) win->WindowAttrib.event_mask|=PointerMotionMask; | |
406 win->WindowAttrib.cursor=win->wsCursor; | |
407 win->WindowAttrib.override_redirect=False; | |
408 if ( D & wsOverredirect ) win->WindowAttrib.override_redirect=True; | |
409 | |
410 win->WindowMask=CWBackPixel | CWBorderPixel | | |
411 CWColormap | CWEventMask | CWCursor | | |
412 CWOverrideRedirect; | |
413 | |
414 win->WindowID=XCreateWindow( wsDisplay, | |
415 (win->Parent != 0?win->Parent:wsRootWin), | |
416 win->X,win->Y,win->Width,win->Height,win->BorderWidth, | |
417 win->VisualInfo.depth, | |
418 InputOutput, | |
419 win->VisualInfo.visual, | |
420 win->WindowMask,&win->WindowAttrib ); | |
421 | |
4411 | 422 wsClassHint.res_name="MPlayer"; |
423 | |
2029 | 424 wsClassHint.res_class="MPlayer"; |
1693 | 425 XSetClassHint( wsDisplay,win->WindowID,&wsClassHint ); |
426 | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
427 win->SizeHint.flags=PPosition | PSize | PResizeInc | PWinGravity;// | PBaseSize; |
1693 | 428 win->SizeHint.x=win->X; |
429 win->SizeHint.y=win->Y; | |
430 win->SizeHint.width=win->Width; | |
431 win->SizeHint.height=win->Height; | |
5986 | 432 |
1860 | 433 if ( D & wsMinSize ) |
434 { | |
435 win->SizeHint.flags|=PMinSize; | |
436 win->SizeHint.min_width=win->Width; | |
437 win->SizeHint.min_height=win->Height; | |
438 } | |
1693 | 439 if ( D & wsMaxSize ) |
440 { | |
441 win->SizeHint.flags|=PMaxSize; | |
442 win->SizeHint.max_width=win->Width; | |
443 win->SizeHint.max_height=win->Height; | |
444 } | |
5986 | 445 |
1693 | 446 win->SizeHint.height_inc=1; |
447 win->SizeHint.width_inc=1; | |
5919 | 448 win->SizeHint.base_width=win->Width; |
449 win->SizeHint.base_height=win->Height; | |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
450 win->SizeHint.win_gravity=StaticGravity; |
1693 | 451 XSetWMNormalHints( wsDisplay,win->WindowID,&win->SizeHint ); |
452 | |
453 win->WMHints.flags=InputHint | StateHint; | |
454 win->WMHints.input=True; | |
455 win->WMHints.initial_state=NormalState; | |
456 XSetWMHints( wsDisplay,win->WindowID,&win->WMHints ); | |
457 | |
458 wsWindowDecoration( win,win->Decorations ); | |
459 XStoreName( wsDisplay,win->WindowID,label ); | |
460 XmbSetWMProperties( wsDisplay,win->WindowID,label,label,NULL,0,NULL,NULL,NULL ); | |
461 | |
462 XSetWMProtocols( wsDisplay,win->WindowID,win->AtomsProtocols,3 ); | |
463 XChangeProperty( wsDisplay,win->WindowID, | |
464 win->AtomLeaderClient, | |
465 XA_WINDOW,32,PropModeReplace, | |
466 (unsigned char *)&LeaderWindow,1 ); | |
467 | |
468 wsTextProperty.value=label; | |
469 wsTextProperty.encoding=XA_STRING; | |
470 wsTextProperty.format=8; | |
471 wsTextProperty.nitems=strlen( label ); | |
472 XSetWMIconName( wsDisplay,win->WindowID,&wsTextProperty ); | |
473 | |
474 win->wGC=XCreateGC( wsDisplay,win->WindowID, | |
1814 | 475 GCForeground | GCBackground, |
1693 | 476 &win->wGCV ); |
477 | |
478 win->Visible=0; | |
479 win->Focused=0; | |
480 win->Mapped=0; | |
481 win->Rolled=0; | |
482 if ( D & wsShowWindow ) XMapWindow( wsDisplay,win->WindowID ); | |
483 | |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1853
diff
changeset
|
484 wsCreateImage( win,win->Width,win->Height ); |
1693 | 485 // --- End of creating -------------------------------------------------------------------------- |
486 | |
8949 | 487 { |
488 int i; | |
489 for ( i=0;i < wsWLCount;i++ ) | |
490 if ( wsWindowList[i] == NULL ) break; | |
491 if ( i == wsWLCount ) | |
10606 | 492 { mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] there are too many open windows\n" ); exit( 0 ); } |
8949 | 493 wsWindowList[i]=win; |
494 } | |
1693 | 495 |
496 XFlush( wsDisplay ); | |
497 XSync( wsDisplay,False ); | |
498 | |
499 win->ReDraw=NULL; | |
500 win->ReSize=NULL; | |
501 win->Idle=NULL; | |
502 win->MouseHandler=NULL; | |
503 win->KeyHandler=NULL; | |
5919 | 504 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"[ws] window is created. ( %s ).\n",label ); |
1693 | 505 } |
506 | |
507 void wsDestroyWindow( wsTWindow * win ) | |
508 { | |
509 int l; | |
510 l=wsSearch( win->WindowID ); | |
511 wsWindowList[l]=NULL; | |
512 if ( win->wsCursor != None ) | |
513 { | |
514 XFreeCursor( wsDisplay,win->wsCursor ); | |
515 win->wsCursor=None; | |
516 } | |
8949 | 517 XFreeGC( wsDisplay,win->wGC ); |
1693 | 518 XUnmapWindow( wsDisplay,win->WindowID ); |
519 wsDestroyImage( win ); | |
520 XDestroyWindow( wsDisplay,win->WindowID ); | |
8949 | 521 #if 0 |
1693 | 522 win->ReDraw=NULL; |
523 win->ReSize=NULL; | |
524 win->Idle=NULL; | |
525 win->MouseHandler=NULL; | |
526 win->KeyHandler=NULL; | |
527 win->Visible=0; | |
528 win->Focused=0; | |
529 win->Mapped=0; | |
530 win->Rolled=0; | |
8949 | 531 #endif |
1693 | 532 } |
533 | |
534 // ---------------------------------------------------------------------------------------------- | |
535 // Handle events. | |
536 // ---------------------------------------------------------------------------------------------- | |
537 | |
538 inline int wsSearch( Window win ) | |
539 { | |
540 int i; | |
8949 | 541 for ( i=0;i<wsWLCount;i++ ) if ( wsWindowList[i] && wsWindowList[i]->WindowID == win ) return i; |
1693 | 542 return -1; |
543 } | |
544 | |
545 Bool wsEvents( Display * display,XEvent * Event,XPointer arg ) | |
546 { | |
547 unsigned long i = 0; | |
548 int l; | |
549 int x,y; | |
550 Window child_window = 0; | |
551 | |
552 l=wsSearch( Event->xany.window ); | |
553 if ( l == -1 ) return !wsTrue; | |
1782 | 554 wsWindowList[l]->State=0; |
1693 | 555 switch( Event->type ) |
556 { | |
557 case ClientMessage: | |
558 if ( Event->xclient.message_type == wsWindowList[l]->AtomProtocols ) | |
559 { | |
7751 | 560 if ( (Atom)Event->xclient.data.l[0] == wsWindowList[l]->AtomDeleteWindow ) |
5919 | 561 { i=wsWindowClosed; goto expose; } |
7751 | 562 if ( (Atom)Event->xclient.data.l[0] == wsWindowList[l]->AtomTakeFocus ) |
1693 | 563 { i=wsWindowFocusIn; wsWindowList[l]->Focused=wsFocused; goto expose; } |
7751 | 564 if ( (Atom)Event->xclient.data.l[0] == wsWindowList[l]->AtomRolle ) |
5919 | 565 { mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[ws] rolled.\n" ); } |
6967
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
566 } else { |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
567 /* try to process DND events */ |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
568 wsXDNDProcessClientMessage(wsWindowList[l],&Event->xclient); |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
569 } |
1693 | 570 break; |
571 | |
572 case MapNotify: i=wsWindowMapped; wsWindowList[l]->Mapped=wsMapped; goto expose; | |
573 case UnmapNotify: i=wsWindowUnmapped; wsWindowList[l]->Mapped=wsNone; goto expose; | |
574 case FocusIn: | |
575 if ( wsWindowList[l]->Focused == wsFocused ) break; | |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
576 i=wsWindowFocusIn; |
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
577 wsWindowList[l]->Focused=wsFocused; |
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
578 goto expose; |
1693 | 579 case FocusOut: |
580 if ( wsWindowList[l]->Focused == wsNone ) break; | |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
581 i=wsWindowFocusOut; |
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
582 wsWindowList[l]->Focused=wsNone; |
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
583 goto expose; |
1693 | 584 case VisibilityNotify: |
585 switch( Event->xvisibility.state ) | |
586 { | |
587 case VisibilityUnobscured: i=wsWindowVisible; wsWindowList[l]->Visible=wsVisible; goto expose; | |
588 case VisibilityFullyObscured: i=wsWindowNotVisible; wsWindowList[l]->Visible=wsNotVisible; goto expose; | |
589 case VisibilityPartiallyObscured: i=wsWindowPartialVisible; wsWindowList[l]->Visible=wsPVisible; goto expose; | |
590 } | |
591 expose: | |
592 wsWindowList[l]->State=i; | |
8058 | 593 if ( wsWindowList[l]->ReDraw ) wsWindowList[l]->ReDraw(); |
1693 | 594 break; |
595 | |
596 case Expose: | |
597 wsWindowList[l]->State=wsWindowExpose; | |
8058 | 598 if ( ( wsWindowList[l]->ReDraw )&&( !Event->xexpose.count ) ) wsWindowList[l]->ReDraw(); |
1693 | 599 break; |
600 | |
601 case ConfigureNotify: | |
602 XTranslateCoordinates( wsDisplay,wsWindowList[l]->WindowID,wsRootWin,0,0,&x,&y,&child_window ); | |
603 if ( ( wsWindowList[l]->X != x )||( wsWindowList[l]->Y != y )||( wsWindowList[l]->Width != Event->xconfigure.width )||( wsWindowList[l]->Height != Event->xconfigure.height ) ) | |
604 { | |
605 wsWindowList[l]->X=x; wsWindowList[l]->Y=y; | |
606 wsWindowList[l]->Width=Event->xconfigure.width; wsWindowList[l]->Height=Event->xconfigure.height; | |
607 if ( wsWindowList[l]->ReSize ) wsWindowList[l]->ReSize( wsWindowList[l]->X,wsWindowList[l]->Y,wsWindowList[l]->Width,wsWindowList[l]->Height ); | |
608 } | |
609 | |
610 wsWindowList[l]->Rolled=wsNone; | |
611 if ( Event->xconfigure.y < 0 ) | |
612 { i=wsWindowRolled; wsWindowList[l]->Rolled=wsRolled; goto expose; } | |
613 | |
614 break; | |
615 | |
616 case KeyPress: i=wsKeyPressed; goto keypressed; | |
617 case KeyRelease: i=wsKeyReleased; | |
618 keypressed: | |
619 wsWindowList[l]->Alt=0; | |
620 wsWindowList[l]->Shift=0; | |
621 wsWindowList[l]->NumLock=0; | |
622 wsWindowList[l]->Control=0; | |
623 wsWindowList[l]->CapsLock=0; | |
624 if ( Event->xkey.state & Mod1Mask ) wsWindowList[l]->Alt=1; | |
625 if ( Event->xkey.state & Mod2Mask ) wsWindowList[l]->NumLock=1; | |
626 if ( Event->xkey.state & ControlMask ) wsWindowList[l]->Control=1; | |
627 if ( Event->xkey.state & ShiftMask ) wsWindowList[l]->Shift=1; | |
628 if ( Event->xkey.state & LockMask ) wsWindowList[l]->CapsLock=1; | |
6089 | 629 #if 0 |
6183
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
630 { |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
631 KeySym keySym; |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
632 keySym=XKeycodeToKeysym( wsDisplay,Event->xkey.keycode,0 ); |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
633 if ( keySym != NoSymbol ) |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
634 { |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
635 keySym=( (keySym&0xff00) != 0?( (keySym&0x00ff) + 256 ):( keySym ) ); |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
636 wsKeyTable[ keySym ]=i; |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
637 if ( wsWindowList[l]->KeyHandler ) |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
638 wsWindowList[l]->KeyHandler( Event->xkey.state,i,keySym ); |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
639 } |
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
640 } |
6089 | 641 #else |
642 { | |
643 int key; | |
644 char buf[100]; | |
645 KeySym keySym; | |
646 static XComposeStatus stat; | |
647 | |
648 XLookupString( &Event->xkey,buf,sizeof(buf),&keySym,&stat ); | |
649 key=( (keySym&0xff00) != 0?( (keySym&0x00ff) + 256 ):( keySym ) ); | |
650 wsKeyTable[ key ]=i; | |
6183
a4bbda72ce86
fix two small bug and add multimedia keyboard support ( i tested with Acer AirKey V only )
pontscho
parents:
6159
diff
changeset
|
651 if ( wsWindowList[l]->KeyHandler ) wsWindowList[l]->KeyHandler( Event->xkey.keycode,i,key ); |
6089 | 652 } |
653 #endif | |
1693 | 654 break; |
655 | |
8916
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
656 case MotionNotify: |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
657 i=wsMoveMouse; |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
658 { |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
659 /* pump all motion events from the display queue: |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
660 this way it works faster when moving the window */ |
8973 | 661 static XEvent e; |
662 if ( Event->xmotion.state ) | |
663 { | |
664 while(XCheckTypedWindowEvent(display,Event->xany.window,MotionNotify,&e)){ | |
8916
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
665 /* FIXME: need to make sure we didn't release/press the button in between...*/ |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
666 /* FIXME: do we need some timeout here to make sure we don't spend too much time |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
667 removing events from the queue? */ |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
668 Event = &e; |
8973 | 669 } |
8916
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
670 } |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
671 } |
e3bce0159317
motion fix from Gregory Kovriga <gkovriga@techunix.technion.ac.il>
pontscho
parents:
8864
diff
changeset
|
672 goto buttonreleased; |
1693 | 673 case ButtonRelease: i=Event->xbutton.button + 128; goto buttonreleased; |
674 case ButtonPress: i=Event->xbutton.button; goto buttonreleased; | |
675 case EnterNotify: i=wsEnterWindow; goto buttonreleased; | |
676 case LeaveNotify: i=wsLeaveWindow; | |
677 buttonreleased: | |
678 if ( wsWindowList[l]->MouseHandler ) | |
679 wsWindowList[l]->MouseHandler( i,Event->xbutton.x,Event->xbutton.y,Event->xmotion.x_root,Event->xmotion.y_root ); | |
680 break; | |
681 | |
6967
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
682 case SelectionNotify: |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
683 /* Handle DandD */ |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
684 wsXDNDProcessSelection(wsWindowList[l],Event); |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6794
diff
changeset
|
685 break; |
1693 | 686 } |
687 XFlush( wsDisplay ); | |
688 XSync( wsDisplay,False ); | |
689 return !wsTrue; | |
690 } | |
691 | |
692 Bool wsDummyEvents( Display * display,XEvent * Event,XPointer arg ) | |
693 { return True; } | |
694 | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4566
diff
changeset
|
695 void wsHandleEvents( void ){ |
1709 | 696 // handle pending events |
697 while ( XPending(wsDisplay) ){ | |
698 XNextEvent( wsDisplay,&wsEvent ); | |
699 // printf("### X event: %d [%d]\n",wsEvent.type,delay); | |
700 wsEvents( wsDisplay,&wsEvent,NULL ); | |
701 } | |
702 } | |
703 | |
1693 | 704 void wsMainLoop( void ) |
705 { | |
1699 | 706 int delay=20; |
5919 | 707 mp_msg( MSGT_GPLAYER,MSGL_STATUS,"[ws] init threads: %d\n",XInitThreads() ); |
1693 | 708 XSynchronize( wsDisplay,False ); |
709 XLockDisplay( wsDisplay ); | |
710 // XIfEvent( wsDisplay,&wsEvent,wsEvents,NULL ); | |
1699 | 711 |
712 #if 1 | |
713 | |
714 while(wsTrue){ | |
715 // handle pending events | |
716 while ( XPending(wsDisplay) ){ | |
717 XNextEvent( wsDisplay,&wsEvent ); | |
718 wsEvents( wsDisplay,&wsEvent,NULL ); | |
1701 | 719 delay=0; |
1699 | 720 } |
721 usleep(delay*1000); // FIXME! | |
1701 | 722 if(delay<10*20) delay+=20; // pump up delay up to 0.2 sec (low activity) |
1699 | 723 } |
724 | |
725 #else | |
726 | |
1693 | 727 while( wsTrue ) |
728 { | |
729 XIfEvent( wsDisplay,&wsEvent,wsDummyEvents,NULL ); | |
730 wsEvents( wsDisplay,&wsEvent,NULL ); | |
731 } | |
1699 | 732 #endif |
733 | |
1693 | 734 XUnlockDisplay( wsDisplay ); |
735 } | |
736 | |
737 // ---------------------------------------------------------------------------------------------- | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
738 // Move window to selected layer |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
739 // ---------------------------------------------------------------------------------------------- |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
740 |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
741 #define WIN_LAYER_ONBOTTOM 2 |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
742 #define WIN_LAYER_NORMAL 4 |
8150 | 743 #define WIN_LAYER_ONTOP 10 |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
744 |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
745 void wsSetLayer( Display * wsDisplay, Window win, int layer ) |
8864 | 746 { vo_x11_setlayer( wsDisplay,win,layer ); } |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
747 |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
748 // ---------------------------------------------------------------------------------------------- |
1693 | 749 // Switch to fullscreen. |
750 // ---------------------------------------------------------------------------------------------- | |
751 void wsFullScreen( wsTWindow * win ) | |
752 { | |
753 int decoration = 0; | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
754 |
1693 | 755 if ( win->isFullScreen ) |
756 { | |
757 win->X=win->OldX; | |
758 win->Y=win->OldY; | |
759 win->Width=win->OldWidth; | |
760 win->Height=win->OldHeight; | |
761 win->isFullScreen=False; | |
762 decoration=win->Decorations; | |
8478 | 763 #ifdef ENABLE_DPMS |
1693 | 764 wsScreenSaverOn( wsDisplay ); |
8478 | 765 #endif |
1693 | 766 } |
767 else | |
768 { | |
769 win->OldX=win->X; win->OldY=win->Y; | |
770 win->OldWidth=win->Width; win->OldHeight=win->Height; | |
10194 | 771 win->X=wsOrgX; win->Y=wsOrgY; |
1693 | 772 win->Width=wsMaxX; win->Height=wsMaxY; |
773 win->isFullScreen=True; | |
8478 | 774 #ifdef ENABLE_DPMS |
1693 | 775 wsScreenSaverOff( wsDisplay ); |
8478 | 776 #endif |
1693 | 777 } |
778 | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8973
diff
changeset
|
779 vo_x11_decoration( wsDisplay,win->WindowID,decoration ); |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8973
diff
changeset
|
780 vo_x11_sizehint( win->X,win->Y,win->Width,win->Height,0 ); |
8864 | 781 vo_x11_setlayer( wsDisplay,win->WindowID,win->isFullScreen ); |
11542 | 782 |
783 if ((!(win->isFullScreen)) & vo_ontop) vo_x11_setlayer(wsDisplay, win->WindowID,1); | |
784 | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8973
diff
changeset
|
785 if ( vo_wm_type == 0 && !(vo_fsmode&16) ) |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8973
diff
changeset
|
786 XWithdrawWindow( wsDisplay,win->WindowID,wsScreen ); |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8973
diff
changeset
|
787 XMoveResizeWindow( wsDisplay,win->WindowID,win->X,win->Y,win->Width,win->Height ); |
5910
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5031
diff
changeset
|
788 XMapRaised( wsDisplay,win->WindowID ); |
1693 | 789 XRaiseWindow( wsDisplay,win->WindowID ); |
8864 | 790 XFlush( wsDisplay ); |
1693 | 791 } |
792 | |
793 // ---------------------------------------------------------------------------------------------- | |
794 // Redraw screen. | |
795 // ---------------------------------------------------------------------------------------------- | |
796 void wsPostRedisplay( wsTWindow * win ) | |
797 { | |
798 if ( win->ReDraw ) | |
799 { | |
6794 | 800 win->State=wsWindowExpose; |
8058 | 801 win->ReDraw(); |
1693 | 802 XFlush( wsDisplay ); |
803 } | |
804 } | |
805 | |
806 // ---------------------------------------------------------------------------------------------- | |
807 // Do Exit. | |
808 // ---------------------------------------------------------------------------------------------- | |
809 void wsDoExit( void ) | |
810 { wsTrue=False; wsResizeWindow( wsWindowList[0],32,32 ); } | |
811 | |
812 // ---------------------------------------------------------------------------------------------- | |
813 // Put 'Image' to window. | |
814 // ---------------------------------------------------------------------------------------------- | |
815 void wsConvert( wsTWindow * win,unsigned char * Image,unsigned int Size ) | |
2733 | 816 { if ( wsConvFunc ) wsConvFunc( Image,win->ImageData,win->xImage->width * win->xImage->height * 4 ); } |
1693 | 817 |
818 void wsPutImage( wsTWindow * win ) | |
819 { | |
820 if ( wsUseXShm ) | |
821 { | |
822 XShmPutImage( wsDisplay,win->WindowID,win->wGC,win->xImage, | |
823 0,0, | |
824 ( win->Width - win->xImage->width ) / 2,( win->Height - win->xImage->height ) / 2, | |
825 win->xImage->width,win->xImage->height,0 ); | |
826 } | |
827 else | |
828 { | |
829 XPutImage( wsDisplay,win->WindowID,win->wGC,win->xImage, | |
830 0,0, | |
831 ( win->Width - win->xImage->width ) / 2,( win->Height - win->xImage->height ) / 2, | |
832 win->xImage->width,win->xImage->height ); | |
833 } | |
834 } | |
835 | |
836 // ---------------------------------------------------------------------------------------------- | |
837 // Move window to x, y. | |
838 // ---------------------------------------------------------------------------------------------- | |
2854 | 839 void wsMoveWindow( wsTWindow * win,int b,int x, int y ) |
1693 | 840 { |
2854 | 841 if ( b ) |
1693 | 842 { |
2854 | 843 switch ( x ) |
844 { | |
10194 | 845 case -1: win->X=( wsMaxX / 2 ) - ( win->Width / 2 ) + wsOrgX; break; |
846 case -2: win->X=wsMaxX - win->Width + wsOrgX; break; | |
2854 | 847 default: win->X=x; break; |
848 } | |
849 switch ( y ) | |
850 { | |
10194 | 851 case -1: win->Y=( wsMaxY / 2 ) - ( win->Height / 2 ) + wsOrgY; break; |
852 case -2: win->Y=wsMaxY - win->Height + wsOrgY; break; | |
2854 | 853 default: win->Y=y; break; |
854 } | |
1693 | 855 } |
2854 | 856 else { win->X=x; win->Y=y; } |
1693 | 857 |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
858 win->SizeHint.flags=PPosition | PWinGravity; |
1693 | 859 win->SizeHint.x=win->X; |
860 win->SizeHint.y=win->Y; | |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
861 win->SizeHint.win_gravity=StaticGravity; |
1693 | 862 XSetWMNormalHints( wsDisplay,win->WindowID,&win->SizeHint ); |
863 | |
864 XMoveWindow( wsDisplay,win->WindowID,win->X,win->Y ); | |
1810 | 865 if ( win->ReSize ) win->ReSize( win->X,win->Y,win->Width,win->Height ); |
1693 | 866 } |
867 | |
868 // ---------------------------------------------------------------------------------------------- | |
869 // Resize window to sx, sy. | |
870 // ---------------------------------------------------------------------------------------------- | |
871 void wsResizeWindow( wsTWindow * win,int sx, int sy ) | |
872 { | |
873 win->Width=sx; | |
874 win->Height=sy; | |
875 | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
876 win->SizeHint.flags=PPosition | PSize | PWinGravity;// | PBaseSize; |
5986 | 877 win->SizeHint.x=win->X; |
878 win->SizeHint.y=win->Y; | |
1693 | 879 win->SizeHint.width=win->Width; |
880 win->SizeHint.height=win->Height; | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
881 |
1693 | 882 if ( win->Property & wsMinSize ) |
883 { | |
884 win->SizeHint.flags|=PMinSize; | |
885 win->SizeHint.min_width=win->Width; | |
886 win->SizeHint.min_height=win->Height; | |
887 } | |
888 if ( win->Property & wsMaxSize ) | |
889 { | |
890 win->SizeHint.flags|=PMaxSize; | |
891 win->SizeHint.max_width=win->Width; | |
892 win->SizeHint.max_height=win->Height; | |
893 } | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
894 |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
895 win->SizeHint.win_gravity=StaticGravity; |
5986 | 896 win->SizeHint.base_width=sx; win->SizeHint.base_height=sy; |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
897 |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
8973
diff
changeset
|
898 if ( vo_wm_type == 0 ) XUnmapWindow( wsDisplay,win->WindowID ); |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
899 |
1693 | 900 XSetWMNormalHints( wsDisplay,win->WindowID,&win->SizeHint ); |
901 XResizeWindow( wsDisplay,win->WindowID,sx,sy ); | |
5986 | 902 XMapRaised( wsDisplay,win->WindowID ); |
1810 | 903 if ( win->ReSize ) win->ReSize( win->X,win->Y,win->Width,win->Height ); |
1693 | 904 } |
905 | |
906 // ---------------------------------------------------------------------------------------------- | |
907 // Iconify window. | |
908 // ---------------------------------------------------------------------------------------------- | |
909 void wsIconify( wsTWindow win ) | |
910 { XIconifyWindow( wsDisplay,win.WindowID,0 ); } | |
911 | |
912 // ---------------------------------------------------------------------------------------------- | |
913 // Move top the window. | |
914 // ---------------------------------------------------------------------------------------------- | |
6146 | 915 void wsMoveTopWindow( Display * wsDisplay,Window win ) |
2851
b64fa5d25142
add roleld mouse support and some small bugfix. neked jol a testedbe.
pontscho
parents:
2782
diff
changeset
|
916 { |
8864 | 917 // XUnmapWindow( wsDisplay,win ); |
918 // XMapWindow( wsDisplay,win ); | |
919 XMapRaised( wsDisplay,win ); | |
920 XRaiseWindow( wsDisplay,win ); | |
2045 | 921 } |
1693 | 922 |
923 // ---------------------------------------------------------------------------------------------- | |
924 // Set window background to 'color'. | |
925 // ---------------------------------------------------------------------------------------------- | |
926 void wsSetBackground( wsTWindow * win,int color ) | |
927 { XSetWindowBackground( wsDisplay,win->WindowID,color ); } | |
928 | |
929 void wsSetBackgroundRGB( wsTWindow * win,int r,int g,int b ) | |
930 { | |
931 int color = 0; | |
932 switch ( wsOutMask ) | |
933 { | |
934 case wsRGB32: | |
935 case wsRGB24: color=( r << 16 ) + ( g << 8 ) + b; break; | |
936 case wsBGR32: | |
937 case wsBGR24: color=( b << 16 ) + ( g << 8 ) + r; break; | |
2733 | 938 case wsRGB16: PACK_RGB16( b,g,r,color ); break; |
939 case wsBGR16: PACK_RGB16( r,g,b,color ); break; | |
940 case wsRGB15: PACK_RGB15( b,g,r,color ); break; | |
941 case wsBGR15: PACK_RGB15( r,g,b,color ); break; | |
1693 | 942 } |
943 XSetWindowBackground( wsDisplay,win->WindowID,color ); | |
944 } | |
945 | |
1814 | 946 void wsSetForegroundRGB( wsTWindow * win,int r,int g,int b ) |
947 { | |
948 int color = 0; | |
949 switch ( wsOutMask ) | |
950 { | |
951 case wsRGB32: | |
952 case wsRGB24: color=( r << 16 ) + ( g << 8 ) + b; break; | |
953 case wsBGR32: | |
954 case wsBGR24: color=( b << 16 ) + ( g << 8 ) + r; break; | |
2733 | 955 case wsRGB16: PACK_RGB16( b,g,r,color ); break; |
956 case wsBGR16: PACK_RGB16( r,g,b,color ); break; | |
957 case wsRGB15: PACK_RGB15( b,g,r,color ); break; | |
958 case wsBGR15: PACK_RGB15( r,g,b,color ); break; | |
1814 | 959 } |
960 XSetForeground( wsDisplay,win->wGC,color ); | |
961 } | |
1693 | 962 |
963 // ---------------------------------------------------------------------------------------------- | |
964 // Draw string at x,y with fc ( foreground color ) and bc ( background color ). | |
965 // ---------------------------------------------------------------------------------------------- | |
966 void wsDrawString( wsTWindow win,int x,int y,char * str,int fc,int bc ) | |
967 { | |
968 XSetForeground( wsDisplay,win.wGC,bc ); | |
969 XFillRectangle( wsDisplay,win.WindowID,win.wGC,x,y, | |
970 XTextWidth( win.Font,str,strlen( str ) ) + 20, | |
971 win.FontHeight + 2 ); | |
972 XSetForeground( wsDisplay,win.wGC,fc ); | |
973 XDrawString( wsDisplay,win.WindowID,win.wGC,x + 10,y + 13,str,strlen( str ) ); | |
974 } | |
975 | |
976 // ---------------------------------------------------------------------------------------------- | |
977 // Calculation string width. | |
978 // ---------------------------------------------------------------------------------------------- | |
979 int wsTextWidth( wsTWindow win,char * str ) | |
980 { return XTextWidth( win.Font,str,strlen( str ) ) + 20; } | |
981 | |
982 // ---------------------------------------------------------------------------------------------- | |
983 // Show / hide mouse cursor. | |
984 // ---------------------------------------------------------------------------------------------- | |
985 void wsVisibleMouse( wsTWindow * win,int m ) | |
986 { | |
987 switch ( m ) | |
988 { | |
989 case wsShowMouseCursor: | |
990 if ( win->wsCursor != None ) | |
991 { | |
992 XFreeCursor( wsDisplay,win->wsCursor ); | |
993 win->wsCursor=None; | |
994 } | |
995 XDefineCursor( wsDisplay,win->WindowID,0 ); | |
996 break; | |
997 case wsHideMouseCursor: | |
998 win->wsCursor=XCreatePixmapCursor( wsDisplay,win->wsCursorPixmap,win->wsCursorPixmap,&win->wsColor,&win->wsColor,0,0 ); | |
999 XDefineCursor( wsDisplay,win->WindowID,win->wsCursor ); | |
1000 break; | |
1001 } | |
1002 XFlush( wsDisplay ); | |
1003 } | |
1004 | |
1005 int wsGetDepthOnScreen( void ) | |
1006 { | |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1007 int depth; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1008 XImage * mXImage; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1009 Visual * visual; |
1693 | 1010 |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1011 if( (depth = vo_find_depth_from_visuals( wsDisplay,wsScreen,&visual )) > 0 ) |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1012 { |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1013 mXImage = XCreateImage( wsDisplay,visual,depth,ZPixmap,0,NULL, |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1014 1,1,32,0 ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1015 wsDepthOnScreen = mXImage->bits_per_pixel; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1016 wsRedMask=mXImage->red_mask; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1017 wsGreenMask=mXImage->green_mask; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1018 wsBlueMask=mXImage->blue_mask; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1019 XDestroyImage( mXImage ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1020 } |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1021 else |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1022 { |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1023 int bpp,ibpp; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1024 XWindowAttributes attribs; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1025 |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1026 mXImage=XGetImage( wsDisplay,wsRootWin,0,0,1,1,AllPlanes,ZPixmap ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1027 bpp=mXImage->bits_per_pixel; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1028 |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1029 XGetWindowAttributes( wsDisplay,wsRootWin,&attribs ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1030 ibpp=attribs.depth; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1031 mXImage=XGetImage( wsDisplay,wsRootWin,0,0,1,1,AllPlanes,ZPixmap ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1032 bpp=mXImage->bits_per_pixel; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1033 if ( ( ibpp + 7 ) / 8 != ( bpp + 7 ) / 8 ) ibpp=bpp; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1034 wsDepthOnScreen=ibpp; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1035 wsRedMask=mXImage->red_mask; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1036 wsGreenMask=mXImage->green_mask; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1037 wsBlueMask=mXImage->blue_mask; |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1038 XDestroyImage( mXImage ); |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1039 } |
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1040 return wsDepthOnScreen; |
1693 | 1041 } |
1042 | |
1043 void wsXDone( void ) | |
1044 { | |
1045 XCloseDisplay( wsDisplay ); | |
1046 } | |
1047 | |
1048 void wsVisibleWindow( wsTWindow * win,int show ) | |
1049 { | |
1050 switch( show ) | |
1051 { | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
1052 case wsShowWindow: XMapRaised( wsDisplay,win->WindowID ); break; |
1693 | 1053 case wsHideWindow: XUnmapWindow( wsDisplay,win->WindowID ); break; |
1054 } | |
1055 XFlush( wsDisplay ); | |
1056 } | |
1057 | |
1058 void wsDestroyImage( wsTWindow * win ) | |
1059 { | |
1060 if ( win->xImage ) | |
1061 { | |
1062 XDestroyImage( win->xImage ); | |
1063 if ( wsUseXShm ) | |
1064 { | |
1065 XShmDetach( wsDisplay,&win->Shminfo ); | |
1066 shmdt( win->Shminfo.shmaddr ); | |
1067 } | |
1068 } | |
1069 win->xImage=NULL; | |
1070 } | |
1071 | |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1853
diff
changeset
|
1072 void wsCreateImage( wsTWindow * win,int Width,int Height ) |
1693 | 1073 { |
1074 int CompletionType = -1; | |
1075 if ( wsUseXShm ) | |
1076 { | |
1077 CompletionType=XShmGetEventBase( wsDisplay ) + ShmCompletion; | |
1078 win->xImage=XShmCreateImage( wsDisplay,win->VisualInfo.visual, | |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1079 win->VisualInfo.depth,ZPixmap,NULL,&win->Shminfo,Width,Height ); |
1693 | 1080 if ( win->xImage == NULL ) |
1081 { | |
5919 | 1082 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] shared memory extension error.\n" ); |
1693 | 1083 exit( 0 ); |
1084 } | |
1085 win->Shminfo.shmid=shmget( IPC_PRIVATE,win->xImage->bytes_per_line * win->xImage->height,IPC_CREAT|0777 ); | |
1086 if ( win->Shminfo.shmid < 0 ) | |
1087 { | |
1088 XDestroyImage( win->xImage ); | |
5919 | 1089 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] shared memory extension error.\n" ); |
1693 | 1090 exit( 0 ); |
1091 } | |
1092 win->Shminfo.shmaddr=(char *)shmat( win->Shminfo.shmid,0,0 ); | |
1093 | |
1094 if ( win->Shminfo.shmaddr == ((char *) -1) ) | |
1095 { | |
1096 XDestroyImage( win->xImage ); | |
1097 if ( win->Shminfo.shmaddr != ((char *) -1) ) shmdt( win->Shminfo.shmaddr ); | |
5919 | 1098 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] shared memory extension error.\n" ); |
1693 | 1099 exit( 0 ); |
1100 } | |
1101 win->xImage->data=win->Shminfo.shmaddr; | |
1102 win->Shminfo.readOnly=0; | |
1103 XShmAttach( wsDisplay,&win->Shminfo ); | |
1104 shmctl( win->Shminfo.shmid,IPC_RMID,0 ); | |
1105 } | |
1106 else | |
1107 { | |
7802
037982e833a7
Choose a good visual from the list of supported visuals on the X11 server,
jkeil
parents:
7801
diff
changeset
|
1108 win->xImage=XCreateImage( wsDisplay,win->VisualInfo.visual,win->VisualInfo.depth, |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1853
diff
changeset
|
1109 ZPixmap,0,0,Width,Height, |
1693 | 1110 (wsDepthOnScreen == 3) ? 32 : wsDepthOnScreen, |
1111 0 ); | |
1112 if ( ( win->xImage->data=malloc( win->xImage->bytes_per_line * win->xImage->height ) ) == NULL ) | |
1113 { | |
5919 | 1114 mp_msg( MSGT_GPLAYER,MSGL_FATAL,"[ws] sorry, not enough memory for draw buffer.\n" ); |
1693 | 1115 exit( 0 ); |
1116 } | |
1117 } | |
1118 win->ImageData=(unsigned char *)win->xImage->data; | |
1119 win->ImageDataw=(unsigned short int *)win->xImage->data; | |
1120 win->ImageDatadw=(unsigned int *)win->xImage->data; | |
1121 } | |
1122 | |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1853
diff
changeset
|
1123 void wsResizeImage( wsTWindow * win,int Width,int Height ) |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1853
diff
changeset
|
1124 { wsDestroyImage( win ); wsCreateImage( win,Width,Height ); } |
1693 | 1125 |
1126 int wsGetOutMask( void ) | |
1127 { | |
1128 if ( ( wsDepthOnScreen == 32 )&&( wsRedMask == 0xff0000 )&&( wsGreenMask == 0x00ff00 )&&( wsBlueMask == 0x0000ff ) ) return wsRGB32; | |
1129 if ( ( wsDepthOnScreen == 32 )&&( wsRedMask == 0x0000ff )&&( wsGreenMask == 0x00ff00 )&&( wsBlueMask == 0xff0000 ) ) return wsBGR32; | |
1130 if ( ( wsDepthOnScreen == 24 )&&( wsRedMask == 0xff0000 )&&( wsGreenMask == 0x00ff00 )&&( wsBlueMask == 0x0000ff ) ) return wsRGB24; | |
1131 if ( ( wsDepthOnScreen == 24 )&&( wsRedMask == 0x0000ff )&&( wsGreenMask == 0x00ff00 )&&( wsBlueMask == 0xff0000 ) ) return wsBGR24; | |
1132 if ( ( wsDepthOnScreen == 16 )&&( wsRedMask == 0xf800 )&&( wsGreenMask == 0x7e0 )&&( wsBlueMask == 0x1f ) ) return wsRGB16; | |
1133 if ( ( wsDepthOnScreen == 16 )&&( wsRedMask == 0x1f )&&( wsGreenMask == 0x7e0 )&&( wsBlueMask == 0xf800 ) ) return wsBGR16; | |
1134 if ( ( wsDepthOnScreen == 15 )&&( wsRedMask == 0x7c00 )&&( wsGreenMask == 0x3e0 )&&( wsBlueMask == 0x1f ) ) return wsRGB15; | |
1135 if ( ( wsDepthOnScreen == 15 )&&( wsRedMask == 0x1f )&&( wsGreenMask == 0x3e0 )&&( wsBlueMask == 0x7c00 ) ) return wsBGR15; | |
1136 return 0; | |
1137 } | |
1138 | |
1139 void wsSetTitle( wsTWindow * win,char * name ) | |
1140 { XStoreName( wsDisplay,win->WindowID,name ); } | |
1141 | |
1142 void wsSetMousePosition( wsTWindow * win,int x, int y ) | |
1143 { XWarpPointer( wsDisplay,wsRootWin,win->WindowID,0,0,0,0,x,y ); } | |
1144 | |
8478 | 1145 #ifdef ENABLE_DPMS |
1693 | 1146 static int dpms_disabled=0; |
1147 static int timeout_save=0; | |
1148 | |
1149 void wsScreenSaverOn( Display *mDisplay ) | |
1150 { | |
1151 int nothing; | |
4566 | 1152 #ifdef HAVE_XDPMS |
1693 | 1153 if ( dpms_disabled ) |
1154 { | |
1155 if ( DPMSQueryExtension( mDisplay,¬hing,¬hing ) ) | |
1156 { | |
5919 | 1157 if ( !DPMSEnable( mDisplay ) ) mp_msg( MSGT_GPLAYER,MSGL_ERR,"DPMS not available ?\n" ); // restoring power saving settings |
1693 | 1158 else |
1159 { | |
1160 // DPMS does not seem to be enabled unless we call DPMSInfo | |
1161 BOOL onoff; | |
1162 CARD16 state; | |
1163 DPMSInfo( mDisplay,&state,&onoff ); | |
5919 | 1164 if ( onoff ) mp_msg( MSGT_GPLAYER,MSGL_STATUS,"Successfully enabled DPMS.\n" ); |
1165 else mp_msg( MSGT_GPLAYER,MSGL_STATUS,"Could not enable DPMS.\n" ); | |
1693 | 1166 } |
1167 } | |
1168 } | |
4566 | 1169 #endif |
1693 | 1170 if ( timeout_save ) |
1171 { | |
1172 int dummy, interval, prefer_blank, allow_exp; | |
1173 XGetScreenSaver( mDisplay,&dummy,&interval,&prefer_blank,&allow_exp ); | |
1174 XSetScreenSaver( mDisplay,timeout_save,interval,prefer_blank,allow_exp ); | |
1175 XGetScreenSaver( mDisplay,&timeout_save,&interval,&prefer_blank,&allow_exp ); | |
1176 } | |
1177 } | |
1178 | |
1179 void wsScreenSaverOff( Display * mDisplay ) | |
1180 { | |
1181 int interval,prefer_blank,allow_exp,nothing; | |
4566 | 1182 #ifdef HAVE_XDPMS |
1693 | 1183 if ( DPMSQueryExtension( mDisplay,¬hing,¬hing ) ) |
1184 { | |
1185 BOOL onoff; | |
1186 CARD16 state; | |
1187 DPMSInfo( mDisplay,&state,&onoff ); | |
1188 if ( onoff ) | |
1189 { | |
1190 Status stat; | |
5919 | 1191 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"Disabling DPMS.\n" ); |
1693 | 1192 dpms_disabled=1; |
1193 stat=DPMSDisable( mDisplay ); // monitor powersave off | |
5919 | 1194 mp_dbg( MSGT_GPLAYER,MSGL_DBG2,"stat: %d.\n",stat ); |
1693 | 1195 } |
1196 } | |
4566 | 1197 #endif |
1693 | 1198 XGetScreenSaver( mDisplay,&timeout_save,&interval,&prefer_blank,&allow_exp ); |
1199 if ( timeout_save ) XSetScreenSaver( mDisplay,0,interval,prefer_blank,allow_exp ); // turning off screensaver | |
1200 } | |
8478 | 1201 #endif |
1693 | 1202 |
1203 void wsSetShape( wsTWindow * win,char * data ) | |
1204 { | |
1205 #ifdef HAVE_XSHAPE | |
1852 | 1206 if ( !wsUseXShape ) return; |
1207 if ( data ) | |
1208 { | |
1209 win->Mask=XCreateBitmapFromData( wsDisplay,win->WindowID,data,win->Width,win->Height ); | |
1210 XShapeCombineMask( wsDisplay,win->WindowID,ShapeBounding,0,0,win->Mask,ShapeSet ); | |
1211 XFreePixmap( wsDisplay,win->Mask ); | |
1212 } | |
1213 else XShapeCombineMask( wsDisplay,win->WindowID,ShapeBounding,0,0,None,ShapeSet ); | |
1693 | 1214 #endif |
1215 } | |
1216 | |
6651 | 1217 void wsSetIcon( Display * dsp,Window win,Pixmap icon,Pixmap mask ) |
1218 { | |
1219 XWMHints * wm; | |
1220 long data[2]; | |
1221 Atom iconatom; | |
1222 | |
1223 wm=XGetWMHints( dsp,win ); | |
1224 if ( !wm ) wm=XAllocWMHints(); | |
1225 | |
1226 wm->icon_pixmap=icon; | |
1227 wm->icon_mask=mask; | |
1228 wm->flags|=IconPixmapHint | IconMaskHint; | |
1229 | |
1230 XSetWMHints( dsp,win,wm ); | |
1231 | |
1232 data[0]=icon; | |
1233 data[1]=mask; | |
1234 iconatom=XInternAtom( dsp,"KWM_WIN_ICON",0 ); | |
1235 XChangeProperty( dsp,win,iconatom,iconatom,32,PropModeReplace,(unsigned char *)data,2 ); | |
1236 | |
1237 XFree( wm ); | |
1238 } | |
1239 | |
1693 | 1240 #include "wsmkeys.h" |