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