user32: Renamed the user/ directory to user32.
[wine.git] / dlls / winex11.drv / mouse.c
blobe6f899a7b276daf724dc7bb06bafc58cbd31a70f
1 /*
2 * X11 mouse driver
4 * Copyright 1998 Ulrich Weigand
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
23 #include <X11/Xlib.h>
24 #include <stdarg.h>
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
28 #include "windef.h"
29 #include "winbase.h"
30 #include "wine/winuser16.h"
32 #include "win.h"
33 #include "x11drv.h"
34 #include "wine/server.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
39 /**********************************************************************/
41 #ifndef Button6Mask
42 #define Button6Mask (1<<13)
43 #endif
44 #ifndef Button7Mask
45 #define Button7Mask (1<<14)
46 #endif
48 #define NB_BUTTONS 7 /* Windows can handle 5 buttons and the wheel too */
50 static const UINT button_down_flags[NB_BUTTONS] =
52 MOUSEEVENTF_LEFTDOWN,
53 MOUSEEVENTF_MIDDLEDOWN,
54 MOUSEEVENTF_RIGHTDOWN,
55 MOUSEEVENTF_WHEEL,
56 MOUSEEVENTF_WHEEL,
57 MOUSEEVENTF_XDOWN,
58 MOUSEEVENTF_XDOWN
61 static const UINT button_up_flags[NB_BUTTONS] =
63 MOUSEEVENTF_LEFTUP,
64 MOUSEEVENTF_MIDDLEUP,
65 MOUSEEVENTF_RIGHTUP,
68 MOUSEEVENTF_XUP,
69 MOUSEEVENTF_XUP
72 POINT cursor_pos;
74 /***********************************************************************
75 * get_coords
77 * get the coordinates of a mouse event
79 static inline void get_coords( HWND hwnd, int x, int y, POINT *pt )
81 struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
83 if (!data) return;
85 pt->x = x + data->whole_rect.left;
86 pt->y = y + data->whole_rect.top;
90 /***********************************************************************
91 * update_button_state
93 * Update the button state with what X provides us
95 static inline void update_button_state( unsigned int state )
97 key_state_table[VK_LBUTTON] = (state & Button1Mask ? 0x80 : 0);
98 key_state_table[VK_MBUTTON] = (state & Button2Mask ? 0x80 : 0);
99 key_state_table[VK_RBUTTON] = (state & Button3Mask ? 0x80 : 0);
100 key_state_table[VK_XBUTTON1]= (state & Button6Mask ? 0x80 : 0);
101 key_state_table[VK_XBUTTON2]= (state & Button7Mask ? 0x80 : 0);
105 /***********************************************************************
106 * update_key_state
108 * Update the key state with what X provides us
110 static inline void update_key_state( unsigned int state )
112 key_state_table[VK_SHIFT] = (state & ShiftMask ? 0x80 : 0);
113 key_state_table[VK_CONTROL] = (state & ControlMask ? 0x80 : 0);
117 /***********************************************************************
118 * update_mouse_state
120 * Update the various window states on a mouse event.
122 static void update_mouse_state( HWND hwnd, Window window, int x, int y, unsigned int state, POINT *pt )
124 struct x11drv_thread_data *data = x11drv_thread_data();
126 if (window == root_window)
128 x += virtual_screen_rect.left;
129 y += virtual_screen_rect.top;
131 get_coords( hwnd, x, y, pt );
132 update_key_state( state );
134 /* update the cursor */
136 if (data->cursor_window != window)
138 data->cursor_window = window;
139 wine_tsx11_lock();
140 if (data->cursor) XDefineCursor( data->display, window, data->cursor );
141 wine_tsx11_unlock();
144 /* update the wine server Z-order */
146 if (window != data->grab_window &&
147 /* ignore event if a button is pressed, since the mouse is then grabbed too */
148 !(state & (Button1Mask|Button2Mask|Button3Mask|Button4Mask|Button5Mask|Button6Mask|Button7Mask)))
150 SERVER_START_REQ( update_window_zorder )
152 req->window = hwnd;
153 req->rect.left = pt->x;
154 req->rect.top = pt->y;
155 req->rect.right = pt->x + 1;
156 req->rect.bottom = pt->y + 1;
157 wine_server_call( req );
159 SERVER_END_REQ;
164 /***********************************************************************
165 * get_key_state
167 static WORD get_key_state(void)
169 WORD ret = 0;
171 if (GetSystemMetrics( SM_SWAPBUTTON ))
173 if (key_state_table[VK_RBUTTON] & 0x80) ret |= MK_LBUTTON;
174 if (key_state_table[VK_LBUTTON] & 0x80) ret |= MK_RBUTTON;
176 else
178 if (key_state_table[VK_LBUTTON] & 0x80) ret |= MK_LBUTTON;
179 if (key_state_table[VK_RBUTTON] & 0x80) ret |= MK_RBUTTON;
181 if (key_state_table[VK_MBUTTON] & 0x80) ret |= MK_MBUTTON;
182 if (key_state_table[VK_SHIFT] & 0x80) ret |= MK_SHIFT;
183 if (key_state_table[VK_CONTROL] & 0x80) ret |= MK_CONTROL;
184 if (key_state_table[VK_XBUTTON1] & 0x80) ret |= MK_XBUTTON1;
185 if (key_state_table[VK_XBUTTON2] & 0x80) ret |= MK_XBUTTON2;
186 return ret;
190 /***********************************************************************
191 * queue_raw_mouse_message
193 static void queue_raw_mouse_message( UINT message, HWND hwnd, DWORD x, DWORD y,
194 DWORD data, DWORD time, DWORD extra_info, UINT injected_flags )
196 MSLLHOOKSTRUCT hook;
198 hook.pt.x = x;
199 hook.pt.y = y;
200 hook.mouseData = MAKELONG( 0, data );
201 hook.flags = injected_flags;
202 hook.time = time;
203 hook.dwExtraInfo = extra_info;
205 if (HOOK_CallHooks( WH_MOUSE_LL, HC_ACTION, message, (LPARAM)&hook, TRUE )) return;
207 SERVER_START_REQ( send_hardware_message )
209 req->id = (injected_flags & LLMHF_INJECTED) ? 0 : GetCurrentThreadId();
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 wine_server_call( req );
220 SERVER_END_REQ;
225 /***********************************************************************
226 * X11DRV_send_mouse_input
228 void X11DRV_send_mouse_input( HWND hwnd, DWORD flags, DWORD x, DWORD y,
229 DWORD data, DWORD time, DWORD extra_info, UINT injected_flags )
231 POINT pt;
233 if (flags & MOUSEEVENTF_ABSOLUTE)
235 if (injected_flags & LLMHF_INJECTED)
237 pt.x = (x * screen_width) >> 16;
238 pt.y = (y * screen_height) >> 16;
240 else
242 pt.x = x;
243 pt.y = y;
245 wine_tsx11_lock();
246 cursor_pos = pt;
247 wine_tsx11_unlock();
249 else if (flags & MOUSEEVENTF_MOVE)
251 int accel[3], xMult = 1, yMult = 1;
253 /* dx and dy can be negative numbers for relative movements */
254 SystemParametersInfoW(SPI_GETMOUSE, 0, accel, 0);
256 if (abs(x) > accel[0] && accel[2] != 0)
258 xMult = 2;
259 if ((abs(x) > accel[1]) && (accel[2] == 2)) xMult = 4;
261 if (abs(y) > accel[0] && accel[2] != 0)
263 yMult = 2;
264 if ((abs(y) > accel[1]) && (accel[2] == 2)) yMult = 4;
267 wine_tsx11_lock();
268 pt.x = cursor_pos.x + (long)x * xMult;
269 pt.y = cursor_pos.y + (long)y * yMult;
271 /* Clip to the current screen size */
272 if (pt.x < 0) pt.x = 0;
273 else if (pt.x >= screen_width) pt.x = screen_width - 1;
274 if (pt.y < 0) pt.y = 0;
275 else if (pt.y >= screen_height) pt.y = screen_height - 1;
276 cursor_pos = pt;
277 wine_tsx11_unlock();
279 else
281 wine_tsx11_lock();
282 pt = cursor_pos;
283 wine_tsx11_unlock();
286 if (flags & MOUSEEVENTF_MOVE)
288 queue_raw_mouse_message( WM_MOUSEMOVE, hwnd, pt.x, pt.y, data, time,
289 extra_info, injected_flags );
290 if ((injected_flags & LLMHF_INJECTED) &&
291 ((flags & MOUSEEVENTF_ABSOLUTE) || x || y)) /* we have to actually move the cursor */
293 TRACE( "warping to (%d,%d)\n", pt.x, pt.y );
294 wine_tsx11_lock();
295 XWarpPointer( thread_display(), root_window, root_window, 0, 0, 0, 0,
296 pt.x - virtual_screen_rect.left, pt.y - virtual_screen_rect.top );
297 wine_tsx11_unlock();
300 if (flags & MOUSEEVENTF_LEFTDOWN)
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 );
306 if (flags & MOUSEEVENTF_LEFTUP)
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 );
312 if (flags & MOUSEEVENTF_RIGHTDOWN)
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 );
318 if (flags & MOUSEEVENTF_RIGHTUP)
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 );
324 if (flags & MOUSEEVENTF_MIDDLEDOWN)
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 );
330 if (flags & MOUSEEVENTF_MIDDLEUP)
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 );
336 if (flags & MOUSEEVENTF_WHEEL)
338 queue_raw_mouse_message( WM_MOUSEWHEEL, hwnd, pt.x, pt.y, data, time,
339 extra_info, injected_flags );
341 if (flags & MOUSEEVENTF_XDOWN)
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 );
347 if (flags & MOUSEEVENTF_XUP)
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 );
356 /***********************************************************************
357 * create_cursor
359 * Create an X cursor from a Windows one.
361 static Cursor create_cursor( Display *display, CURSORICONINFO *ptr )
363 Pixmap pixmapBits, pixmapMask, pixmapMaskInv, pixmapAll;
364 XColor fg, bg;
365 Cursor cursor = None;
367 if (!ptr) /* Create an empty cursor */
369 static const char data[] = { 0 };
371 bg.red = bg.green = bg.blue = 0x0000;
372 pixmapBits = XCreateBitmapFromData( display, root_window, data, 1, 1 );
373 if (pixmapBits)
375 cursor = XCreatePixmapCursor( display, pixmapBits, pixmapBits,
376 &bg, &bg, 0, 0 );
377 XFreePixmap( display, pixmapBits );
380 else /* Create the X cursor from the bits */
382 XImage *image;
383 GC gc;
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 */
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.
395 /* This pixmap will be written with two bitmaps. The first is
396 * the mask and the second is the image.
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)))
405 XFreePixmap( display, pixmapAll );
406 return 0;
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)
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 );
422 else
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 */
432 switch (ptr->bBitsPerPixel)
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;
455 /* The location of the mask. */
456 theMask = (unsigned char *)(ptr + 1);
457 /* The mask should still be 1 bit per pixel. The color image
458 * should immediately follow the mask.
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);
472 ymax = (ptr->nHeight > 32) ? 32 : ptr->nHeight;
474 memset(pXorBits, 0, 128);
475 for (y=0; y<ymax; y++)
477 for (x=0; x<xmax; x++)
479 red = green = blue = 0;
480 switch (ptr->bBitsPerPixel)
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;
500 if (red+green+blue > threshold)
502 rfg += red;
503 gfg += green;
504 bfg += blue;
505 fgBits++;
506 pXorBits[xorIndex] |= bitShifted;
508 else
510 rbg += red;
511 gbg += green;
512 bbg += blue;
514 if (x%8 == 7)
516 bitShifted = 0x01;
517 xorIndex++;
519 else
520 bitShifted = bitShifted << 1;
523 rscale = 1 << (16 - rbits);
524 gscale = 1 << (16 - gbits);
525 bscale = 1 << (16 - bbits);
526 if (fgBits)
528 fg.red = rfg * rscale / fgBits;
529 fg.green = gfg * gscale / fgBits;
530 fg.blue = bfg * bscale / fgBits;
532 else fg.red = fg.green = fg.blue = 0;
533 bgBits = xmax * ymax - fgBits;
534 if (bgBits)
536 bg.red = rbg * rscale / bgBits;
537 bg.green = gbg * gscale / bgBits;
538 bg.blue = bbg * bscale / bgBits;
540 else bg.red = bg.green = bg.blue = 0;
541 pixmapBits = XCreateBitmapFromData( display, root_window, (char *)pXorBits, xmax, ymax );
542 if (!pixmapBits)
544 XFreePixmap( display, pixmapAll );
545 XFreeGC( display, gc );
546 image->data = NULL;
547 XDestroyImage( image );
548 return 0;
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 );
560 image->data = NULL;
561 XDestroyImage( image );
563 /* Now create the 2 pixmaps for bits and mask */
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 );
569 /* Make sure everything went OK so far */
571 if (pixmapBits && pixmapMask && pixmapMaskInv)
573 POINT hotspot;
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:
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
589 * which gives:
590 * Bits = not 'And' and 'Xor' or 'And2' and 'Xor2'
591 * Mask = not 'And' or 'Xor' or 'And2' and 'Xor2'
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
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 );
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)
627 hotspot.x = ptr->nWidth / 2;
628 hotspot.y = ptr->nHeight / 2;
630 cursor = XCreatePixmapCursor( display, pixmapBits, pixmapMask,
631 &fg, &bg, hotspot.x, hotspot.y );
634 /* Now free everything */
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 );
642 return cursor;
646 /***********************************************************************
647 * SetCursor (X11DRV.@)
649 void X11DRV_SetCursor( CURSORICONINFO *lpCursor )
651 Cursor cursor;
653 if (root_window != DefaultRootWindow(gdi_display))
655 /* If in desktop mode, set the cursor on the desktop window */
657 wine_tsx11_lock();
658 cursor = create_cursor( gdi_display, lpCursor );
659 if (cursor)
661 XDefineCursor( gdi_display, root_window, cursor );
662 /* Make the change take effect immediately */
663 XFlush(gdi_display);
664 XFreeCursor( gdi_display, cursor );
666 wine_tsx11_unlock();
668 else /* set the same cursor for all top-level windows of the current thread */
670 struct x11drv_thread_data *data = x11drv_thread_data();
672 wine_tsx11_lock();
673 cursor = create_cursor( data->display, lpCursor );
674 if (cursor)
676 if (data->cursor) XFreeCursor( data->display, data->cursor );
677 data->cursor = cursor;
678 if (data->cursor_window)
680 XDefineCursor( data->display, data->cursor_window, cursor );
681 /* Make the change take effect immediately */
682 XFlush( data->display );
685 wine_tsx11_unlock();
689 /***********************************************************************
690 * SetCursorPos (X11DRV.@)
692 BOOL X11DRV_SetCursorPos( INT x, INT y )
694 Display *display = thread_display();
696 TRACE( "warping to (%d,%d)\n", x, y );
698 wine_tsx11_lock();
699 XWarpPointer( display, root_window, root_window, 0, 0, 0, 0,
700 x - virtual_screen_rect.left, y - virtual_screen_rect.top );
701 XFlush( display ); /* avoids bad mouse lag in games that do their own mouse warping */
702 cursor_pos.x = x;
703 cursor_pos.y = y;
704 wine_tsx11_unlock();
705 return TRUE;
708 /***********************************************************************
709 * GetCursorPos (X11DRV.@)
711 BOOL X11DRV_GetCursorPos(LPPOINT pos)
713 Display *display = thread_display();
714 Window root, child;
715 int rootX, rootY, winX, winY;
716 unsigned int xstate;
718 wine_tsx11_lock();
719 if (XQueryPointer( display, root_window, &root, &child,
720 &rootX, &rootY, &winX, &winY, &xstate ))
722 update_key_state( xstate );
723 update_button_state( xstate );
724 winX += virtual_screen_rect.left;
725 winY += virtual_screen_rect.top;
726 TRACE("pointer at (%d,%d)\n", winX, winY );
727 cursor_pos.x = winX;
728 cursor_pos.y = winY;
730 *pos = cursor_pos;
731 wine_tsx11_unlock();
732 return TRUE;
735 /***********************************************************************
736 * X11DRV_ButtonPress
738 void X11DRV_ButtonPress( HWND hwnd, XEvent *xev )
740 XButtonEvent *event = &xev->xbutton;
741 int buttonNum = event->button - 1;
742 WORD wData = 0;
743 POINT pt;
745 if (buttonNum >= NB_BUTTONS) return;
746 if (!hwnd) return;
748 switch (buttonNum)
750 case 3:
751 wData = WHEEL_DELTA;
752 break;
753 case 4:
754 wData = -WHEEL_DELTA;
755 break;
756 case 5:
757 wData = XBUTTON1;
758 break;
759 case 6:
760 wData = XBUTTON2;
761 break;
764 update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
766 X11DRV_send_mouse_input( hwnd, button_down_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE,
767 pt.x, pt.y, wData, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
771 /***********************************************************************
772 * X11DRV_ButtonRelease
774 void X11DRV_ButtonRelease( HWND hwnd, XEvent *xev )
776 XButtonEvent *event = &xev->xbutton;
777 int buttonNum = event->button - 1;
778 WORD wData = 0;
779 POINT pt;
781 if (buttonNum >= NB_BUTTONS || !button_up_flags[buttonNum]) return;
782 if (!hwnd) return;
784 switch (buttonNum)
786 case 5:
787 wData = XBUTTON1;
788 break;
789 case 6:
790 wData = XBUTTON2;
791 break;
794 update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
796 X11DRV_send_mouse_input( hwnd, button_up_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE,
797 pt.x, pt.y, wData, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
801 /***********************************************************************
802 * X11DRV_MotionNotify
804 void X11DRV_MotionNotify( HWND hwnd, XEvent *xev )
806 XMotionEvent *event = &xev->xmotion;
807 POINT pt;
809 TRACE("hwnd %p, event->is_hint %d\n", hwnd, event->is_hint);
811 if (!hwnd) return;
813 update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
815 X11DRV_send_mouse_input( hwnd, MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
816 pt.x, pt.y, 0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
820 /***********************************************************************
821 * X11DRV_EnterNotify
823 void X11DRV_EnterNotify( HWND hwnd, XEvent *xev )
825 XCrossingEvent *event = &xev->xcrossing;
826 POINT pt;
828 TRACE("hwnd %p, event->detail %d\n", hwnd, event->detail);
830 if (!hwnd) return;
831 if (event->detail == NotifyVirtual || event->detail == NotifyNonlinearVirtual) return;
833 /* simulate a mouse motion event */
834 update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
836 X11DRV_send_mouse_input( hwnd, MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
837 pt.x, pt.y, 0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );