Moved most initializations out of the create_desktop function and into
[wine] / dlls / x11drv / mouse.c
1 /*
2  * X11 mouse driver
3  *
4  * Copyright 1998 Ulrich Weigand
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22
23 #include <X11/Xlib.h>
24 #ifdef HAVE_LIBXXF86DGA2
25 #include <X11/extensions/xf86dga.h>
26 #endif
27 #include <stdarg.h>
28
29 #define NONAMELESSUNION
30 #define NONAMELESSSTRUCT
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wine/winuser16.h"
34
35 #include "win.h"
36 #include "x11drv.h"
37 #include "wine/server.h"
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
41
42 /**********************************************************************/
43
44 #ifndef Button6Mask
45 #define Button6Mask (1<<13)
46 #endif
47 #ifndef Button7Mask
48 #define Button7Mask (1<<14)
49 #endif
50
51 #define NB_BUTTONS   7     /* Windows can handle 5 buttons and the wheel too */
52
53 static const UINT button_down_flags[NB_BUTTONS] =
54 {
55     MOUSEEVENTF_LEFTDOWN,
56     MOUSEEVENTF_MIDDLEDOWN,
57     MOUSEEVENTF_RIGHTDOWN,
58     MOUSEEVENTF_WHEEL,
59     MOUSEEVENTF_WHEEL,
60     MOUSEEVENTF_XDOWN,
61     MOUSEEVENTF_XDOWN
62 };
63
64 static const UINT button_up_flags[NB_BUTTONS] =
65 {
66     MOUSEEVENTF_LEFTUP,
67     MOUSEEVENTF_MIDDLEUP,
68     MOUSEEVENTF_RIGHTUP,
69     0,
70     0,
71     MOUSEEVENTF_XUP,
72     MOUSEEVENTF_XUP
73 };
74
75 POINT cursor_pos;
76
77 /***********************************************************************
78  *              get_coords
79  *
80  * get the coordinates of a mouse event
81  */
82 static inline void get_coords( HWND hwnd, int x, int y, POINT *pt )
83 {
84     struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
85
86     if (!data) return;
87
88     pt->x = x + data->whole_rect.left;
89     pt->y = y + data->whole_rect.top;
90 }
91
92
93 /***********************************************************************
94  *              update_button_state
95  *
96  * Update the button state with what X provides us
97  */
98 static inline void update_button_state( unsigned int state )
99 {
100     key_state_table[VK_LBUTTON] = (state & Button1Mask ? 0x80 : 0);
101     key_state_table[VK_MBUTTON] = (state & Button2Mask ? 0x80 : 0);
102     key_state_table[VK_RBUTTON] = (state & Button3Mask ? 0x80 : 0);
103     key_state_table[VK_XBUTTON1]= (state & Button6Mask ? 0x80 : 0);
104     key_state_table[VK_XBUTTON2]= (state & Button7Mask ? 0x80 : 0);
105 }
106
107
108 /***********************************************************************
109  *              update_key_state
110  *
111  * Update the key state with what X provides us
112  */
113 static inline void update_key_state( unsigned int state )
114 {
115     key_state_table[VK_SHIFT]   = (state & ShiftMask   ? 0x80 : 0);
116     key_state_table[VK_CONTROL] = (state & ControlMask ? 0x80 : 0);
117 }
118
119
120 /***********************************************************************
121  *              update_mouse_state
122  *
123  * Update the various window states on a mouse event.
124  */
125 static void update_mouse_state( HWND hwnd, Window window, int x, int y, unsigned int state, POINT *pt )
126 {
127     struct x11drv_thread_data *data = x11drv_thread_data();
128
129     get_coords( hwnd, x, y, pt );
130     update_key_state( state );
131
132     /* update the cursor */
133
134     if (data->cursor_window != window)
135     {
136         data->cursor_window = window;
137         wine_tsx11_lock();
138         if (data->cursor) XDefineCursor( data->display, window, data->cursor );
139         wine_tsx11_unlock();
140     }
141
142     /* update the wine server Z-order */
143
144     if (window != data->grab_window &&
145         /* ignore event if a button is pressed, since the mouse is then grabbed too */
146         !(state & (Button1Mask|Button2Mask|Button3Mask|Button4Mask|Button5Mask|Button6Mask|Button7Mask)))
147     {
148         SERVER_START_REQ( update_window_zorder )
149         {
150             req->window      = hwnd;
151             req->rect.left   = pt->x;
152             req->rect.top    = pt->y;
153             req->rect.right  = pt->x + 1;
154             req->rect.bottom = pt->y + 1;
155             wine_server_call( req );
156         }
157         SERVER_END_REQ;
158     }
159 }
160
161
162 /***********************************************************************
163  *           get_key_state
164  */
165 static WORD get_key_state(void)
166 {
167     WORD ret = 0;
168
169     if (GetSystemMetrics( SM_SWAPBUTTON ))
170     {
171         if (key_state_table[VK_RBUTTON] & 0x80) ret |= MK_LBUTTON;
172         if (key_state_table[VK_LBUTTON] & 0x80) ret |= MK_RBUTTON;
173     }
174     else
175     {
176         if (key_state_table[VK_LBUTTON] & 0x80) ret |= MK_LBUTTON;
177         if (key_state_table[VK_RBUTTON] & 0x80) ret |= MK_RBUTTON;
178     }
179     if (key_state_table[VK_MBUTTON] & 0x80)  ret |= MK_MBUTTON;
180     if (key_state_table[VK_SHIFT] & 0x80)    ret |= MK_SHIFT;
181     if (key_state_table[VK_CONTROL] & 0x80)  ret |= MK_CONTROL;
182     if (key_state_table[VK_XBUTTON1] & 0x80) ret |= MK_XBUTTON1;
183     if (key_state_table[VK_XBUTTON2] & 0x80) ret |= MK_XBUTTON2;
184     return ret;
185 }
186
187
188 /***********************************************************************
189  *           queue_raw_mouse_message
190  */
191 static void queue_raw_mouse_message( UINT message, HWND hwnd, DWORD x, DWORD y,
192                                      DWORD data, DWORD time, DWORD extra_info, UINT injected_flags )
193 {
194     MSLLHOOKSTRUCT hook;
195
196     hook.pt.x        = x;
197     hook.pt.y        = y;
198     hook.mouseData   = MAKELONG( 0, data );
199     hook.flags       = injected_flags;
200     hook.time        = time;
201     hook.dwExtraInfo = extra_info;
202
203     if (HOOK_CallHooks( WH_MOUSE_LL, HC_ACTION, message, (LPARAM)&hook, TRUE )) return;
204
205     SERVER_START_REQ( send_message )
206     {
207         req->id       = (injected_flags & LLMHF_INJECTED) ? 0 : GetCurrentThreadId();
208         req->type     = MSG_HARDWARE;
209         req->flags    = 0;
210         req->win      = hwnd;
211         req->msg      = message;
212         req->wparam   = MAKEWPARAM( get_key_state(), data );
213         req->lparam   = 0;
214         req->x        = x;
215         req->y        = y;
216         req->time     = time;
217         req->info     = extra_info;
218         req->timeout  = -1;
219         req->callback = NULL;
220         wine_server_call( req );
221     }
222     SERVER_END_REQ;
223
224 }
225
226
227 /***********************************************************************
228  *              X11DRV_send_mouse_input
229  */
230 void X11DRV_send_mouse_input( HWND hwnd, DWORD flags, DWORD x, DWORD y,
231                               DWORD data, DWORD time, DWORD extra_info, UINT injected_flags )
232 {
233     POINT pt;
234
235     if (flags & MOUSEEVENTF_ABSOLUTE)
236     {
237         if (injected_flags & LLMHF_INJECTED)
238         {
239             pt.x = (x * screen_width) >> 16;
240             pt.y = (y * screen_height) >> 16;
241         }
242         else
243         {
244             pt.x = x;
245             pt.y = y;
246         }
247         wine_tsx11_lock();
248         cursor_pos = pt;
249         wine_tsx11_unlock();
250     }
251     else if (flags & MOUSEEVENTF_MOVE)
252     {
253         int accel[3], xMult = 1, yMult = 1;
254
255         /* dx and dy can be negative numbers for relative movements */
256         SystemParametersInfoW(SPI_GETMOUSE, 0, accel, 0);
257
258         if (x > accel[0] && accel[2] != 0)
259         {
260             xMult = 2;
261             if ((x > accel[1]) && (accel[2] == 2)) xMult = 4;
262         }
263         if (y > accel[0] && accel[2] != 0)
264         {
265             yMult = 2;
266             if ((y > accel[1]) && (accel[2] == 2)) yMult = 4;
267         }
268
269         wine_tsx11_lock();
270         pt.x = cursor_pos.x + (long)x * xMult;
271         pt.y = cursor_pos.y + (long)y * yMult;
272
273         /* Clip to the current screen size */
274         if (pt.x < 0) pt.x = 0;
275         else if (pt.x >= screen_width) pt.x = screen_width - 1;
276         if (pt.y < 0) pt.y = 0;
277         else if (pt.y >= screen_height) pt.y = screen_height - 1;
278         cursor_pos = pt;
279         wine_tsx11_unlock();
280     }
281     else
282     {
283         wine_tsx11_lock();
284         pt = cursor_pos;
285         wine_tsx11_unlock();
286     }
287
288     if (flags & MOUSEEVENTF_MOVE)
289     {
290         queue_raw_mouse_message( WM_MOUSEMOVE, hwnd, pt.x, pt.y, data, time,
291                                  extra_info, injected_flags );
292         if (injected_flags & LLMHF_INJECTED)  /* we have to actually move the cursor */
293         {
294             TRACE( "warping to (%ld,%ld)\n", pt.x, pt.y );
295             wine_tsx11_lock();
296             XWarpPointer( thread_display(), root_window, root_window, 0, 0, 0, 0, pt.x, pt.y );
297             wine_tsx11_unlock();
298         }
299     }
300     if (flags & MOUSEEVENTF_LEFTDOWN)
301     {
302         key_state_table[VK_LBUTTON] |= 0xc0;
303         queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_RBUTTONDOWN : WM_LBUTTONDOWN,
304                                  hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
305     }
306     if (flags & MOUSEEVENTF_LEFTUP)
307     {
308         key_state_table[VK_LBUTTON] &= ~0x80;
309         queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_RBUTTONUP : WM_LBUTTONUP,
310                                  hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
311     }
312     if (flags & MOUSEEVENTF_RIGHTDOWN)
313     {
314         key_state_table[VK_RBUTTON] |= 0xc0;
315         queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_LBUTTONDOWN : WM_RBUTTONDOWN,
316                                  hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
317     }
318     if (flags & MOUSEEVENTF_RIGHTUP)
319     {
320         key_state_table[VK_RBUTTON] &= ~0x80;
321         queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_LBUTTONUP : WM_RBUTTONUP,
322                                  hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
323     }
324     if (flags & MOUSEEVENTF_MIDDLEDOWN)
325     {
326         key_state_table[VK_MBUTTON] |= 0xc0;
327         queue_raw_mouse_message( WM_MBUTTONDOWN, hwnd, pt.x, pt.y, data, time,
328                                  extra_info, injected_flags );
329     }
330     if (flags & MOUSEEVENTF_MIDDLEUP)
331     {
332         key_state_table[VK_MBUTTON] &= ~0x80;
333         queue_raw_mouse_message( WM_MBUTTONUP, hwnd, pt.x, pt.y, data, time,
334                                  extra_info, injected_flags );
335     }
336     if (flags & MOUSEEVENTF_WHEEL)
337     {
338         queue_raw_mouse_message( WM_MOUSEWHEEL, hwnd, pt.x, pt.y, data, time,
339                                  extra_info, injected_flags );
340     }
341     if (flags & MOUSEEVENTF_XDOWN)
342     {
343         key_state_table[VK_XBUTTON1 + data - 1] |= 0xc0;
344         queue_raw_mouse_message( WM_XBUTTONDOWN, hwnd, pt.x, pt.y, data, time,
345                                  extra_info, injected_flags );
346     }
347     if (flags & MOUSEEVENTF_XUP)
348     {
349         key_state_table[VK_XBUTTON1 + data - 1] &= ~0x80;
350         queue_raw_mouse_message( WM_XBUTTONUP, hwnd, pt.x, pt.y, data, time,
351                                  extra_info, injected_flags );
352     }
353 }
354
355
356 /***********************************************************************
357  *              create_cursor
358  *
359  * Create an X cursor from a Windows one.
360  */
361 static Cursor create_cursor( Display *display, CURSORICONINFO *ptr )
362 {
363     Pixmap pixmapBits, pixmapMask, pixmapMaskInv, pixmapAll;
364     XColor fg, bg;
365     Cursor cursor = None;
366
367     if (!ptr)  /* Create an empty cursor */
368     {
369         static const char data[] = { 0 };
370
371         bg.red = bg.green = bg.blue = 0x0000;
372         pixmapBits = XCreateBitmapFromData( display, root_window, data, 1, 1 );
373         if (pixmapBits)
374         {
375             cursor = XCreatePixmapCursor( display, pixmapBits, pixmapBits,
376                                           &bg, &bg, 0, 0 );
377             XFreePixmap( display, pixmapBits );
378         }
379     }
380     else  /* Create the X cursor from the bits */
381     {
382         XImage *image;
383         GC gc;
384
385         TRACE("Bitmap %dx%d planes=%d bpp=%d bytesperline=%d\n",
386             ptr->nWidth, ptr->nHeight, ptr->bPlanes, ptr->bBitsPerPixel,
387             ptr->nWidthBytes);
388         /* Create a pixmap and transfer all the bits to it */
389
390         /* NOTE: Following hack works, but only because XFree depth
391          *       1 images really use 1 bit/pixel (and so the same layout
392          *       as the Windows cursor data). Perhaps use a more generic
393          *       algorithm here.
394          */
395         /* This pixmap will be written with two bitmaps. The first is
396          *  the mask and the second is the image.
397          */
398         if (!(pixmapAll = XCreatePixmap( display, root_window,
399                   ptr->nWidth, ptr->nHeight * 2, 1 )))
400             return 0;
401         if (!(image = XCreateImage( display, visual,
402                 1, ZPixmap, 0, (char *)(ptr + 1), ptr->nWidth,
403                 ptr->nHeight * 2, 16, ptr->nWidthBytes/ptr->bBitsPerPixel)))
404         {
405             XFreePixmap( display, pixmapAll );
406             return 0;
407         }
408         gc = XCreateGC( display, pixmapAll, 0, NULL );
409         XSetGraphicsExposures( display, gc, False );
410         image->byte_order = MSBFirst;
411         image->bitmap_bit_order = MSBFirst;
412         image->bitmap_unit = 16;
413         _XInitImageFuncPtrs(image);
414         if (ptr->bPlanes * ptr->bBitsPerPixel == 1)
415         {
416             /* A plain old white on black cursor. */
417             fg.red = fg.green = fg.blue = 0xffff;
418             bg.red = bg.green = bg.blue = 0x0000;
419             XPutImage( display, pixmapAll, gc, image,
420                 0, 0, 0, 0, ptr->nWidth, ptr->nHeight * 2 );
421         }
422         else
423         {
424             int     rbits, gbits, bbits, red, green, blue;
425             int     rfg, gfg, bfg, rbg, gbg, bbg;
426             int     rscale, gscale, bscale;
427             int     x, y, xmax, ymax, bitIndex, byteIndex, xorIndex;
428             unsigned char *theMask, *theImage, theChar;
429             int     threshold, fgBits, bgBits, bitShifted;
430             BYTE    pXorBits[128];   /* Up to 32x32 icons */
431
432             switch (ptr->bBitsPerPixel)
433             {
434             case 24:
435                 rbits = 8;
436                 gbits = 8;
437                 bbits = 8;
438                 threshold = 0x40;
439                 break;
440             case 16:
441                 rbits = 5;
442                 gbits = 6;
443                 bbits = 5;
444                 threshold = 0x40;
445                 break;
446             default:
447                 FIXME("Currently no support for cursors with %d bits per pixel\n",
448                   ptr->bBitsPerPixel);
449                 XFreePixmap( display, pixmapAll );
450                 XFreeGC( display, gc );
451                 image->data = NULL;
452                 XDestroyImage( image );
453                 return 0;
454             }
455             /* The location of the mask. */
456             theMask = (char *)(ptr + 1);
457             /* The mask should still be 1 bit per pixel. The color image
458              * should immediately follow the mask.
459              */
460             theImage = &theMask[ptr->nWidth/8 * ptr->nHeight];
461             rfg = gfg = bfg = rbg = gbg = bbg = 0;
462             bitIndex = 0;
463             byteIndex = 0;
464             xorIndex = 0;
465             fgBits = 0;
466             bitShifted = 0x01;
467             xmax = (ptr->nWidth > 32) ? 32 : ptr->nWidth;
468             if (ptr->nWidth > 32) {
469                 ERR("Got a %dx%d cursor. Cannot handle larger than 32x32.\n",
470                   ptr->nWidth, ptr->nHeight);
471             }
472             ymax = (ptr->nHeight > 32) ? 32 : ptr->nHeight;
473
474             memset(pXorBits, 0, 128);
475             for (y=0; y<ymax; y++)
476             {
477                 for (x=0; x<xmax; x++)
478                 {
479                         red = green = blue = 0;
480                         switch (ptr->bBitsPerPixel)
481                         {
482                         case 24:
483                             theChar = theImage[byteIndex++];
484                             blue = theChar;
485                             theChar = theImage[byteIndex++];
486                             green = theChar;
487                             theChar = theImage[byteIndex++];
488                             red = theChar;
489                             break;
490                         case 16:
491                             theChar = theImage[byteIndex++];
492                             blue = theChar & 0x1F;
493                             green = (theChar & 0xE0) >> 5;
494                             theChar = theImage[byteIndex++];
495                             green |= (theChar & 0x07) << 3;
496                             red = (theChar & 0xF8) >> 3;
497                             break;
498                         }
499
500                     if (red+green+blue > threshold)
501                     {
502                         rfg += red;
503                         gfg += green;
504                         bfg += blue;
505                         fgBits++;
506                         pXorBits[xorIndex] |= bitShifted;
507                     }
508                     else
509                     {
510                         rbg += red;
511                         gbg += green;
512                         bbg += blue;
513                     }
514                     if (x%8 == 7)
515                     {
516                         bitShifted = 0x01;
517                         xorIndex++;
518                     }
519                     else
520                         bitShifted = bitShifted << 1;
521                 }
522             }
523             rscale = 1 << (16 - rbits);
524             gscale = 1 << (16 - gbits);
525             bscale = 1 << (16 - bbits);
526             if (fgBits)
527             {
528                 fg.red   = rfg * rscale / fgBits;
529                 fg.green = gfg * gscale / fgBits;
530                 fg.blue  = bfg * bscale / fgBits;
531             }
532             else fg.red = fg.green = fg.blue = 0;
533             bgBits = xmax * ymax - fgBits;
534             if (bgBits)
535             {
536                 bg.red   = rbg * rscale / bgBits;
537                 bg.green = gbg * gscale / bgBits;
538                 bg.blue  = bbg * bscale / bgBits;
539             }
540             else bg.red = bg.green = bg.blue = 0;
541             pixmapBits = XCreateBitmapFromData( display, root_window, (char *)pXorBits, xmax, ymax );
542             if (!pixmapBits)
543             {
544                 XFreePixmap( display, pixmapAll );
545                 XFreeGC( display, gc );
546                 image->data = NULL;
547                 XDestroyImage( image );
548                 return 0;
549             }
550
551             /* Put the mask. */
552             XPutImage( display, pixmapAll, gc, image,
553                    0, 0, 0, 0, ptr->nWidth, ptr->nHeight );
554             XSetFunction( display, gc, GXcopy );
555             /* Put the image */
556             XCopyArea( display, pixmapBits, pixmapAll, gc,
557                        0, 0, xmax, ymax, 0, ptr->nHeight );
558             XFreePixmap( display, pixmapBits );
559         }
560         image->data = NULL;
561         XDestroyImage( image );
562
563         /* Now create the 2 pixmaps for bits and mask */
564
565         pixmapBits = XCreatePixmap( display, root_window, ptr->nWidth, ptr->nHeight, 1 );
566         pixmapMask = XCreatePixmap( display, root_window, ptr->nWidth, ptr->nHeight, 1 );
567         pixmapMaskInv = XCreatePixmap( display, root_window, ptr->nWidth, ptr->nHeight, 1 );
568
569         /* Make sure everything went OK so far */
570
571         if (pixmapBits && pixmapMask && pixmapMaskInv)
572         {
573             POINT hotspot;
574
575             /* We have to do some magic here, as cursors are not fully
576              * compatible between Windows and X11. Under X11, there
577              * are only 3 possible color cursor: black, white and
578              * masked. So we map the 4th Windows color (invert the
579              * bits on the screen) to black and an additional white bit on
580              * an other place (+1,+1). This require some boolean arithmetic:
581              *
582              *         Windows          |          X11
583              * And    Xor      Result   |   Bits     Mask     Result
584              *  0      0     black      |    0        1     background
585              *  0      1     white      |    1        1     foreground
586              *  1      0     no change  |    X        0     no change
587              *  1      1     inverted   |    0        1     background
588              *
589              * which gives:
590              *  Bits = not 'And' and 'Xor' or 'And2' and 'Xor2'
591              *  Mask = not 'And' or 'Xor' or 'And2' and 'Xor2'
592              *
593              * FIXME: apparently some servers do support 'inverted' color.
594              * I don't know if it's correct per the X spec, but maybe
595              * we ought to take advantage of it.  -- AJ
596              */
597             XSetFunction( display, gc, GXcopy );
598             XCopyArea( display, pixmapAll, pixmapBits, gc,
599                        0, 0, ptr->nWidth, ptr->nHeight, 0, 0 );
600             XCopyArea( display, pixmapAll, pixmapMask, gc,
601                        0, 0, ptr->nWidth, ptr->nHeight, 0, 0 );
602             XCopyArea( display, pixmapAll, pixmapMaskInv, gc,
603                        0, 0, ptr->nWidth, ptr->nHeight, 0, 0 );
604             XSetFunction( display, gc, GXand );
605             XCopyArea( display, pixmapAll, pixmapMaskInv, gc,
606                        0, ptr->nHeight, ptr->nWidth, ptr->nHeight, 0, 0 );
607             XSetFunction( display, gc, GXandReverse );
608             XCopyArea( display, pixmapAll, pixmapBits, gc,
609                        0, ptr->nHeight, ptr->nWidth, ptr->nHeight, 0, 0 );
610             XSetFunction( display, gc, GXorReverse );
611             XCopyArea( display, pixmapAll, pixmapMask, gc,
612                        0, ptr->nHeight, ptr->nWidth, ptr->nHeight, 0, 0 );
613             /* Additional white */
614             XSetFunction( display, gc, GXor );
615             XCopyArea( display, pixmapMaskInv, pixmapMask, gc,
616                        0, 0, ptr->nWidth, ptr->nHeight, 1, 1 );
617             XCopyArea( display, pixmapMaskInv, pixmapBits, gc,
618                        0, 0, ptr->nWidth, ptr->nHeight, 1, 1 );
619             XSetFunction( display, gc, GXcopy );
620
621             /* Make sure hotspot is valid */
622             hotspot.x = ptr->ptHotSpot.x;
623             hotspot.y = ptr->ptHotSpot.y;
624             if (hotspot.x < 0 || hotspot.x >= ptr->nWidth ||
625                 hotspot.y < 0 || hotspot.y >= ptr->nHeight)
626             {
627                 hotspot.x = ptr->nWidth / 2;
628                 hotspot.y = ptr->nHeight / 2;
629             }
630             cursor = XCreatePixmapCursor( display, pixmapBits, pixmapMask,
631                                           &fg, &bg, hotspot.x, hotspot.y );
632         }
633
634         /* Now free everything */
635
636         if (pixmapAll) XFreePixmap( display, pixmapAll );
637         if (pixmapBits) XFreePixmap( display, pixmapBits );
638         if (pixmapMask) XFreePixmap( display, pixmapMask );
639         if (pixmapMaskInv) XFreePixmap( display, pixmapMaskInv );
640         XFreeGC( display, gc );
641     }
642     return cursor;
643 }
644
645
646 /***********************************************************************
647  *              SetCursor (X11DRV.@)
648  */
649 void X11DRV_SetCursor( CURSORICONINFO *lpCursor )
650 {
651     Cursor cursor;
652
653     if (root_window != DefaultRootWindow(gdi_display))
654     {
655         /* If in desktop mode, set the cursor on the desktop window */
656
657         wine_tsx11_lock();
658         cursor = create_cursor( gdi_display, lpCursor );
659         if (cursor)
660         {
661             XDefineCursor( gdi_display, root_window, cursor );
662             /* Make the change take effect immediately */
663             XFlush(gdi_display);
664             XFreeCursor( gdi_display, cursor );
665         }
666         wine_tsx11_unlock();
667     }
668     else /* set the same cursor for all top-level windows of the current thread */
669     {
670         struct x11drv_thread_data *data = x11drv_thread_data();
671
672         wine_tsx11_lock();
673         cursor = create_cursor( data->display, lpCursor );
674         if (cursor)
675         {
676             if (data->cursor) XFreeCursor( data->display, data->cursor );
677             data->cursor = cursor;
678             if (data->cursor_window)
679             {
680                 XDefineCursor( data->display, data->cursor_window, cursor );
681                 /* Make the change take effect immediately */
682                 XFlush( data->display );
683             }
684         }
685         wine_tsx11_unlock();
686     }
687 }
688
689 /***********************************************************************
690  *              SetCursorPos (X11DRV.@)
691  */
692 BOOL X11DRV_SetCursorPos( INT x, INT y )
693 {
694     Display *display = thread_display();
695
696     TRACE( "warping to (%d,%d)\n", x, y );
697
698     wine_tsx11_lock();
699     XWarpPointer( display, root_window, root_window, 0, 0, 0, 0, x, y );
700     cursor_pos.x = x;
701     cursor_pos.y = y;
702     wine_tsx11_unlock();
703     return TRUE;
704 }
705
706 /***********************************************************************
707  *              GetCursorPos (X11DRV.@)
708  */
709 BOOL X11DRV_GetCursorPos(LPPOINT pos)
710 {
711     Display *display = thread_display();
712     Window root, child;
713     int rootX, rootY, winX, winY;
714     unsigned int xstate;
715
716     wine_tsx11_lock();
717     if (XQueryPointer( display, root_window, &root, &child,
718                        &rootX, &rootY, &winX, &winY, &xstate ))
719     {
720         update_key_state( xstate );
721         update_button_state( xstate );
722         TRACE("pointer at (%d,%d)\n", winX, winY );
723         cursor_pos.x = winX;
724         cursor_pos.y = winY;
725     }
726     *pos = cursor_pos;
727     wine_tsx11_unlock();
728     return TRUE;
729 }
730
731 /***********************************************************************
732  *           X11DRV_ButtonPress
733  */
734 void X11DRV_ButtonPress( HWND hwnd, XEvent *xev )
735 {
736     XButtonEvent *event = &xev->xbutton;
737     int buttonNum = event->button - 1;
738     WORD wData = 0;
739     POINT pt;
740
741     if (buttonNum >= NB_BUTTONS) return;
742     if (!hwnd) return;
743
744     switch (buttonNum)
745     {
746     case 3:
747         wData = WHEEL_DELTA;
748         break;
749     case 4:
750         wData = -WHEEL_DELTA;
751         break;
752     case 5:
753         wData = XBUTTON1;
754         break;
755     case 6:
756         wData = XBUTTON2;
757         break;
758     }
759
760     update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
761
762     X11DRV_send_mouse_input( hwnd, button_down_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE,
763                              pt.x, pt.y, wData, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
764 }
765
766
767 /***********************************************************************
768  *           X11DRV_ButtonRelease
769  */
770 void X11DRV_ButtonRelease( HWND hwnd, XEvent *xev )
771 {
772     XButtonEvent *event = &xev->xbutton;
773     int buttonNum = event->button - 1;
774     WORD wData = 0;
775     POINT pt;
776
777     if (buttonNum >= NB_BUTTONS || !button_up_flags[buttonNum]) return;
778     if (!hwnd) return;
779
780     switch (buttonNum)
781     {
782     case 5:
783         wData = XBUTTON1;
784         break;
785     case 6:
786         wData = XBUTTON2;
787         break;
788     }
789
790     update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
791
792     X11DRV_send_mouse_input( hwnd, button_up_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE,
793                              pt.x, pt.y, wData, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
794 }
795
796
797 /***********************************************************************
798  *           X11DRV_MotionNotify
799  */
800 void X11DRV_MotionNotify( HWND hwnd, XEvent *xev )
801 {
802     XMotionEvent *event = &xev->xmotion;
803     POINT pt;
804
805     TRACE("hwnd %p, event->is_hint %d\n", hwnd, event->is_hint);
806
807     if (!hwnd) return;
808
809     update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
810
811     X11DRV_send_mouse_input( hwnd, MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
812                              pt.x, pt.y, 0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
813 }
814
815
816 /***********************************************************************
817  *           X11DRV_EnterNotify
818  */
819 void X11DRV_EnterNotify( HWND hwnd, XEvent *xev )
820 {
821     XCrossingEvent *event = &xev->xcrossing;
822     POINT pt;
823
824     TRACE("hwnd %p, event->detail %d\n", hwnd, event->detail);
825
826     if (!hwnd) return;
827     if (event->detail == NotifyVirtual || event->detail == NotifyNonlinearVirtual) return;
828
829     /* simulate a mouse motion event */
830     update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
831
832     X11DRV_send_mouse_input( hwnd, MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
833                              pt.x, pt.y, 0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
834 }
835
836
837 #ifdef HAVE_LIBXXF86DGA2
838
839 extern HWND DGAhwnd;
840
841 /**********************************************************************
842  *              X11DRV_DGAMotionEvent
843  */
844 void X11DRV_DGAMotionEvent( HWND hwnd, XEvent *xev )
845 {
846     XDGAMotionEvent *event = (XDGAMotionEvent *)xev;
847     update_key_state( event->state );
848     X11DRV_send_mouse_input( DGAhwnd, MOUSEEVENTF_MOVE, event->dx, event->dy,
849                              0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
850 }
851
852 /**********************************************************************
853  *              X11DRV_DGAButtonPressEvent
854  */
855 void X11DRV_DGAButtonPressEvent( HWND hwnd, XEvent *xev )
856 {
857     XDGAButtonEvent *event = (XDGAButtonEvent *)xev;
858     int buttonNum = event->button - 1;
859
860     if (buttonNum >= NB_BUTTONS) return;
861     update_key_state( event->state );
862     X11DRV_send_mouse_input( DGAhwnd, button_down_flags[buttonNum], 0, 0,
863                              0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
864 }
865
866 /**********************************************************************
867  *              X11DRV_DGAButtonReleaseEvent
868  */
869 void X11DRV_DGAButtonReleaseEvent( HWND hwnd, XEvent *xev )
870 {
871     XDGAButtonEvent *event = (XDGAButtonEvent *)xev;
872     int buttonNum = event->button - 1;
873
874     if (buttonNum >= NB_BUTTONS) return;
875     update_key_state( event->state );
876     X11DRV_send_mouse_input( DGAhwnd, button_up_flags[buttonNum], 0, 0,
877                              0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
878 }
879
880 #endif /* HAVE_LIBXXF86DGA2 */