mshtml: Added IOmNavigator::get_mimeTypes implementation.
[wine] / dlls / winex11.drv / mouse.c
1 /*
2  * X11 mouse driver
3  *
4  * Copyright 1998 Ulrich Weigand
5  * Copyright 2007 Henri Verbeet
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <X11/Xlib.h>
26 #include <X11/cursorfont.h>
27 #include <stdarg.h>
28 #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
29 #include <X11/extensions/XInput2.h>
30 #endif
31
32 #ifdef SONAME_LIBXCURSOR
33 # include <X11/Xcursor/Xcursor.h>
34 static void *xcursor_handle;
35 # define MAKE_FUNCPTR(f) static typeof(f) * p##f
36 MAKE_FUNCPTR(XcursorImageCreate);
37 MAKE_FUNCPTR(XcursorImageDestroy);
38 MAKE_FUNCPTR(XcursorImageLoadCursor);
39 MAKE_FUNCPTR(XcursorImagesCreate);
40 MAKE_FUNCPTR(XcursorImagesDestroy);
41 MAKE_FUNCPTR(XcursorImagesLoadCursor);
42 MAKE_FUNCPTR(XcursorLibraryLoadCursor);
43 # undef MAKE_FUNCPTR
44 #endif /* SONAME_LIBXCURSOR */
45
46 #define NONAMELESSUNION
47 #define NONAMELESSSTRUCT
48 #define OEMRESOURCE
49 #include "windef.h"
50 #include "winbase.h"
51 #include "winreg.h"
52
53 #include "x11drv.h"
54 #include "wine/server.h"
55 #include "wine/library.h"
56 #include "wine/unicode.h"
57 #include "wine/debug.h"
58
59 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
60
61 /**********************************************************************/
62
63 #ifndef Button6Mask
64 #define Button6Mask (1<<13)
65 #endif
66 #ifndef Button7Mask
67 #define Button7Mask (1<<14)
68 #endif
69
70 #define NB_BUTTONS   9     /* Windows can handle 5 buttons and the wheel too */
71
72 static const UINT button_down_flags[NB_BUTTONS] =
73 {
74     MOUSEEVENTF_LEFTDOWN,
75     MOUSEEVENTF_MIDDLEDOWN,
76     MOUSEEVENTF_RIGHTDOWN,
77     MOUSEEVENTF_WHEEL,
78     MOUSEEVENTF_WHEEL,
79     MOUSEEVENTF_XDOWN,  /* FIXME: horizontal wheel */
80     MOUSEEVENTF_XDOWN,
81     MOUSEEVENTF_XDOWN,
82     MOUSEEVENTF_XDOWN
83 };
84
85 static const UINT button_up_flags[NB_BUTTONS] =
86 {
87     MOUSEEVENTF_LEFTUP,
88     MOUSEEVENTF_MIDDLEUP,
89     MOUSEEVENTF_RIGHTUP,
90     0,
91     0,
92     MOUSEEVENTF_XUP,
93     MOUSEEVENTF_XUP,
94     MOUSEEVENTF_XUP,
95     MOUSEEVENTF_XUP
96 };
97
98 static const UINT button_down_data[NB_BUTTONS] =
99 {
100     0,
101     0,
102     0,
103     WHEEL_DELTA,
104     -WHEEL_DELTA,
105     XBUTTON1,
106     XBUTTON2,
107     XBUTTON1,
108     XBUTTON2
109 };
110
111 static const UINT button_up_data[NB_BUTTONS] =
112 {
113     0,
114     0,
115     0,
116     0,
117     0,
118     XBUTTON1,
119     XBUTTON2,
120     XBUTTON1,
121     XBUTTON2
122 };
123
124 static HWND cursor_window;
125 static HCURSOR last_cursor;
126 static DWORD last_cursor_change;
127 static XContext cursor_context;
128 static RECT clip_rect;
129 static Cursor create_cursor( HANDLE handle );
130
131 #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
132 static BOOL xinput2_available;
133 static int xinput2_core_pointer;
134 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
135 MAKE_FUNCPTR(XIFreeDeviceInfo);
136 MAKE_FUNCPTR(XIQueryDevice);
137 MAKE_FUNCPTR(XIQueryVersion);
138 MAKE_FUNCPTR(XISelectEvents);
139 #undef MAKE_FUNCPTR
140 #endif
141
142 /***********************************************************************
143  *              X11DRV_Xcursor_Init
144  *
145  * Load the Xcursor library for use.
146  */
147 void X11DRV_Xcursor_Init(void)
148 {
149 #ifdef SONAME_LIBXCURSOR
150     xcursor_handle = wine_dlopen(SONAME_LIBXCURSOR, RTLD_NOW, NULL, 0);
151     if (!xcursor_handle)  /* wine_dlopen failed. */
152     {
153         WARN("Xcursor failed to load.  Using fallback code.\n");
154         return;
155     }
156 #define LOAD_FUNCPTR(f) \
157         p##f = wine_dlsym(xcursor_handle, #f, NULL, 0)
158
159     LOAD_FUNCPTR(XcursorImageCreate);
160     LOAD_FUNCPTR(XcursorImageDestroy);
161     LOAD_FUNCPTR(XcursorImageLoadCursor);
162     LOAD_FUNCPTR(XcursorImagesCreate);
163     LOAD_FUNCPTR(XcursorImagesDestroy);
164     LOAD_FUNCPTR(XcursorImagesLoadCursor);
165     LOAD_FUNCPTR(XcursorLibraryLoadCursor);
166 #undef LOAD_FUNCPTR
167 #endif /* SONAME_LIBXCURSOR */
168 }
169
170
171 /***********************************************************************
172  *              get_empty_cursor
173  */
174 static Cursor get_empty_cursor(void)
175 {
176     static Cursor cursor;
177     static const char data[] = { 0 };
178
179     wine_tsx11_lock();
180     if (!cursor)
181     {
182         XColor bg;
183         Pixmap pixmap;
184
185         bg.red = bg.green = bg.blue = 0x0000;
186         pixmap = XCreateBitmapFromData( gdi_display, root_window, data, 1, 1 );
187         if (pixmap)
188         {
189             cursor = XCreatePixmapCursor( gdi_display, pixmap, pixmap, &bg, &bg, 0, 0 );
190             XFreePixmap( gdi_display, pixmap );
191         }
192     }
193     wine_tsx11_unlock();
194     return cursor;
195 }
196
197 /***********************************************************************
198  *              set_window_cursor
199  */
200 void set_window_cursor( Window window, HCURSOR handle )
201 {
202     Cursor cursor, prev;
203
204     wine_tsx11_lock();
205     if (!handle) cursor = get_empty_cursor();
206     else if (!cursor_context || XFindContext( gdi_display, (XID)handle, cursor_context, (char **)&cursor ))
207     {
208         /* try to create it */
209         wine_tsx11_unlock();
210         if (!(cursor = create_cursor( handle ))) return;
211
212         wine_tsx11_lock();
213         if (!cursor_context) cursor_context = XUniqueContext();
214         if (!XFindContext( gdi_display, (XID)handle, cursor_context, (char **)&prev ))
215         {
216             /* someone else was here first */
217             XFreeCursor( gdi_display, cursor );
218             cursor = prev;
219         }
220         else
221         {
222             XSaveContext( gdi_display, (XID)handle, cursor_context, (char *)cursor );
223             TRACE( "cursor %p created %lx\n", handle, cursor );
224         }
225     }
226
227     XDefineCursor( gdi_display, window, cursor );
228     /* make the change take effect immediately */
229     XFlush( gdi_display );
230     wine_tsx11_unlock();
231 }
232
233 /***********************************************************************
234  *              sync_window_cursor
235  */
236 void sync_window_cursor( Window window )
237 {
238     HCURSOR cursor;
239
240     SERVER_START_REQ( set_cursor )
241     {
242         req->flags = 0;
243         wine_server_call( req );
244         cursor = reply->prev_count >= 0 ? wine_server_ptr_handle( reply->prev_handle ) : 0;
245     }
246     SERVER_END_REQ;
247
248     set_window_cursor( window, cursor );
249 }
250
251 /***********************************************************************
252  *              enable_xinput2
253  */
254 static void enable_xinput2(void)
255 {
256 #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
257     struct x11drv_thread_data *data = x11drv_thread_data();
258     XIDeviceInfo *devices;
259     XIEventMask mask;
260     unsigned char mask_bits[XIMaskLen(XI_LASTEVENT)];
261     int i, count;
262
263     if (!xinput2_available) return;
264
265     if (data->xi2_state == xi_unknown)
266     {
267         int major = 2, minor = 0;
268         wine_tsx11_lock();
269         if (!pXIQueryVersion( data->display, &major, &minor )) data->xi2_state = xi_disabled;
270         else
271         {
272             data->xi2_state = xi_unavailable;
273             WARN( "X Input 2 not available\n" );
274         }
275         wine_tsx11_unlock();
276     }
277     if (data->xi2_state == xi_unavailable) return;
278
279     wine_tsx11_lock();
280     devices = pXIQueryDevice( data->display, XIAllDevices, &count );
281     for (i = 0; i < count; ++i)
282     {
283         if (devices[i].use != XIMasterPointer) continue;
284         TRACE( "Using %u (%s) as core pointer\n",
285                devices[i].deviceid, debugstr_a(devices[i].name) );
286         xinput2_core_pointer = devices[i].deviceid;
287         break;
288     }
289
290     mask.mask     = mask_bits;
291     mask.mask_len = sizeof(mask_bits);
292     memset( mask_bits, 0, sizeof(mask_bits) );
293     XISetMask( mask_bits, XI_RawMotion );
294
295     for (i = 0; i < count; ++i)
296     {
297         if (devices[i].use == XISlavePointer && devices[i].attachment == xinput2_core_pointer)
298         {
299             TRACE( "Device %u (%s) is attached to the core pointer\n",
300                    devices[i].deviceid, debugstr_a(devices[i].name) );
301             mask.deviceid = devices[i].deviceid;
302             pXISelectEvents( data->display, DefaultRootWindow( data->display ), &mask, 1 );
303             data->xi2_state = xi_enabled;
304         }
305     }
306
307     pXIFreeDeviceInfo( devices );
308     wine_tsx11_unlock();
309 #endif
310 }
311
312 /***********************************************************************
313  *              disable_xinput2
314  */
315 static void disable_xinput2(void)
316 {
317 #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
318     struct x11drv_thread_data *data = x11drv_thread_data();
319     XIEventMask mask;
320     XIDeviceInfo *devices;
321     int i, count;
322
323     if (data->xi2_state != xi_enabled) return;
324
325     TRACE( "disabling\n" );
326     data->xi2_state = xi_disabled;
327
328     mask.mask = NULL;
329     mask.mask_len = 0;
330
331     wine_tsx11_lock();
332     devices = pXIQueryDevice( data->display, XIAllDevices, &count );
333     for (i = 0; i < count; ++i)
334     {
335         if (devices[i].use == XISlavePointer && devices[i].attachment == xinput2_core_pointer)
336         {
337             mask.deviceid = devices[i].deviceid;
338             pXISelectEvents( data->display, DefaultRootWindow( data->display ), &mask, 1 );
339         }
340     }
341     pXIFreeDeviceInfo( devices );
342     wine_tsx11_unlock();
343 #endif
344 }
345
346 /***********************************************************************
347  *             create_clipping_msg_window
348  */
349 static HWND create_clipping_msg_window(void)
350 {
351     static const WCHAR class_name[] = {'_','_','x','1','1','d','r','v','_','c','l','i','p','_','c','l','a','s','s',0};
352     static ATOM clip_class;
353
354     if (!clip_class)
355     {
356         WNDCLASSW class;
357         ATOM atom;
358
359         memset( &class, 0, sizeof(class) );
360         class.lpfnWndProc   = DefWindowProcW;
361         class.hInstance     = GetModuleHandleW(0);
362         class.lpszClassName = class_name;
363         if ((atom = RegisterClassW( &class ))) clip_class = atom;
364     }
365     return CreateWindowW( class_name, NULL, 0, 0, 0, 0, 0, HWND_MESSAGE, 0, GetModuleHandleW(0), NULL );
366 }
367
368 /***********************************************************************
369  *              grab_clipping_window
370  *
371  * Start a pointer grab on the clip window.
372  */
373 static BOOL grab_clipping_window( const RECT *clip, BOOL only_with_xinput )
374 {
375     struct x11drv_thread_data *data = x11drv_thread_data();
376     Window clip_window;
377     HWND msg_hwnd = 0;
378
379     if (!data) return FALSE;
380     if (!(clip_window = init_clip_window())) return TRUE;
381
382     /* create a clip message window unless we are already clipping */
383     if (!data->clip_hwnd)
384     {
385         if (!(msg_hwnd = create_clipping_msg_window())) return TRUE;
386         enable_xinput2();
387     }
388
389     /* don't clip to 1x1 rectangle if we don't have XInput */
390     if (clip->right - clip->left == 1 && clip->bottom - clip->top == 1) only_with_xinput = TRUE;
391     if (only_with_xinput && data->xi2_state != xi_enabled)
392     {
393         WARN( "XInput2 not supported, refusing to clip to %s\n", wine_dbgstr_rect(clip) );
394         if (msg_hwnd) DestroyWindow( msg_hwnd );
395         ClipCursor( NULL );
396         return TRUE;
397     }
398
399     TRACE( "clipping to %s win %lx\n", wine_dbgstr_rect(clip), clip_window );
400
401     wine_tsx11_lock();
402     if (msg_hwnd) XUnmapWindow( data->display, clip_window );
403     XMoveResizeWindow( data->display, clip_window,
404                        clip->left - virtual_screen_rect.left, clip->top - virtual_screen_rect.top,
405                        clip->right - clip->left, clip->bottom - clip->top );
406     XMapWindow( data->display, clip_window );
407
408     /* if the rectangle is shrinking we may get a pointer warp */
409     if (msg_hwnd || clip->left > clip_rect.left || clip->top > clip_rect.top ||
410         clip->right < clip_rect.right || clip->bottom < clip_rect.bottom)
411         data->warp_serial = NextRequest( data->display );
412
413     if (!XGrabPointer( data->display, clip_window, False,
414                        PointerMotionMask | ButtonPressMask | ButtonReleaseMask,
415                        GrabModeAsync, GrabModeAsync, clip_window, None, CurrentTime ))
416         clipping_cursor = 1;
417     wine_tsx11_unlock();
418
419     if (!clipping_cursor)
420     {
421         disable_xinput2();
422         if (msg_hwnd) DestroyWindow( msg_hwnd );
423         return FALSE;
424     }
425     clip_rect = *clip;
426     if (msg_hwnd)
427     {
428         data->clip_hwnd = msg_hwnd;
429         sync_window_cursor( clip_window );
430         SendMessageW( GetDesktopWindow(), WM_X11DRV_CLIP_CURSOR, 0, (LPARAM)msg_hwnd );
431     }
432     return TRUE;
433 }
434
435 /***********************************************************************
436  *              ungrab_clipping_window
437  *
438  * Release the pointer grab on the clip window.
439  */
440 void ungrab_clipping_window(void)
441 {
442     Display *display = thread_init_display();
443     Window clip_window = init_clip_window();
444
445     if (!clip_window) return;
446
447     TRACE( "no longer clipping\n" );
448     wine_tsx11_lock();
449     XUnmapWindow( display, clip_window );
450     wine_tsx11_unlock();
451     clipping_cursor = 0;
452     SendMessageW( GetDesktopWindow(), WM_X11DRV_CLIP_CURSOR, 0, 0 );
453 }
454
455 /***********************************************************************
456  *              reset_clipping_window
457  *
458  * Forcibly reset the window clipping on external events.
459  */
460 void reset_clipping_window(void)
461 {
462     ungrab_clipping_window();
463     ClipCursor( NULL );  /* make sure the clip rectangle is reset too */
464 }
465
466 /***********************************************************************
467  *             clip_cursor_notify
468  *
469  * Notification function called upon receiving a WM_X11DRV_CLIP_CURSOR.
470  */
471 LRESULT clip_cursor_notify( HWND hwnd, HWND new_clip_hwnd )
472 {
473     struct x11drv_thread_data *data = x11drv_thread_data();
474
475     if (hwnd == GetDesktopWindow())  /* change the clip window stored in the desktop process */
476     {
477         static HWND clip_hwnd;
478
479         HWND prev = clip_hwnd;
480         clip_hwnd = new_clip_hwnd;
481         if (prev || new_clip_hwnd) TRACE( "clip hwnd changed from %p to %p\n", prev, new_clip_hwnd );
482         if (prev) SendNotifyMessageW( prev, WM_X11DRV_CLIP_CURSOR, 0, 0 );
483     }
484     else if (hwnd == data->clip_hwnd)  /* this is a notification that clipping has been reset */
485     {
486         data->clip_hwnd = 0;
487         data->clip_reset = GetTickCount();
488         disable_xinput2();
489         DestroyWindow( hwnd );
490     }
491     else if (hwnd == GetForegroundWindow())  /* request to clip */
492     {
493         RECT clip;
494
495         GetClipCursor( &clip );
496         if (clip.left > virtual_screen_rect.left || clip.right < virtual_screen_rect.right ||
497             clip.top > virtual_screen_rect.top   || clip.bottom < virtual_screen_rect.bottom)
498             return grab_clipping_window( &clip, FALSE );
499     }
500     return 0;
501 }
502
503 /***********************************************************************
504  *              clip_fullscreen_window
505  *
506  * Turn on clipping if the active window is fullscreen.
507  */
508 BOOL clip_fullscreen_window( HWND hwnd, BOOL reset )
509 {
510     struct x11drv_win_data *data;
511     struct x11drv_thread_data *thread_data;
512     RECT rect;
513     DWORD style;
514
515     if (hwnd == GetDesktopWindow()) return FALSE;
516     if (!(data = X11DRV_get_win_data( hwnd ))) return FALSE;
517     style = GetWindowLongW( hwnd, GWL_STYLE );
518     if (!(style & WS_VISIBLE)) return FALSE;
519     if ((style & (WS_POPUP | WS_CHILD)) == WS_CHILD) return FALSE;
520     /* maximized windows don't count as full screen */
521     if ((style & WS_MAXIMIZE) && (style & WS_CAPTION) == WS_CAPTION) return FALSE;
522     if (!is_window_rect_fullscreen( &data->whole_rect )) return FALSE;
523     if (!(thread_data = x11drv_thread_data())) return FALSE;
524     if (GetTickCount() - thread_data->clip_reset < 1000) return FALSE;
525     if (!reset && clipping_cursor && thread_data->clip_hwnd) return FALSE;  /* already clipping */
526     SetRect( &rect, 0, 0, screen_width, screen_height );
527     if (!grab_fullscreen)
528     {
529         if (!EqualRect( &rect, &virtual_screen_rect )) return FALSE;
530         if (root_window != DefaultRootWindow( gdi_display )) return FALSE;
531     }
532     TRACE( "win %p clipping fullscreen\n", hwnd );
533     return grab_clipping_window( &rect, TRUE );
534 }
535
536 /***********************************************************************
537  *              send_mouse_input
538  *
539  * Update the various window states on a mouse event.
540  */
541 static void send_mouse_input( HWND hwnd, Window window, unsigned int state, INPUT *input )
542 {
543     struct x11drv_win_data *data;
544     POINT pt;
545
546     input->type = INPUT_MOUSE;
547
548     if (!hwnd)
549     {
550         struct x11drv_thread_data *thread_data = x11drv_thread_data();
551
552         if (!thread_data->clip_hwnd) return;
553         if (thread_data->clip_window != window) return;
554         input->u.mi.dx += clip_rect.left;
555         input->u.mi.dy += clip_rect.top;
556         __wine_send_input( hwnd, input );
557         return;
558     }
559
560     if (!(data = X11DRV_get_win_data( hwnd ))) return;
561
562     if (window == data->whole_window)
563     {
564         input->u.mi.dx += data->whole_rect.left - data->client_rect.left;
565         input->u.mi.dy += data->whole_rect.top - data->client_rect.top;
566     }
567     if (window == root_window)
568     {
569         input->u.mi.dx += virtual_screen_rect.left;
570         input->u.mi.dy += virtual_screen_rect.top;
571     }
572     pt.x = input->u.mi.dx;
573     pt.y = input->u.mi.dy;
574     if (GetWindowLongW( data->hwnd, GWL_EXSTYLE ) & WS_EX_LAYOUTRTL)
575         pt.x = data->client_rect.right - data->client_rect.left - 1 - pt.x;
576     MapWindowPoints( hwnd, 0, &pt, 1 );
577
578     if (InterlockedExchangePointer( (void **)&cursor_window, hwnd ) != hwnd ||
579         GetTickCount() - last_cursor_change > 100)
580     {
581         sync_window_cursor( data->whole_window );
582         last_cursor_change = GetTickCount();
583     }
584
585     if (hwnd != GetDesktopWindow())
586     {
587         hwnd = GetAncestor( hwnd, GA_ROOT );
588         if ((input->u.mi.dwFlags & (MOUSEEVENTF_LEFTDOWN|MOUSEEVENTF_RIGHTDOWN)) && hwnd == GetForegroundWindow())
589             clip_fullscreen_window( hwnd, FALSE );
590     }
591
592     /* update the wine server Z-order */
593
594     if (window != x11drv_thread_data()->grab_window &&
595         /* ignore event if a button is pressed, since the mouse is then grabbed too */
596         !(state & (Button1Mask|Button2Mask|Button3Mask|Button4Mask|Button5Mask|Button6Mask|Button7Mask)))
597     {
598         RECT rect;
599         SetRect( &rect, pt.x, pt.y, pt.x + 1, pt.y + 1 );
600         MapWindowPoints( 0, hwnd, (POINT *)&rect, 2 );
601
602         SERVER_START_REQ( update_window_zorder )
603         {
604             req->window      = wine_server_user_handle( hwnd );
605             req->rect.left   = rect.left;
606             req->rect.top    = rect.top;
607             req->rect.right  = rect.right;
608             req->rect.bottom = rect.bottom;
609             wine_server_call( req );
610         }
611         SERVER_END_REQ;
612     }
613
614     input->u.mi.dx = pt.x;
615     input->u.mi.dy = pt.y;
616     __wine_send_input( hwnd, input );
617 }
618
619 #ifdef SONAME_LIBXCURSOR
620
621 /***********************************************************************
622  *              create_xcursor_frame
623  *
624  * Use Xcursor to create a frame of an X cursor from a Windows one.
625  */
626 static XcursorImage *create_xcursor_frame( HDC hdc, const ICONINFOEXW *iinfo, HANDLE icon,
627                                            HBITMAP hbmColor, unsigned char *color_bits, int color_size,
628                                            HBITMAP hbmMask, unsigned char *mask_bits, int mask_size,
629                                            int width, int height, int istep )
630 {
631     XcursorImage *image, *ret = NULL;
632     DWORD delay_jiffies, num_steps;
633     int x, y, i, has_alpha = FALSE;
634     XcursorPixel *ptr;
635
636     wine_tsx11_lock();
637     image = pXcursorImageCreate( width, height );
638     wine_tsx11_unlock();
639     if (!image)
640     {
641         ERR("X11 failed to produce a cursor frame!\n");
642         goto cleanup;
643     }
644
645     image->xhot = iinfo->xHotspot;
646     image->yhot = iinfo->yHotspot;
647
648     image->delay = 100; /* fallback delay, 100 ms */
649     if (GetCursorFrameInfo(icon, 0x0 /* unknown parameter */, istep, &delay_jiffies, &num_steps) != 0)
650         image->delay = (100 * delay_jiffies) / 6; /* convert jiffies (1/60s) to milliseconds */
651     else
652         WARN("Failed to retrieve animated cursor frame-rate for frame %d.\n", istep);
653
654     /* draw the cursor frame to a temporary buffer then copy it into the XcursorImage */
655     memset( color_bits, 0x00, color_size );
656     SelectObject( hdc, hbmColor );
657     if (!DrawIconEx( hdc, 0, 0, icon, width, height, istep, NULL, DI_NORMAL ))
658     {
659         TRACE("Could not draw frame %d (walk past end of frames).\n", istep);
660         goto cleanup;
661     }
662     memcpy( image->pixels, color_bits, color_size );
663
664     /* check if the cursor frame was drawn with an alpha channel */
665     for (i = 0, ptr = image->pixels; i < width * height; i++, ptr++)
666         if ((has_alpha = (*ptr & 0xff000000) != 0)) break;
667
668     /* if no alpha channel was drawn then generate it from the mask */
669     if (!has_alpha)
670     {
671         unsigned int width_bytes = (width + 31) / 32 * 4;
672
673         /* draw the cursor mask to a temporary buffer */
674         memset( mask_bits, 0xFF, mask_size );
675         SelectObject( hdc, hbmMask );
676         if (!DrawIconEx( hdc, 0, 0, icon, width, height, istep, NULL, DI_MASK ))
677         {
678             ERR("Failed to draw frame mask %d.\n", istep);
679             goto cleanup;
680         }
681         /* use the buffer to directly modify the XcursorImage alpha channel */
682         for (y = 0, ptr = image->pixels; y < height; y++)
683             for (x = 0; x < width; x++, ptr++)
684                 if (!((mask_bits[y * width_bytes + x / 8] << (x % 8)) & 0x80))
685                     *ptr |= 0xff000000;
686     }
687     ret = image;
688
689 cleanup:
690     if (ret == NULL) pXcursorImageDestroy( image );
691     return ret;
692 }
693
694 /***********************************************************************
695  *              create_xcursor_cursor
696  *
697  * Use Xcursor to create an X cursor from a Windows one.
698  */
699 static Cursor create_xcursor_cursor( HDC hdc, const ICONINFOEXW *iinfo, HANDLE icon, int width, int height )
700 {
701     unsigned char *color_bits, *mask_bits;
702     HBITMAP hbmColor = 0, hbmMask = 0;
703     DWORD nFrames, delay_jiffies, i;
704     int color_size, mask_size;
705     BITMAPINFO *info = NULL;
706     XcursorImages *images;
707     XcursorImage **imgs;
708     Cursor cursor = 0;
709
710     /* Retrieve the number of frames to render */
711     if (!GetCursorFrameInfo(icon, 0x0 /* unknown parameter */, 0, &delay_jiffies, &nFrames)) return 0;
712     if (!(imgs = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(XcursorImage*)*nFrames ))) return 0;
713
714     /* Allocate all of the resources necessary to obtain a cursor frame */
715     if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] )))) goto cleanup;
716     info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
717     info->bmiHeader.biWidth = width;
718     info->bmiHeader.biHeight = -height;
719     info->bmiHeader.biPlanes = 1;
720     info->bmiHeader.biCompression = BI_RGB;
721     info->bmiHeader.biXPelsPerMeter = 0;
722     info->bmiHeader.biYPelsPerMeter = 0;
723     info->bmiHeader.biClrUsed = 0;
724     info->bmiHeader.biClrImportant = 0;
725     info->bmiHeader.biBitCount = 32;
726     color_size = width * height * 4;
727     info->bmiHeader.biSizeImage = color_size;
728     hbmColor = CreateDIBSection( hdc, info, DIB_RGB_COLORS, (VOID **) &color_bits, NULL, 0);
729     if (!hbmColor)
730     {
731         ERR("Failed to create DIB section for cursor color data!\n");
732         goto cleanup;
733     }
734     info->bmiHeader.biBitCount = 1;
735     mask_size = ((width + 31) / 32 * 4) * height; /* width_bytes * height */
736     info->bmiHeader.biSizeImage = mask_size;
737     hbmMask = CreateDIBSection( hdc, info, DIB_RGB_COLORS, (VOID **) &mask_bits, NULL, 0);
738     if (!hbmMask)
739     {
740         ERR("Failed to create DIB section for cursor mask data!\n");
741         goto cleanup;
742     }
743
744     /* Create an XcursorImage for each frame of the cursor */
745     for (i=0; i<nFrames; i++)
746     {
747         imgs[i] = create_xcursor_frame( hdc, iinfo, icon,
748                                         hbmColor, color_bits, color_size,
749                                         hbmMask, mask_bits, mask_size,
750                                         width, height, i );
751         if (!imgs[i]) goto cleanup;
752     }
753
754     /* Build an X cursor out of all of the frames */
755     if (!(images = pXcursorImagesCreate( nFrames ))) goto cleanup;
756     for (images->nimage = 0; images->nimage < nFrames; images->nimage++)
757         images->images[images->nimage] = imgs[images->nimage];
758     wine_tsx11_lock();
759     cursor = pXcursorImagesLoadCursor( gdi_display, images );
760     wine_tsx11_unlock();
761     pXcursorImagesDestroy( images ); /* Note: this frees each individual frame (calls XcursorImageDestroy) */
762     HeapFree( GetProcessHeap(), 0, imgs );
763     imgs = NULL;
764
765 cleanup:
766     if (imgs)
767     {
768         /* Failed to produce a cursor, free previously allocated frames */
769         for (i=0; i<nFrames && imgs[i]; i++)
770             pXcursorImageDestroy( imgs[i] );
771         HeapFree( GetProcessHeap(), 0, imgs );
772     }
773     /* Cleanup all of the resources used to obtain the frame data */
774     if (hbmColor) DeleteObject( hbmColor );
775     if (hbmMask) DeleteObject( hbmMask );
776     HeapFree( GetProcessHeap(), 0, info );
777     return cursor;
778 }
779
780
781 struct system_cursors
782 {
783     WORD id;
784     const char *name;
785 };
786
787 static const struct system_cursors user32_cursors[] =
788 {
789     { OCR_NORMAL,      "left_ptr" },
790     { OCR_IBEAM,       "xterm" },
791     { OCR_WAIT,        "watch" },
792     { OCR_CROSS,       "cross" },
793     { OCR_UP,          "center_ptr" },
794     { OCR_SIZE,        "fleur" },
795     { OCR_SIZEALL,     "fleur" },
796     { OCR_ICON,        "icon" },
797     { OCR_SIZENWSE,    "nwse-resize" },
798     { OCR_SIZENESW,    "nesw-resize" },
799     { OCR_SIZEWE,      "ew-resize" },
800     { OCR_SIZENS,      "ns-resize" },
801     { OCR_NO,          "not-allowed" },
802     { OCR_HAND,        "hand2" },
803     { OCR_APPSTARTING, "left_ptr_watch" },
804     { OCR_HELP,        "question_arrow" },
805     { 0 }
806 };
807
808 static const struct system_cursors comctl32_cursors[] =
809 {
810     { 102, "move" },
811     { 104, "copy" },
812     { 105, "left_ptr" },
813     { 106, "row-resize" },
814     { 107, "row-resize" },
815     { 108, "hand2" },
816     { 135, "col-resize" },
817     { 0 }
818 };
819
820 static const struct system_cursors ole32_cursors[] =
821 {
822     { 1, "no-drop" },
823     { 2, "move" },
824     { 3, "copy" },
825     { 4, "alias" },
826     { 0 }
827 };
828
829 static const struct system_cursors riched20_cursors[] =
830 {
831     { 105, "hand2" },
832     { 107, "right_ptr" },
833     { 109, "copy" },
834     { 110, "move" },
835     { 111, "no-drop" },
836     { 0 }
837 };
838
839 static const struct
840 {
841     const struct system_cursors *cursors;
842     WCHAR name[16];
843 } module_cursors[] =
844 {
845     { user32_cursors, {'u','s','e','r','3','2','.','d','l','l',0} },
846     { comctl32_cursors, {'c','o','m','c','t','l','3','2','.','d','l','l',0} },
847     { ole32_cursors, {'o','l','e','3','2','.','d','l','l',0} },
848     { riched20_cursors, {'r','i','c','h','e','d','2','0','.','d','l','l',0} }
849 };
850
851 /***********************************************************************
852  *              create_xcursor_system_cursor
853  *
854  * Create an X cursor for a system cursor.
855  */
856 static Cursor create_xcursor_system_cursor( const ICONINFOEXW *info )
857 {
858     static const WCHAR idW[] = {'%','h','u',0};
859     const struct system_cursors *cursors;
860     unsigned int i;
861     Cursor cursor = 0;
862     HMODULE module;
863     HKEY key;
864     WCHAR *p, name[MAX_PATH * 2], valueW[64];
865     char valueA[64];
866     DWORD size, ret;
867
868     if (!pXcursorLibraryLoadCursor) return 0;
869     if (!info->szModName[0]) return 0;
870
871     p = strrchrW( info->szModName, '\\' );
872     strcpyW( name, p ? p + 1 : info->szModName );
873     p = name + strlenW( name );
874     *p++ = ',';
875     if (info->szResName[0]) strcpyW( p, info->szResName );
876     else sprintfW( p, idW, info->wResID );
877     valueA[0] = 0;
878
879     /* @@ Wine registry key: HKCU\Software\Wine\X11 Driver\Cursors */
880     if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\X11 Driver\\Cursors", &key ))
881     {
882         size = sizeof(valueW) / sizeof(WCHAR);
883         ret = RegQueryValueExW( key, name, NULL, NULL, (BYTE *)valueW, &size );
884         RegCloseKey( key );
885         if (!ret)
886         {
887             if (!valueW[0]) return 0; /* force standard cursor */
888             if (!WideCharToMultiByte( CP_UNIXCP, 0, valueW, -1, valueA, sizeof(valueA), NULL, NULL ))
889                 valueA[0] = 0;
890             goto done;
891         }
892     }
893
894     if (info->szResName[0]) goto done;  /* only integer resources are supported here */
895     if (!(module = GetModuleHandleW( info->szModName ))) goto done;
896
897     for (i = 0; i < sizeof(module_cursors)/sizeof(module_cursors[0]); i++)
898         if (GetModuleHandleW( module_cursors[i].name ) == module) break;
899     if (i == sizeof(module_cursors)/sizeof(module_cursors[0])) goto done;
900
901     cursors = module_cursors[i].cursors;
902     for (i = 0; cursors[i].id; i++)
903         if (cursors[i].id == info->wResID)
904         {
905             strcpy( valueA, cursors[i].name );
906             break;
907         }
908
909 done:
910     if (valueA[0])
911     {
912         wine_tsx11_lock();
913         cursor = pXcursorLibraryLoadCursor( gdi_display, valueA );
914         wine_tsx11_unlock();
915         if (!cursor) WARN( "no system cursor found for %s mapped to %s\n",
916                            debugstr_w(name), debugstr_a(valueA) );
917     }
918     else WARN( "no system cursor found for %s\n", debugstr_w(name) );
919     return cursor;
920 }
921
922 #endif /* SONAME_LIBXCURSOR */
923
924
925 /***********************************************************************
926  *              create_cursor_from_bitmaps
927  *
928  * Create an X11 cursor from source bitmaps.
929  */
930 static Cursor create_cursor_from_bitmaps( HBITMAP src_xor, HBITMAP src_and, int width, int height,
931                                           int xor_y, int and_y, XColor *fg, XColor *bg,
932                                           int hotspot_x, int hotspot_y )
933 {
934     HDC src = 0, dst = 0;
935     HBITMAP bits = 0, mask = 0, mask_inv = 0;
936     Cursor cursor = 0;
937
938     if (!(src = CreateCompatibleDC( 0 ))) goto done;
939     if (!(dst = CreateCompatibleDC( 0 ))) goto done;
940
941     if (!(bits = CreateBitmap( width, height, 1, 1, NULL ))) goto done;
942     if (!(mask = CreateBitmap( width, height, 1, 1, NULL ))) goto done;
943     if (!(mask_inv = CreateBitmap( width, height, 1, 1, NULL ))) goto done;
944
945     /* We have to do some magic here, as cursors are not fully
946      * compatible between Windows and X11. Under X11, there are
947      * only 3 possible color cursor: black, white and masked. So
948      * we map the 4th Windows color (invert the bits on the screen)
949      * to black and an additional white bit on an other place
950      * (+1,+1). This require some boolean arithmetic:
951      *
952      *         Windows          |          X11
953      * And    Xor      Result   |   Bits     Mask     Result
954      *  0      0     black      |    0        1     background
955      *  0      1     white      |    1        1     foreground
956      *  1      0     no change  |    X        0     no change
957      *  1      1     inverted   |    0        1     background
958      *
959      * which gives:
960      *  Bits = not 'And' and 'Xor' or 'And2' and 'Xor2'
961      *  Mask = not 'And' or 'Xor' or 'And2' and 'Xor2'
962      */
963     SelectObject( src, src_and );
964     SelectObject( dst, bits );
965     BitBlt( dst, 0, 0, width, height, src, 0, and_y, SRCCOPY );
966     SelectObject( dst, mask );
967     BitBlt( dst, 0, 0, width, height, src, 0, and_y, SRCCOPY );
968     SelectObject( dst, mask_inv );
969     BitBlt( dst, 0, 0, width, height, src, 0, and_y, SRCCOPY );
970     SelectObject( src, src_xor );
971     BitBlt( dst, 0, 0, width, height, src, 0, xor_y, SRCAND /* src & dst */ );
972     SelectObject( dst, bits );
973     BitBlt( dst, 0, 0, width, height, src, 0, xor_y, SRCERASE /* src & ~dst */ );
974     SelectObject( dst, mask );
975     BitBlt( dst, 0, 0, width, height, src, 0, xor_y, 0xdd0228 /* src | ~dst */ );
976     /* additional white */
977     SelectObject( src, mask_inv );
978     BitBlt( dst, 1, 1, width, height, src, 0, 0, SRCPAINT /* src | dst */);
979     SelectObject( dst, bits );
980     BitBlt( dst, 1, 1, width, height, src, 0, 0, SRCPAINT /* src | dst */ );
981
982     wine_tsx11_lock();
983     cursor = XCreatePixmapCursor( gdi_display, X11DRV_get_pixmap(bits), X11DRV_get_pixmap(mask),
984                                   fg, bg, hotspot_x, hotspot_y );
985     wine_tsx11_unlock();
986
987 done:
988     DeleteDC( src );
989     DeleteDC( dst );
990     DeleteObject( bits );
991     DeleteObject( mask );
992     DeleteObject( mask_inv );
993     return cursor;
994 }
995
996 /***********************************************************************
997  *              create_xlib_cursor
998  *
999  * Create an X cursor from a Windows one.
1000  */
1001 static Cursor create_xlib_cursor( HDC hdc, const ICONINFOEXW *icon, int width, int height )
1002 {
1003     XColor fg, bg;
1004     Cursor cursor = None;
1005     HBITMAP xor_bitmap = 0;
1006     BITMAPINFO *info;
1007     unsigned int *color_bits = NULL, *ptr;
1008     unsigned char *mask_bits = NULL, *xor_bits = NULL;
1009     int i, x, y, has_alpha = 0;
1010     int rfg, gfg, bfg, rbg, gbg, bbg, fgBits, bgBits;
1011     unsigned int width_bytes = (width + 31) / 32 * 4;
1012
1013     if (!(info = HeapAlloc( GetProcessHeap(), 0, FIELD_OFFSET( BITMAPINFO, bmiColors[256] ))))
1014         return FALSE;
1015     info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1016     info->bmiHeader.biWidth = width;
1017     info->bmiHeader.biHeight = -height;
1018     info->bmiHeader.biPlanes = 1;
1019     info->bmiHeader.biBitCount = 1;
1020     info->bmiHeader.biCompression = BI_RGB;
1021     info->bmiHeader.biSizeImage = width_bytes * height;
1022     info->bmiHeader.biXPelsPerMeter = 0;
1023     info->bmiHeader.biYPelsPerMeter = 0;
1024     info->bmiHeader.biClrUsed = 0;
1025     info->bmiHeader.biClrImportant = 0;
1026
1027     if (!(mask_bits = HeapAlloc( GetProcessHeap(), 0, info->bmiHeader.biSizeImage ))) goto done;
1028     if (!GetDIBits( hdc, icon->hbmMask, 0, height, mask_bits, info, DIB_RGB_COLORS )) goto done;
1029
1030     info->bmiHeader.biBitCount = 32;
1031     info->bmiHeader.biSizeImage = width * height * 4;
1032     if (!(color_bits = HeapAlloc( GetProcessHeap(), 0, info->bmiHeader.biSizeImage ))) goto done;
1033     if (!(xor_bits = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, width_bytes * height ))) goto done;
1034     GetDIBits( hdc, icon->hbmColor, 0, height, color_bits, info, DIB_RGB_COLORS );
1035
1036     /* compute fg/bg color and xor bitmap based on average of the color values */
1037
1038     if (!(xor_bitmap = CreateBitmap( width, height, 1, 1, NULL ))) goto done;
1039     rfg = gfg = bfg = rbg = gbg = bbg = fgBits = 0;
1040     for (y = 0, ptr = color_bits; y < height; y++)
1041     {
1042         for (x = 0; x < width; x++, ptr++)
1043         {
1044             int red   = (*ptr >> 16) & 0xff;
1045             int green = (*ptr >> 8) & 0xff;
1046             int blue  = (*ptr >> 0) & 0xff;
1047             if (red + green + blue > 0x40)
1048             {
1049                 rfg += red;
1050                 gfg += green;
1051                 bfg += blue;
1052                 fgBits++;
1053                 xor_bits[y * width_bytes + x / 8] |= 0x80 >> (x % 8);
1054             }
1055             else
1056             {
1057                 rbg += red;
1058                 gbg += green;
1059                 bbg += blue;
1060             }
1061         }
1062     }
1063     if (fgBits)
1064     {
1065         fg.red   = rfg * 257 / fgBits;
1066         fg.green = gfg * 257 / fgBits;
1067         fg.blue  = bfg * 257 / fgBits;
1068     }
1069     else fg.red = fg.green = fg.blue = 0;
1070     bgBits = width * height - fgBits;
1071     if (bgBits)
1072     {
1073         bg.red   = rbg * 257 / bgBits;
1074         bg.green = gbg * 257 / bgBits;
1075         bg.blue  = bbg * 257 / bgBits;
1076     }
1077     else bg.red = bg.green = bg.blue = 0;
1078
1079     info->bmiHeader.biBitCount = 1;
1080     info->bmiHeader.biSizeImage = width_bytes * height;
1081     SetDIBits( hdc, xor_bitmap, 0, height, xor_bits, info, DIB_RGB_COLORS );
1082
1083     /* generate mask from the alpha channel if we have one */
1084
1085     for (i = 0, ptr = color_bits; i < width * height; i++, ptr++)
1086         if ((has_alpha = (*ptr & 0xff000000) != 0)) break;
1087
1088     if (has_alpha)
1089     {
1090         memset( mask_bits, 0, width_bytes * height );
1091         for (y = 0, ptr = color_bits; y < height; y++)
1092             for (x = 0; x < width; x++, ptr++)
1093                 if ((*ptr >> 24) > 25) /* more than 10% alpha */
1094                     mask_bits[y * width_bytes + x / 8] |= 0x80 >> (x % 8);
1095
1096         info->bmiHeader.biBitCount = 1;
1097         info->bmiHeader.biSizeImage = width_bytes * height;
1098         SetDIBits( hdc, icon->hbmMask, 0, height, mask_bits, info, DIB_RGB_COLORS );
1099
1100         wine_tsx11_lock();
1101         cursor = XCreatePixmapCursor( gdi_display,
1102                                       X11DRV_get_pixmap(xor_bitmap),
1103                                       X11DRV_get_pixmap(icon->hbmMask),
1104                                       &fg, &bg, icon->xHotspot, icon->yHotspot );
1105         wine_tsx11_unlock();
1106     }
1107     else
1108     {
1109         cursor = create_cursor_from_bitmaps( xor_bitmap, icon->hbmMask, width, height, 0, 0,
1110                                              &fg, &bg, icon->xHotspot, icon->yHotspot );
1111     }
1112
1113 done:
1114     DeleteObject( xor_bitmap );
1115     HeapFree( GetProcessHeap(), 0, info );
1116     HeapFree( GetProcessHeap(), 0, color_bits );
1117     HeapFree( GetProcessHeap(), 0, xor_bits );
1118     HeapFree( GetProcessHeap(), 0, mask_bits );
1119     return cursor;
1120 }
1121
1122 /***********************************************************************
1123  *              create_cursor
1124  *
1125  * Create an X cursor from a Windows one.
1126  */
1127 static Cursor create_cursor( HANDLE handle )
1128 {
1129     Cursor cursor = 0;
1130     ICONINFOEXW info;
1131     BITMAP bm;
1132
1133     if (!handle) return get_empty_cursor();
1134
1135     info.cbSize = sizeof(info);
1136     if (!GetIconInfoExW( handle, &info )) return 0;
1137
1138 #ifdef SONAME_LIBXCURSOR
1139     if (use_system_cursors && (cursor = create_xcursor_system_cursor( &info )))
1140     {
1141         DeleteObject( info.hbmColor );
1142         DeleteObject( info.hbmMask );
1143         return cursor;
1144     }
1145 #endif
1146
1147     GetObjectW( info.hbmMask, sizeof(bm), &bm );
1148     if (!info.hbmColor) bm.bmHeight /= 2;
1149
1150     /* make sure hotspot is valid */
1151     if (info.xHotspot >= bm.bmWidth || info.yHotspot >= bm.bmHeight)
1152     {
1153         info.xHotspot = bm.bmWidth / 2;
1154         info.yHotspot = bm.bmHeight / 2;
1155     }
1156
1157     if (info.hbmColor)
1158     {
1159         HDC hdc = CreateCompatibleDC( 0 );
1160         if (hdc)
1161         {
1162 #ifdef SONAME_LIBXCURSOR
1163             if (pXcursorImagesLoadCursor)
1164                 cursor = create_xcursor_cursor( hdc, &info, handle, bm.bmWidth, bm.bmHeight );
1165 #endif
1166             if (!cursor) cursor = create_xlib_cursor( hdc, &info, bm.bmWidth, bm.bmHeight );
1167         }
1168         DeleteObject( info.hbmColor );
1169         DeleteDC( hdc );
1170     }
1171     else
1172     {
1173         XColor fg, bg;
1174         fg.red = fg.green = fg.blue = 0xffff;
1175         bg.red = bg.green = bg.blue = 0;
1176         cursor = create_cursor_from_bitmaps( info.hbmMask, info.hbmMask, bm.bmWidth, bm.bmHeight,
1177                                              bm.bmHeight, 0, &fg, &bg, info.xHotspot, info.yHotspot );
1178     }
1179
1180     DeleteObject( info.hbmMask );
1181     return cursor;
1182 }
1183
1184 /***********************************************************************
1185  *              DestroyCursorIcon (X11DRV.@)
1186  */
1187 void CDECL X11DRV_DestroyCursorIcon( HCURSOR handle )
1188 {
1189     Cursor cursor;
1190
1191     wine_tsx11_lock();
1192     if (cursor_context && !XFindContext( gdi_display, (XID)handle, cursor_context, (char **)&cursor ))
1193     {
1194         TRACE( "%p xid %lx\n", handle, cursor );
1195         XFreeCursor( gdi_display, cursor );
1196         XDeleteContext( gdi_display, (XID)handle, cursor_context );
1197     }
1198     wine_tsx11_unlock();
1199 }
1200
1201 /***********************************************************************
1202  *              SetCursor (X11DRV.@)
1203  */
1204 void CDECL X11DRV_SetCursor( HCURSOR handle )
1205 {
1206     if (InterlockedExchangePointer( (void **)&last_cursor, handle ) != handle ||
1207         GetTickCount() - last_cursor_change > 100)
1208     {
1209         last_cursor_change = GetTickCount();
1210         if (clipping_cursor) set_window_cursor( init_clip_window(), handle );
1211         else if (cursor_window) SendNotifyMessageW( cursor_window, WM_X11DRV_SET_CURSOR, 0, (LPARAM)handle );
1212     }
1213 }
1214
1215 /***********************************************************************
1216  *              SetCursorPos (X11DRV.@)
1217  */
1218 BOOL CDECL X11DRV_SetCursorPos( INT x, INT y )
1219 {
1220     struct x11drv_thread_data *data = x11drv_init_thread_data();
1221
1222     wine_tsx11_lock();
1223     data->warp_serial = NextRequest( data->display );
1224     XWarpPointer( data->display, root_window, root_window, 0, 0, 0, 0,
1225                   x - virtual_screen_rect.left, y - virtual_screen_rect.top );
1226     XFlush( data->display ); /* avoids bad mouse lag in games that do their own mouse warping */
1227     wine_tsx11_unlock();
1228     TRACE( "warped to %d,%d serial %lu\n", x, y, data->warp_serial );
1229     return TRUE;
1230 }
1231
1232 /***********************************************************************
1233  *              GetCursorPos (X11DRV.@)
1234  */
1235 BOOL CDECL X11DRV_GetCursorPos(LPPOINT pos)
1236 {
1237     Display *display = thread_init_display();
1238     Window root, child;
1239     int rootX, rootY, winX, winY;
1240     unsigned int xstate;
1241     BOOL ret;
1242
1243     wine_tsx11_lock();
1244     ret = XQueryPointer( display, root_window, &root, &child, &rootX, &rootY, &winX, &winY, &xstate );
1245     if (ret)
1246     {
1247         POINT old = *pos;
1248         pos->x = winX + virtual_screen_rect.left;
1249         pos->y = winY + virtual_screen_rect.top;
1250         TRACE( "pointer at (%d,%d) server pos %d,%d\n", pos->x, pos->y, old.x, old.y );
1251     }
1252     wine_tsx11_unlock();
1253     return ret;
1254 }
1255
1256 /***********************************************************************
1257  *              ClipCursor (X11DRV.@)
1258  */
1259 BOOL CDECL X11DRV_ClipCursor( LPCRECT clip )
1260 {
1261     if (!clip)
1262     {
1263         ungrab_clipping_window();
1264         return TRUE;
1265     }
1266
1267     if (GetWindowThreadProcessId( GetDesktopWindow(), NULL ) == GetCurrentThreadId())
1268         return TRUE;  /* don't clip in the desktop process */
1269
1270     if (grab_pointer)
1271     {
1272         HWND foreground = GetForegroundWindow();
1273
1274         /* we are clipping if the clip rectangle is smaller than the screen */
1275         if (clip->left > virtual_screen_rect.left || clip->right < virtual_screen_rect.right ||
1276             clip->top > virtual_screen_rect.top || clip->bottom < virtual_screen_rect.bottom)
1277         {
1278             DWORD tid, pid;
1279
1280             /* forward request to the foreground window if it's in a different thread */
1281             tid = GetWindowThreadProcessId( foreground, &pid );
1282             if (tid && tid != GetCurrentThreadId() && pid == GetCurrentProcessId())
1283             {
1284                 TRACE( "forwarding clip request to %p\n", foreground );
1285                 SendNotifyMessageW( foreground, WM_X11DRV_CLIP_CURSOR, 0, 0 );
1286                 return TRUE;
1287             }
1288             else if (grab_clipping_window( clip, FALSE )) return TRUE;
1289         }
1290         else /* if currently clipping, check if we should switch to fullscreen clipping */
1291         {
1292             struct x11drv_thread_data *data = x11drv_thread_data();
1293             if (data && data->clip_hwnd)
1294             {
1295                 if (EqualRect( clip, &clip_rect ) || clip_fullscreen_window( foreground, TRUE ))
1296                     return TRUE;
1297             }
1298         }
1299     }
1300     ungrab_clipping_window();
1301     return TRUE;
1302 }
1303
1304 /***********************************************************************
1305  *           X11DRV_ButtonPress
1306  */
1307 void X11DRV_ButtonPress( HWND hwnd, XEvent *xev )
1308 {
1309     XButtonEvent *event = &xev->xbutton;
1310     int buttonNum = event->button - 1;
1311     INPUT input;
1312
1313     if (buttonNum >= NB_BUTTONS) return;
1314
1315     TRACE( "hwnd %p/%lx button %u pos %d,%d\n", hwnd, event->window, buttonNum, event->x, event->y );
1316
1317     input.u.mi.dx          = event->x;
1318     input.u.mi.dy          = event->y;
1319     input.u.mi.mouseData   = button_down_data[buttonNum];
1320     input.u.mi.dwFlags     = button_down_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE;
1321     input.u.mi.time        = EVENT_x11_time_to_win32_time( event->time );
1322     input.u.mi.dwExtraInfo = 0;
1323
1324     update_user_time( event->time );
1325     send_mouse_input( hwnd, event->window, event->state, &input );
1326 }
1327
1328
1329 /***********************************************************************
1330  *           X11DRV_ButtonRelease
1331  */
1332 void X11DRV_ButtonRelease( HWND hwnd, XEvent *xev )
1333 {
1334     XButtonEvent *event = &xev->xbutton;
1335     int buttonNum = event->button - 1;
1336     INPUT input;
1337
1338     if (buttonNum >= NB_BUTTONS || !button_up_flags[buttonNum]) return;
1339
1340     TRACE( "hwnd %p/%lx button %u pos %d,%d\n", hwnd, event->window, buttonNum, event->x, event->y );
1341
1342     input.u.mi.dx          = event->x;
1343     input.u.mi.dy          = event->y;
1344     input.u.mi.mouseData   = button_up_data[buttonNum];
1345     input.u.mi.dwFlags     = button_up_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE;
1346     input.u.mi.time        = EVENT_x11_time_to_win32_time( event->time );
1347     input.u.mi.dwExtraInfo = 0;
1348
1349     send_mouse_input( hwnd, event->window, event->state, &input );
1350 }
1351
1352
1353 /***********************************************************************
1354  *           X11DRV_MotionNotify
1355  */
1356 void X11DRV_MotionNotify( HWND hwnd, XEvent *xev )
1357 {
1358     XMotionEvent *event = &xev->xmotion;
1359     INPUT input;
1360
1361     TRACE( "hwnd %p/%lx pos %d,%d is_hint %d serial %lu\n",
1362            hwnd, event->window, event->x, event->y, event->is_hint, event->serial );
1363
1364     input.u.mi.dx          = event->x;
1365     input.u.mi.dy          = event->y;
1366     input.u.mi.mouseData   = 0;
1367     input.u.mi.dwFlags     = MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE;
1368     input.u.mi.time        = EVENT_x11_time_to_win32_time( event->time );
1369     input.u.mi.dwExtraInfo = 0;
1370
1371     if (!hwnd)
1372     {
1373         struct x11drv_thread_data *thread_data = x11drv_thread_data();
1374         if (event->time - thread_data->last_motion_notify < 1000) return;
1375         if (thread_data->warp_serial && (long)(event->serial - thread_data->warp_serial) < 0) return;
1376         thread_data->last_motion_notify = event->time;
1377     }
1378
1379     send_mouse_input( hwnd, event->window, event->state, &input );
1380 }
1381
1382
1383 /***********************************************************************
1384  *           X11DRV_EnterNotify
1385  */
1386 void X11DRV_EnterNotify( HWND hwnd, XEvent *xev )
1387 {
1388     XCrossingEvent *event = &xev->xcrossing;
1389     INPUT input;
1390
1391     TRACE( "hwnd %p/%lx pos %d,%d detail %d\n", hwnd, event->window, event->x, event->y, event->detail );
1392
1393     if (event->detail == NotifyVirtual || event->detail == NotifyNonlinearVirtual) return;
1394     if (event->window == x11drv_thread_data()->grab_window) return;
1395
1396     /* simulate a mouse motion event */
1397     input.u.mi.dx          = event->x;
1398     input.u.mi.dy          = event->y;
1399     input.u.mi.mouseData   = 0;
1400     input.u.mi.dwFlags     = MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE;
1401     input.u.mi.time        = EVENT_x11_time_to_win32_time( event->time );
1402     input.u.mi.dwExtraInfo = 0;
1403
1404     send_mouse_input( hwnd, event->window, event->state, &input );
1405 }
1406
1407 #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
1408
1409 /***********************************************************************
1410  *           X11DRV_RawMotion
1411  */
1412 static void X11DRV_RawMotion( XGenericEventCookie *xev )
1413 {
1414     XIRawEvent *event = xev->data;
1415     const double *values = event->valuators.values;
1416     INPUT input;
1417     struct x11drv_thread_data *thread_data = x11drv_thread_data();
1418
1419     if (!event->valuators.mask_len) return;
1420     if (thread_data->xi2_state != xi_enabled) return;
1421
1422     input.u.mi.dx          = 0;
1423     input.u.mi.dy          = 0;
1424     input.u.mi.mouseData   = 0;
1425     input.u.mi.dwFlags     = MOUSEEVENTF_MOVE;
1426     input.u.mi.time        = EVENT_x11_time_to_win32_time( event->time );
1427     input.u.mi.dwExtraInfo = 0;
1428
1429     if (XIMaskIsSet( event->valuators.mask, 0 )) input.u.mi.dx = *values++;
1430     if (XIMaskIsSet( event->valuators.mask, 1 )) input.u.mi.dy = *values++;
1431
1432     if (thread_data->warp_serial)
1433     {
1434         long diff = xev->serial - thread_data->warp_serial;
1435
1436         if (diff >= 0) thread_data->warp_serial = 0;  /* we caught up now */
1437         if (diff <= 0)  /* <= 0 because we also want to ignore the first event after the warp request */
1438         {
1439             TRACE( "pos %d,%d old serial %lu, ignoring\n", input.u.mi.dx, input.u.mi.dy, xev->serial );
1440             return;
1441         }
1442     }
1443
1444     TRACE( "pos %d,%d\n", input.u.mi.dx, input.u.mi.dy );
1445
1446     input.type = INPUT_MOUSE;
1447     __wine_send_input( 0, &input );
1448 }
1449
1450 #endif /* HAVE_X11_EXTENSIONS_XINPUT2_H */
1451
1452
1453 /***********************************************************************
1454  *              X11DRV_XInput2_Init
1455  */
1456 void X11DRV_XInput2_Init(void)
1457 {
1458 #if defined(SONAME_LIBXI) && defined(HAVE_X11_EXTENSIONS_XINPUT2_H)
1459     int event, error;
1460     void *libxi_handle = wine_dlopen( SONAME_LIBXI, RTLD_NOW, NULL, 0 );
1461
1462     if (!libxi_handle)
1463     {
1464         WARN( "couldn't load %s\n", SONAME_LIBXI );
1465         return;
1466     }
1467 #define LOAD_FUNCPTR(f) \
1468     if (!(p##f = wine_dlsym( libxi_handle, #f, NULL, 0))) \
1469     { \
1470         WARN("Failed to load %s.\n", #f); \
1471         return; \
1472     }
1473
1474     LOAD_FUNCPTR(XIFreeDeviceInfo);
1475     LOAD_FUNCPTR(XIQueryDevice);
1476     LOAD_FUNCPTR(XIQueryVersion);
1477     LOAD_FUNCPTR(XISelectEvents);
1478 #undef LOAD_FUNCPTR
1479
1480     wine_tsx11_lock();
1481     xinput2_available = XQueryExtension( gdi_display, "XInputExtension", &xinput2_opcode, &event, &error );
1482     wine_tsx11_unlock();
1483 #else
1484     TRACE( "X Input 2 support not compiled in.\n" );
1485 #endif
1486 }
1487
1488
1489 /***********************************************************************
1490  *           X11DRV_GenericEvent
1491  */
1492 void X11DRV_GenericEvent( HWND hwnd, XEvent *xev )
1493 {
1494 #ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
1495     XGenericEventCookie *event = &xev->xcookie;
1496
1497     if (!event->data) return;
1498     if (event->extension != xinput2_opcode) return;
1499
1500     switch (event->evtype)
1501     {
1502     case XI_RawMotion:
1503         X11DRV_RawMotion( event );
1504         break;
1505
1506     default:
1507         TRACE( "Unhandled event %#x\n", event->evtype );
1508         break;
1509     }
1510 #endif
1511 }