1998-12-07 10:13:40 +01:00
|
|
|
/*
|
1998-12-26 13:00:43 +01:00
|
|
|
* X11 mouse driver
|
1998-12-07 10:13:40 +01:00
|
|
|
*
|
1998-12-26 13:00:43 +01:00
|
|
|
* Copyright 1998 Ulrich Weigand
|
2007-03-22 20:06:19 +01:00
|
|
|
* Copyright 2007 Henri Verbeet
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1998-12-07 10:13:40 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2007-03-22 20:06:19 +01:00
|
|
|
#include "wine/port.h"
|
1998-12-07 10:13:40 +01:00
|
|
|
|
2003-11-21 22:48:36 +01:00
|
|
|
#include <X11/Xlib.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
1998-12-26 13:00:43 +01:00
|
|
|
|
2007-07-09 22:42:28 +02:00
|
|
|
#ifdef SONAME_LIBXCURSOR
|
2007-03-22 20:06:19 +01:00
|
|
|
# include <X11/Xcursor/Xcursor.h>
|
|
|
|
static void *xcursor_handle;
|
|
|
|
# define MAKE_FUNCPTR(f) static typeof(f) * p##f
|
|
|
|
MAKE_FUNCPTR(XcursorImageCreate);
|
|
|
|
MAKE_FUNCPTR(XcursorImageDestroy);
|
|
|
|
MAKE_FUNCPTR(XcursorImageLoadCursor);
|
|
|
|
# undef MAKE_FUNCPTR
|
2007-07-09 22:42:28 +02:00
|
|
|
#endif /* SONAME_LIBXCURSOR */
|
2007-03-22 20:06:19 +01:00
|
|
|
|
2003-01-07 21:36:20 +01:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2001-01-15 23:30:50 +01:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2001-01-15 23:30:50 +01:00
|
|
|
#include "wine/winuser16.h"
|
|
|
|
|
1998-12-07 10:13:40 +01:00
|
|
|
#include "x11drv.h"
|
2005-03-09 17:45:23 +01:00
|
|
|
#include "wine/server.h"
|
2007-03-22 20:06:19 +01:00
|
|
|
#include "wine/library.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1998-12-07 10:13:40 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(cursor);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1998-12-26 13:00:43 +01:00
|
|
|
/**********************************************************************/
|
|
|
|
|
2005-03-24 20:15:41 +01:00
|
|
|
#ifndef Button6Mask
|
|
|
|
#define Button6Mask (1<<13)
|
|
|
|
#endif
|
|
|
|
#ifndef Button7Mask
|
|
|
|
#define Button7Mask (1<<14)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define NB_BUTTONS 7 /* Windows can handle 5 buttons and the wheel too */
|
2001-10-18 23:38:59 +02:00
|
|
|
|
|
|
|
static const UINT button_down_flags[NB_BUTTONS] =
|
|
|
|
{
|
|
|
|
MOUSEEVENTF_LEFTDOWN,
|
|
|
|
MOUSEEVENTF_MIDDLEDOWN,
|
|
|
|
MOUSEEVENTF_RIGHTDOWN,
|
|
|
|
MOUSEEVENTF_WHEEL,
|
2005-03-24 20:15:41 +01:00
|
|
|
MOUSEEVENTF_WHEEL,
|
|
|
|
MOUSEEVENTF_XDOWN,
|
|
|
|
MOUSEEVENTF_XDOWN
|
2001-10-18 23:38:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const UINT button_up_flags[NB_BUTTONS] =
|
|
|
|
{
|
|
|
|
MOUSEEVENTF_LEFTUP,
|
|
|
|
MOUSEEVENTF_MIDDLEUP,
|
|
|
|
MOUSEEVENTF_RIGHTUP,
|
|
|
|
0,
|
2005-03-24 20:15:41 +01:00
|
|
|
0,
|
|
|
|
MOUSEEVENTF_XUP,
|
|
|
|
MOUSEEVENTF_XUP
|
2001-10-18 23:38:59 +02:00
|
|
|
};
|
|
|
|
|
2005-03-09 17:45:23 +01:00
|
|
|
POINT cursor_pos;
|
2006-12-18 21:26:35 +01:00
|
|
|
static DWORD last_time_modified;
|
2007-01-04 20:24:50 +01:00
|
|
|
static RECT cursor_clip; /* Cursor clipping rect */
|
2001-10-18 23:38:59 +02:00
|
|
|
|
2006-12-12 23:58:37 +01:00
|
|
|
BOOL X11DRV_SetCursorPos( INT x, INT y );
|
|
|
|
|
2007-03-22 20:06:19 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_Xcursor_Init
|
|
|
|
*
|
|
|
|
* Load the Xcursor library for use.
|
|
|
|
*/
|
|
|
|
void X11DRV_Xcursor_Init(void)
|
|
|
|
{
|
2007-07-09 22:42:28 +02:00
|
|
|
#ifdef SONAME_LIBXCURSOR
|
2007-03-22 20:06:19 +01:00
|
|
|
xcursor_handle = wine_dlopen(SONAME_LIBXCURSOR, RTLD_NOW, NULL, 0);
|
|
|
|
if (!xcursor_handle) /* wine_dlopen failed. */
|
|
|
|
{
|
|
|
|
WARN("Xcursor failed to load. Using fallback code.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#define LOAD_FUNCPTR(f) \
|
|
|
|
p##f = wine_dlsym(xcursor_handle, #f, NULL, 0)
|
|
|
|
|
|
|
|
LOAD_FUNCPTR(XcursorImageCreate);
|
|
|
|
LOAD_FUNCPTR(XcursorImageDestroy);
|
|
|
|
LOAD_FUNCPTR(XcursorImageLoadCursor);
|
|
|
|
#undef LOAD_FUNCPTR
|
2007-07-09 22:42:28 +02:00
|
|
|
#endif /* SONAME_LIBXCURSOR */
|
2007-03-22 20:06:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* get_coords
|
|
|
|
*
|
|
|
|
* get the coordinates of a mouse event
|
|
|
|
*/
|
2008-02-21 12:29:36 +01:00
|
|
|
static inline void get_coords( HWND hwnd, Window window, int x, int y, POINT *pt )
|
2001-10-18 23:38:59 +02:00
|
|
|
{
|
2005-01-31 17:34:07 +01:00
|
|
|
struct x11drv_win_data *data = X11DRV_get_win_data( hwnd );
|
2001-10-18 23:38:59 +02:00
|
|
|
|
2005-01-17 20:17:47 +01:00
|
|
|
if (!data) return;
|
2001-10-18 23:38:59 +02:00
|
|
|
|
2008-02-21 12:29:36 +01:00
|
|
|
if (window == data->client_window)
|
|
|
|
{
|
|
|
|
pt->x = x + data->client_rect.left;
|
|
|
|
pt->y = y + data->client_rect.top;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pt->x = x + data->whole_rect.left;
|
|
|
|
pt->y = y + data->whole_rect.top;
|
|
|
|
}
|
2001-10-18 23:38:59 +02:00
|
|
|
}
|
|
|
|
|
2007-01-04 20:24:50 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* clip_point_to_rect
|
|
|
|
*
|
|
|
|
* Clip point to the provided rectangle
|
|
|
|
*/
|
|
|
|
static inline void clip_point_to_rect( LPCRECT rect, LPPOINT pt )
|
|
|
|
{
|
|
|
|
if (pt->x < rect->left) pt->x = rect->left;
|
|
|
|
else if (pt->x >= rect->right) pt->x = rect->right - 1;
|
|
|
|
if (pt->y < rect->top) pt->y = rect->top;
|
|
|
|
else if (pt->y >= rect->bottom) pt->y = rect->bottom - 1;
|
|
|
|
}
|
2001-10-18 23:38:59 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
2002-08-16 03:43:41 +02:00
|
|
|
* update_button_state
|
2001-10-18 23:38:59 +02:00
|
|
|
*
|
2002-08-16 03:43:41 +02:00
|
|
|
* Update the button state with what X provides us
|
2001-10-18 23:38:59 +02:00
|
|
|
*/
|
2005-03-21 13:37:00 +01:00
|
|
|
static inline void update_button_state( unsigned int state )
|
2001-10-18 23:38:59 +02:00
|
|
|
{
|
2005-03-09 17:45:23 +01:00
|
|
|
key_state_table[VK_LBUTTON] = (state & Button1Mask ? 0x80 : 0);
|
|
|
|
key_state_table[VK_MBUTTON] = (state & Button2Mask ? 0x80 : 0);
|
|
|
|
key_state_table[VK_RBUTTON] = (state & Button3Mask ? 0x80 : 0);
|
2006-11-25 22:46:35 +01:00
|
|
|
/* X-buttons are not reported from XQueryPointer */
|
2002-08-16 03:43:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-21 13:37:00 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* update_mouse_state
|
|
|
|
*
|
|
|
|
* Update the various window states on a mouse event.
|
|
|
|
*/
|
|
|
|
static void update_mouse_state( HWND hwnd, Window window, int x, int y, unsigned int state, POINT *pt )
|
|
|
|
{
|
|
|
|
struct x11drv_thread_data *data = x11drv_thread_data();
|
|
|
|
|
2008-02-21 12:29:36 +01:00
|
|
|
get_coords( hwnd, window, x, y, pt );
|
2005-03-21 13:37:00 +01:00
|
|
|
|
|
|
|
/* update the cursor */
|
|
|
|
|
|
|
|
if (data->cursor_window != window)
|
|
|
|
{
|
|
|
|
data->cursor_window = window;
|
|
|
|
wine_tsx11_lock();
|
|
|
|
if (data->cursor) XDefineCursor( data->display, window, data->cursor );
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update the wine server Z-order */
|
|
|
|
|
|
|
|
if (window != data->grab_window &&
|
|
|
|
/* ignore event if a button is pressed, since the mouse is then grabbed too */
|
2005-03-24 20:15:41 +01:00
|
|
|
!(state & (Button1Mask|Button2Mask|Button3Mask|Button4Mask|Button5Mask|Button6Mask|Button7Mask)))
|
2005-03-21 13:37:00 +01:00
|
|
|
{
|
|
|
|
SERVER_START_REQ( update_window_zorder )
|
|
|
|
{
|
|
|
|
req->window = hwnd;
|
|
|
|
req->rect.left = pt->x;
|
|
|
|
req->rect.top = pt->y;
|
|
|
|
req->rect.right = pt->x + 1;
|
|
|
|
req->rect.bottom = pt->y + 1;
|
|
|
|
wine_server_call( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
/***********************************************************************
|
2005-03-09 17:45:23 +01:00
|
|
|
* get_key_state
|
2001-10-18 23:38:59 +02:00
|
|
|
*/
|
2005-03-09 17:45:23 +01:00
|
|
|
static WORD get_key_state(void)
|
2001-10-18 23:38:59 +02:00
|
|
|
{
|
2005-03-09 17:45:23 +01:00
|
|
|
WORD ret = 0;
|
|
|
|
|
|
|
|
if (GetSystemMetrics( SM_SWAPBUTTON ))
|
|
|
|
{
|
|
|
|
if (key_state_table[VK_RBUTTON] & 0x80) ret |= MK_LBUTTON;
|
|
|
|
if (key_state_table[VK_LBUTTON] & 0x80) ret |= MK_RBUTTON;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (key_state_table[VK_LBUTTON] & 0x80) ret |= MK_LBUTTON;
|
|
|
|
if (key_state_table[VK_RBUTTON] & 0x80) ret |= MK_RBUTTON;
|
|
|
|
}
|
|
|
|
if (key_state_table[VK_MBUTTON] & 0x80) ret |= MK_MBUTTON;
|
|
|
|
if (key_state_table[VK_SHIFT] & 0x80) ret |= MK_SHIFT;
|
|
|
|
if (key_state_table[VK_CONTROL] & 0x80) ret |= MK_CONTROL;
|
|
|
|
if (key_state_table[VK_XBUTTON1] & 0x80) ret |= MK_XBUTTON1;
|
|
|
|
if (key_state_table[VK_XBUTTON2] & 0x80) ret |= MK_XBUTTON2;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* queue_raw_mouse_message
|
|
|
|
*/
|
|
|
|
static void queue_raw_mouse_message( UINT message, HWND hwnd, DWORD x, DWORD y,
|
|
|
|
DWORD data, DWORD time, DWORD extra_info, UINT injected_flags )
|
|
|
|
{
|
|
|
|
MSLLHOOKSTRUCT hook;
|
|
|
|
|
|
|
|
hook.pt.x = x;
|
|
|
|
hook.pt.y = y;
|
|
|
|
hook.mouseData = MAKELONG( 0, data );
|
|
|
|
hook.flags = injected_flags;
|
|
|
|
hook.time = time;
|
|
|
|
hook.dwExtraInfo = extra_info;
|
|
|
|
|
2006-12-18 21:26:35 +01:00
|
|
|
last_time_modified = GetTickCount();
|
2005-03-09 17:45:23 +01:00
|
|
|
if (HOOK_CallHooks( WH_MOUSE_LL, HC_ACTION, message, (LPARAM)&hook, TRUE )) return;
|
|
|
|
|
2006-08-09 16:45:26 +02:00
|
|
|
SERVER_START_REQ( send_hardware_message )
|
2005-03-09 17:45:23 +01:00
|
|
|
{
|
2005-03-16 21:10:35 +01:00
|
|
|
req->id = (injected_flags & LLMHF_INJECTED) ? 0 : GetCurrentThreadId();
|
2005-03-09 17:45:23 +01:00
|
|
|
req->win = hwnd;
|
|
|
|
req->msg = message;
|
|
|
|
req->wparam = MAKEWPARAM( get_key_state(), data );
|
|
|
|
req->lparam = 0;
|
|
|
|
req->x = x;
|
|
|
|
req->y = y;
|
|
|
|
req->time = time;
|
|
|
|
req->info = extra_info;
|
|
|
|
wine_server_call( req );
|
|
|
|
}
|
|
|
|
SERVER_END_REQ;
|
|
|
|
|
|
|
|
}
|
2001-10-18 23:38:59 +02:00
|
|
|
|
2005-03-09 17:45:23 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_send_mouse_input
|
|
|
|
*/
|
|
|
|
void X11DRV_send_mouse_input( HWND hwnd, DWORD flags, DWORD x, DWORD y,
|
|
|
|
DWORD data, DWORD time, DWORD extra_info, UINT injected_flags )
|
|
|
|
{
|
|
|
|
POINT pt;
|
2001-10-18 23:38:59 +02:00
|
|
|
|
2006-12-12 23:57:22 +01:00
|
|
|
if (flags & MOUSEEVENTF_MOVE && flags & MOUSEEVENTF_ABSOLUTE)
|
2001-10-18 23:38:59 +02:00
|
|
|
{
|
2005-03-09 17:45:23 +01:00
|
|
|
if (injected_flags & LLMHF_INJECTED)
|
|
|
|
{
|
|
|
|
pt.x = (x * screen_width) >> 16;
|
|
|
|
pt.y = (y * screen_height) >> 16;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pt.x = x;
|
|
|
|
pt.y = y;
|
2007-10-04 14:54:18 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
if (cursor_pos.x == x && cursor_pos.y == y &&
|
|
|
|
(flags & ~(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE)))
|
|
|
|
flags &= ~MOUSEEVENTF_MOVE;
|
|
|
|
wine_tsx11_unlock();
|
2005-03-09 17:45:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (flags & MOUSEEVENTF_MOVE)
|
|
|
|
{
|
|
|
|
int accel[3], xMult = 1, yMult = 1;
|
|
|
|
|
|
|
|
/* dx and dy can be negative numbers for relative movements */
|
|
|
|
SystemParametersInfoW(SPI_GETMOUSE, 0, accel, 0);
|
|
|
|
|
2006-07-08 04:05:14 +02:00
|
|
|
if (abs(x) > accel[0] && accel[2] != 0)
|
2005-03-09 17:45:23 +01:00
|
|
|
{
|
|
|
|
xMult = 2;
|
2006-07-08 04:05:14 +02:00
|
|
|
if ((abs(x) > accel[1]) && (accel[2] == 2)) xMult = 4;
|
2005-03-09 17:45:23 +01:00
|
|
|
}
|
2006-07-08 04:05:14 +02:00
|
|
|
if (abs(y) > accel[0] && accel[2] != 0)
|
2005-03-09 17:45:23 +01:00
|
|
|
{
|
|
|
|
yMult = 2;
|
2006-07-08 04:05:14 +02:00
|
|
|
if ((abs(y) > accel[1]) && (accel[2] == 2)) yMult = 4;
|
2005-03-09 17:45:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
wine_tsx11_lock();
|
|
|
|
pt.x = cursor_pos.x + (long)x * xMult;
|
|
|
|
pt.y = cursor_pos.y + (long)y * yMult;
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wine_tsx11_lock();
|
|
|
|
pt = cursor_pos;
|
|
|
|
wine_tsx11_unlock();
|
2001-10-18 23:38:59 +02:00
|
|
|
}
|
|
|
|
|
2005-03-09 17:45:23 +01:00
|
|
|
if (flags & MOUSEEVENTF_MOVE)
|
|
|
|
{
|
|
|
|
queue_raw_mouse_message( WM_MOUSEMOVE, hwnd, pt.x, pt.y, data, time,
|
|
|
|
extra_info, injected_flags );
|
2006-03-28 18:18:01 +02:00
|
|
|
if ((injected_flags & LLMHF_INJECTED) &&
|
|
|
|
((flags & MOUSEEVENTF_ABSOLUTE) || x || y)) /* we have to actually move the cursor */
|
2005-03-09 17:45:23 +01:00
|
|
|
{
|
2006-12-12 23:58:37 +01:00
|
|
|
X11DRV_SetCursorPos( pt.x, pt.y );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-03-09 17:45:23 +01:00
|
|
|
wine_tsx11_lock();
|
2007-01-04 20:24:50 +01:00
|
|
|
clip_point_to_rect( &cursor_clip, &pt);
|
2006-12-12 23:58:37 +01:00
|
|
|
cursor_pos = pt;
|
2005-03-09 17:45:23 +01:00
|
|
|
wine_tsx11_unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_LEFTDOWN)
|
|
|
|
{
|
|
|
|
key_state_table[VK_LBUTTON] |= 0xc0;
|
|
|
|
queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_RBUTTONDOWN : WM_LBUTTONDOWN,
|
|
|
|
hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_LEFTUP)
|
|
|
|
{
|
|
|
|
key_state_table[VK_LBUTTON] &= ~0x80;
|
|
|
|
queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_RBUTTONUP : WM_LBUTTONUP,
|
|
|
|
hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_RIGHTDOWN)
|
|
|
|
{
|
|
|
|
key_state_table[VK_RBUTTON] |= 0xc0;
|
|
|
|
queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_LBUTTONDOWN : WM_RBUTTONDOWN,
|
|
|
|
hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_RIGHTUP)
|
|
|
|
{
|
|
|
|
key_state_table[VK_RBUTTON] &= ~0x80;
|
|
|
|
queue_raw_mouse_message( GetSystemMetrics(SM_SWAPBUTTON) ? WM_LBUTTONUP : WM_RBUTTONUP,
|
|
|
|
hwnd, pt.x, pt.y, data, time, extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_MIDDLEDOWN)
|
|
|
|
{
|
|
|
|
key_state_table[VK_MBUTTON] |= 0xc0;
|
|
|
|
queue_raw_mouse_message( WM_MBUTTONDOWN, hwnd, pt.x, pt.y, data, time,
|
|
|
|
extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_MIDDLEUP)
|
|
|
|
{
|
|
|
|
key_state_table[VK_MBUTTON] &= ~0x80;
|
|
|
|
queue_raw_mouse_message( WM_MBUTTONUP, hwnd, pt.x, pt.y, data, time,
|
|
|
|
extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_WHEEL)
|
|
|
|
{
|
|
|
|
queue_raw_mouse_message( WM_MOUSEWHEEL, hwnd, pt.x, pt.y, data, time,
|
|
|
|
extra_info, injected_flags );
|
|
|
|
}
|
2005-03-24 20:15:41 +01:00
|
|
|
if (flags & MOUSEEVENTF_XDOWN)
|
|
|
|
{
|
|
|
|
key_state_table[VK_XBUTTON1 + data - 1] |= 0xc0;
|
|
|
|
queue_raw_mouse_message( WM_XBUTTONDOWN, hwnd, pt.x, pt.y, data, time,
|
|
|
|
extra_info, injected_flags );
|
|
|
|
}
|
|
|
|
if (flags & MOUSEEVENTF_XUP)
|
|
|
|
{
|
|
|
|
key_state_table[VK_XBUTTON1 + data - 1] &= ~0x80;
|
|
|
|
queue_raw_mouse_message( WM_XBUTTONUP, hwnd, pt.x, pt.y, data, time,
|
|
|
|
extra_info, injected_flags );
|
|
|
|
}
|
2001-10-18 23:38:59 +02:00
|
|
|
}
|
|
|
|
|
1998-12-26 13:00:43 +01:00
|
|
|
|
2007-07-09 22:42:28 +02:00
|
|
|
#ifdef SONAME_LIBXCURSOR
|
2007-03-22 20:06:19 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* create_cursor_image
|
|
|
|
*
|
|
|
|
* Create an XcursorImage from a CURSORICONINFO
|
|
|
|
*/
|
|
|
|
static XcursorImage *create_cursor_image( CURSORICONINFO *ptr )
|
|
|
|
{
|
|
|
|
int x, xmax;
|
|
|
|
int y, ymax;
|
|
|
|
int and_size, xor_size;
|
|
|
|
unsigned char *and_bits, *and_ptr, *xor_bits, *xor_ptr;
|
|
|
|
int and_width_bytes, xor_width_bytes;
|
|
|
|
XcursorPixel *pixel_ptr;
|
|
|
|
XcursorImage *image;
|
2007-12-13 12:12:23 +01:00
|
|
|
BOOL alpha_zero = TRUE;
|
2007-03-22 20:06:19 +01:00
|
|
|
|
|
|
|
ymax = (ptr->nHeight > 32) ? 32 : ptr->nHeight;
|
|
|
|
xmax = (ptr->nWidth > 32) ? 32 : ptr->nWidth;
|
|
|
|
|
|
|
|
and_width_bytes = xmax / 8;
|
|
|
|
xor_width_bytes = and_width_bytes * ptr->bBitsPerPixel;
|
|
|
|
|
|
|
|
and_size = ptr->nWidth * ptr->nHeight / 8;
|
|
|
|
and_ptr = and_bits = (unsigned char *)(ptr + 1);
|
|
|
|
|
|
|
|
xor_size = xor_width_bytes * ptr->nHeight;
|
|
|
|
xor_ptr = xor_bits = and_ptr + and_size;
|
|
|
|
|
|
|
|
image = pXcursorImageCreate( xmax, ymax );
|
|
|
|
pixel_ptr = image->pixels;
|
|
|
|
|
2007-12-13 12:12:23 +01:00
|
|
|
/* Generally 32 bit bitmaps have an alpha channel which is used in favor
|
|
|
|
* of the AND mask. However, if all pixels have alpha = 0x00, the bitmap
|
|
|
|
* is treated like one without alpha and the masks are used. As soon as
|
|
|
|
* one pixel has alpha != 0x00, and the mask ignored as described in the
|
|
|
|
* docs.
|
|
|
|
*
|
|
|
|
* This is most likely for applications which create the bitmaps with
|
|
|
|
* CreateDIBitmap, which creates a device dependent bitmap, so the format
|
|
|
|
* that arrives when loading depends on the screen's bpp. Apps that were
|
|
|
|
* written at 8 / 16 bpp times do not know about the 32 bit alpha, so
|
|
|
|
* they would get a completely transparent cursor on 32 bit displays.
|
|
|
|
*
|
|
|
|
* Non-32 bit bitmaps always use the AND mask
|
|
|
|
*/
|
|
|
|
if(ptr->bBitsPerPixel == 32)
|
|
|
|
{
|
|
|
|
for (y = 0; alpha_zero && y < ymax; ++y)
|
|
|
|
{
|
|
|
|
xor_ptr = xor_bits + (y * xor_width_bytes);
|
|
|
|
for (x = 0; x < xmax; ++x)
|
|
|
|
{
|
|
|
|
if (xor_ptr[3] != 0x00)
|
|
|
|
{
|
|
|
|
alpha_zero = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xor_ptr+=4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 20:06:19 +01:00
|
|
|
/* On windows, to calculate the color for a pixel, first an AND is done
|
|
|
|
* with the background and the "and" bitmap, then an XOR with the "xor"
|
|
|
|
* bitmap. This means that when the data in the "and" bitmap is 0, the
|
|
|
|
* pixel will get the color as specified in the "xor" bitmap.
|
|
|
|
* However, if the data in the "and" bitmap is 1, the result will be the
|
|
|
|
* background XOR'ed with the value in the "xor" bitmap. In case the "xor"
|
|
|
|
* data is completely black (0x000000) the pixel will become transparent,
|
|
|
|
* in case it's white (0xffffff) the pixel will become the inverse of the
|
|
|
|
* background color.
|
|
|
|
*
|
|
|
|
* Since we can't support inverting colors, we map the grayscale value of
|
2007-10-23 15:30:30 +02:00
|
|
|
* the "xor" data to the alpha channel, and xor the color with either
|
2007-03-22 20:06:19 +01:00
|
|
|
* black or white.
|
|
|
|
*/
|
|
|
|
for (y = 0; y < ymax; ++y)
|
|
|
|
{
|
|
|
|
and_ptr = and_bits + (y * and_width_bytes);
|
|
|
|
xor_ptr = xor_bits + (y * xor_width_bytes);
|
|
|
|
|
|
|
|
for (x = 0; x < xmax; ++x)
|
|
|
|
{
|
|
|
|
/* Xcursor pixel data is in ARGB format, with A in the high byte */
|
|
|
|
switch (ptr->bBitsPerPixel)
|
|
|
|
{
|
|
|
|
case 32:
|
|
|
|
/* BGRA, 8 bits each */
|
|
|
|
*pixel_ptr = *xor_ptr++;
|
|
|
|
*pixel_ptr |= *xor_ptr++ << 8;
|
|
|
|
*pixel_ptr |= *xor_ptr++ << 16;
|
|
|
|
*pixel_ptr |= *xor_ptr++ << 24;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 24:
|
|
|
|
/* BGR, 8 bits each */
|
|
|
|
*pixel_ptr = *xor_ptr++;
|
|
|
|
*pixel_ptr |= *xor_ptr++ << 8;
|
|
|
|
*pixel_ptr |= *xor_ptr++ << 16;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
|
|
|
/* BGR, 5 red, 6 green, 5 blue */
|
|
|
|
*pixel_ptr = *xor_ptr * 0x1f;
|
|
|
|
*pixel_ptr |= (*xor_ptr & 0xe0) << 3;
|
|
|
|
++xor_ptr;
|
|
|
|
*pixel_ptr |= (*xor_ptr & 0x07) << 11;
|
|
|
|
*pixel_ptr |= (*xor_ptr & 0xf8) << 13;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
if (*xor_ptr & (1 << (7 - (x & 7)))) *pixel_ptr = 0xffffff;
|
|
|
|
else *pixel_ptr = 0;
|
|
|
|
if ((x & 7) == 7) ++xor_ptr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Currently no support for cursors with %d bits per pixel\n", ptr->bBitsPerPixel);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-13 12:12:23 +01:00
|
|
|
if (alpha_zero)
|
2007-03-22 20:06:19 +01:00
|
|
|
{
|
|
|
|
/* Alpha channel */
|
|
|
|
if (~*and_ptr & (1 << (7 - (x & 7)))) *pixel_ptr |= 0xff << 24;
|
|
|
|
else if (*pixel_ptr)
|
|
|
|
{
|
|
|
|
int alpha = (*pixel_ptr & 0xff) * 0.30f
|
|
|
|
+ ((*pixel_ptr & 0xff00) >> 8) * 0.55f
|
|
|
|
+ ((*pixel_ptr & 0xff0000) >> 16) * 0.15f;
|
|
|
|
*pixel_ptr ^= ((x + y) % 2) ? 0xffffff : 0x000000;
|
|
|
|
*pixel_ptr |= alpha << 24;
|
|
|
|
}
|
|
|
|
if ((x & 7) == 7) ++and_ptr;
|
|
|
|
}
|
|
|
|
++pixel_ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* create_xcursor_cursor
|
|
|
|
*
|
|
|
|
* Use Xcursor to create an X cursor from a Windows one.
|
|
|
|
*/
|
|
|
|
static Cursor create_xcursor_cursor( Display *display, CURSORICONINFO *ptr )
|
|
|
|
{
|
|
|
|
Cursor cursor;
|
|
|
|
XcursorImage *image;
|
|
|
|
|
|
|
|
if (!ptr) /* Create an empty cursor */
|
|
|
|
{
|
|
|
|
image = pXcursorImageCreate( 1, 1 );
|
|
|
|
image->xhot = 0;
|
|
|
|
image->yhot = 0;
|
|
|
|
*(image->pixels) = 0;
|
|
|
|
cursor = pXcursorImageLoadCursor( display, image );
|
|
|
|
pXcursorImageDestroy( image );
|
|
|
|
|
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
image = create_cursor_image( ptr );
|
|
|
|
if (!image) return 0;
|
|
|
|
|
|
|
|
/* Make sure hotspot is valid */
|
|
|
|
image->xhot = ptr->ptHotSpot.x;
|
|
|
|
image->yhot = ptr->ptHotSpot.y;
|
2007-12-29 23:55:58 +01:00
|
|
|
if (image->xhot >= image->width ||
|
|
|
|
image->yhot >= image->height)
|
2007-03-22 20:06:19 +01:00
|
|
|
{
|
|
|
|
image->xhot = image->width / 2;
|
|
|
|
image->yhot = image->height / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
image->delay = 0;
|
|
|
|
|
|
|
|
cursor = pXcursorImageLoadCursor( display, image );
|
|
|
|
pXcursorImageDestroy( image );
|
|
|
|
|
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
2007-07-09 22:42:28 +02:00
|
|
|
#endif /* SONAME_LIBXCURSOR */
|
2007-03-22 20:06:19 +01:00
|
|
|
|
|
|
|
|
2002-06-14 02:08:40 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* create_cursor
|
|
|
|
*
|
|
|
|
* Create an X cursor from a Windows one.
|
|
|
|
*/
|
|
|
|
static Cursor create_cursor( Display *display, CURSORICONINFO *ptr )
|
1998-12-26 13:00:43 +01:00
|
|
|
{
|
2007-04-26 01:49:22 +02:00
|
|
|
Pixmap pixmapBits, pixmapMask, pixmapMaskInv = 0, pixmapAll;
|
1998-12-26 13:00:43 +01:00
|
|
|
XColor fg, bg;
|
|
|
|
Cursor cursor = None;
|
2007-04-26 01:49:22 +02:00
|
|
|
POINT hotspot;
|
|
|
|
char *bitMask32 = NULL;
|
1998-12-26 13:00:43 +01:00
|
|
|
|
2007-07-09 22:42:28 +02:00
|
|
|
#ifdef SONAME_LIBXCURSOR
|
2007-03-22 20:06:19 +01:00
|
|
|
if (pXcursorImageLoadCursor) return create_xcursor_cursor( display, ptr );
|
|
|
|
#endif
|
|
|
|
|
1998-12-26 13:00:43 +01:00
|
|
|
if (!ptr) /* Create an empty cursor */
|
|
|
|
{
|
|
|
|
static const char data[] = { 0 };
|
|
|
|
|
|
|
|
bg.red = bg.green = bg.blue = 0x0000;
|
2001-05-16 21:52:29 +02:00
|
|
|
pixmapBits = XCreateBitmapFromData( display, root_window, data, 1, 1 );
|
1998-12-26 13:00:43 +01:00
|
|
|
if (pixmapBits)
|
|
|
|
{
|
|
|
|
cursor = XCreatePixmapCursor( display, pixmapBits, pixmapBits,
|
|
|
|
&bg, &bg, 0, 0 );
|
|
|
|
XFreePixmap( display, pixmapBits );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Create the X cursor from the bits */
|
|
|
|
{
|
|
|
|
XImage *image;
|
2001-05-16 21:52:29 +02:00
|
|
|
GC gc;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-12-26 21:30:40 +01:00
|
|
|
TRACE("Bitmap %dx%d planes=%d bpp=%d bytesperline=%d\n",
|
|
|
|
ptr->nWidth, ptr->nHeight, ptr->bPlanes, ptr->bBitsPerPixel,
|
|
|
|
ptr->nWidthBytes);
|
2007-04-26 01:49:22 +02:00
|
|
|
|
1998-12-26 13:00:43 +01:00
|
|
|
/* Create a pixmap and transfer all the bits to it */
|
|
|
|
|
|
|
|
/* NOTE: Following hack works, but only because XFree depth
|
|
|
|
* 1 images really use 1 bit/pixel (and so the same layout
|
|
|
|
* as the Windows cursor data). Perhaps use a more generic
|
|
|
|
* algorithm here.
|
|
|
|
*/
|
2001-12-26 21:30:40 +01:00
|
|
|
/* This pixmap will be written with two bitmaps. The first is
|
|
|
|
* the mask and the second is the image.
|
|
|
|
*/
|
2001-05-16 21:52:29 +02:00
|
|
|
if (!(pixmapAll = XCreatePixmap( display, root_window,
|
2002-06-01 01:06:46 +02:00
|
|
|
ptr->nWidth, ptr->nHeight * 2, 1 )))
|
2001-12-26 21:30:40 +01:00
|
|
|
return 0;
|
2001-05-16 21:52:29 +02:00
|
|
|
if (!(image = XCreateImage( display, visual,
|
2001-12-26 21:30:40 +01:00
|
|
|
1, ZPixmap, 0, (char *)(ptr + 1), ptr->nWidth,
|
2002-06-01 01:06:46 +02:00
|
|
|
ptr->nHeight * 2, 16, ptr->nWidthBytes/ptr->bBitsPerPixel)))
|
2001-12-26 21:30:40 +01:00
|
|
|
{
|
|
|
|
XFreePixmap( display, pixmapAll );
|
|
|
|
return 0;
|
|
|
|
}
|
2001-05-16 21:52:29 +02:00
|
|
|
gc = XCreateGC( display, pixmapAll, 0, NULL );
|
|
|
|
XSetGraphicsExposures( display, gc, False );
|
|
|
|
image->byte_order = MSBFirst;
|
|
|
|
image->bitmap_bit_order = MSBFirst;
|
|
|
|
image->bitmap_unit = 16;
|
|
|
|
_XInitImageFuncPtrs(image);
|
2001-12-26 21:30:40 +01:00
|
|
|
if (ptr->bPlanes * ptr->bBitsPerPixel == 1)
|
|
|
|
{
|
|
|
|
/* A plain old white on black cursor. */
|
|
|
|
fg.red = fg.green = fg.blue = 0xffff;
|
|
|
|
bg.red = bg.green = bg.blue = 0x0000;
|
|
|
|
XPutImage( display, pixmapAll, gc, image,
|
|
|
|
0, 0, 0, 0, ptr->nWidth, ptr->nHeight * 2 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int rbits, gbits, bbits, red, green, blue;
|
|
|
|
int rfg, gfg, bfg, rbg, gbg, bbg;
|
|
|
|
int rscale, gscale, bscale;
|
|
|
|
int x, y, xmax, ymax, bitIndex, byteIndex, xorIndex;
|
|
|
|
unsigned char *theMask, *theImage, theChar;
|
|
|
|
int threshold, fgBits, bgBits, bitShifted;
|
|
|
|
BYTE pXorBits[128]; /* Up to 32x32 icons */
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-12-26 21:30:40 +01:00
|
|
|
switch (ptr->bBitsPerPixel)
|
|
|
|
{
|
2007-04-26 01:49:22 +02:00
|
|
|
case 32:
|
|
|
|
bitMask32 = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
ptr->nWidth * ptr->nHeight / 8 );
|
|
|
|
/* Fallthrough */
|
2001-12-26 21:30:40 +01:00
|
|
|
case 24:
|
|
|
|
rbits = 8;
|
|
|
|
gbits = 8;
|
|
|
|
bbits = 8;
|
|
|
|
threshold = 0x40;
|
|
|
|
break;
|
2002-03-28 23:05:57 +01:00
|
|
|
case 16:
|
|
|
|
rbits = 5;
|
|
|
|
gbits = 6;
|
|
|
|
bbits = 5;
|
|
|
|
threshold = 0x40;
|
|
|
|
break;
|
2001-12-26 21:30:40 +01:00
|
|
|
default:
|
|
|
|
FIXME("Currently no support for cursors with %d bits per pixel\n",
|
|
|
|
ptr->bBitsPerPixel);
|
|
|
|
XFreePixmap( display, pixmapAll );
|
|
|
|
XFreeGC( display, gc );
|
|
|
|
image->data = NULL;
|
|
|
|
XDestroyImage( image );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* The location of the mask. */
|
2005-08-16 18:02:45 +02:00
|
|
|
theMask = (unsigned char *)(ptr + 1);
|
2001-12-26 21:30:40 +01:00
|
|
|
/* The mask should still be 1 bit per pixel. The color image
|
2002-06-01 01:06:46 +02:00
|
|
|
* should immediately follow the mask.
|
2001-12-26 21:30:40 +01:00
|
|
|
*/
|
|
|
|
theImage = &theMask[ptr->nWidth/8 * ptr->nHeight];
|
|
|
|
rfg = gfg = bfg = rbg = gbg = bbg = 0;
|
|
|
|
bitIndex = 0;
|
|
|
|
byteIndex = 0;
|
|
|
|
xorIndex = 0;
|
|
|
|
fgBits = 0;
|
|
|
|
bitShifted = 0x01;
|
|
|
|
xmax = (ptr->nWidth > 32) ? 32 : ptr->nWidth;
|
|
|
|
if (ptr->nWidth > 32) {
|
|
|
|
ERR("Got a %dx%d cursor. Cannot handle larger than 32x32.\n",
|
|
|
|
ptr->nWidth, ptr->nHeight);
|
|
|
|
}
|
|
|
|
ymax = (ptr->nHeight > 32) ? 32 : ptr->nHeight;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-12-26 21:30:40 +01:00
|
|
|
memset(pXorBits, 0, 128);
|
|
|
|
for (y=0; y<ymax; y++)
|
|
|
|
{
|
|
|
|
for (x=0; x<xmax; x++)
|
|
|
|
{
|
2002-03-28 23:05:57 +01:00
|
|
|
red = green = blue = 0;
|
|
|
|
switch (ptr->bBitsPerPixel)
|
|
|
|
{
|
2007-04-26 01:49:22 +02:00
|
|
|
case 32:
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
blue = theChar;
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
green = theChar;
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
red = theChar;
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
/* If the alpha channel is >5% transparent,
|
|
|
|
* assume that we can add it to the bitMask32.
|
|
|
|
*/
|
|
|
|
if (theChar > 0x0D)
|
|
|
|
*(bitMask32 + (y*xmax+x)/8) |= 1 << (x & 7);
|
|
|
|
break;
|
2002-03-28 23:05:57 +01:00
|
|
|
case 24:
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
blue = theChar;
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
green = theChar;
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
red = theChar;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
blue = theChar & 0x1F;
|
|
|
|
green = (theChar & 0xE0) >> 5;
|
|
|
|
theChar = theImage[byteIndex++];
|
|
|
|
green |= (theChar & 0x07) << 3;
|
|
|
|
red = (theChar & 0xF8) >> 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-12-26 21:30:40 +01:00
|
|
|
if (red+green+blue > threshold)
|
|
|
|
{
|
|
|
|
rfg += red;
|
|
|
|
gfg += green;
|
|
|
|
bfg += blue;
|
|
|
|
fgBits++;
|
|
|
|
pXorBits[xorIndex] |= bitShifted;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rbg += red;
|
|
|
|
gbg += green;
|
|
|
|
bbg += blue;
|
|
|
|
}
|
|
|
|
if (x%8 == 7)
|
|
|
|
{
|
|
|
|
bitShifted = 0x01;
|
|
|
|
xorIndex++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bitShifted = bitShifted << 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rscale = 1 << (16 - rbits);
|
|
|
|
gscale = 1 << (16 - gbits);
|
|
|
|
bscale = 1 << (16 - bbits);
|
2002-05-31 21:14:40 +02:00
|
|
|
if (fgBits)
|
|
|
|
{
|
|
|
|
fg.red = rfg * rscale / fgBits;
|
|
|
|
fg.green = gfg * gscale / fgBits;
|
|
|
|
fg.blue = bfg * bscale / fgBits;
|
|
|
|
}
|
|
|
|
else fg.red = fg.green = fg.blue = 0;
|
2001-12-26 21:30:40 +01:00
|
|
|
bgBits = xmax * ymax - fgBits;
|
2002-05-31 21:14:40 +02:00
|
|
|
if (bgBits)
|
|
|
|
{
|
|
|
|
bg.red = rbg * rscale / bgBits;
|
|
|
|
bg.green = gbg * gscale / bgBits;
|
|
|
|
bg.blue = bbg * bscale / bgBits;
|
|
|
|
}
|
|
|
|
else bg.red = bg.green = bg.blue = 0;
|
2005-03-22 22:17:34 +01:00
|
|
|
pixmapBits = XCreateBitmapFromData( display, root_window, (char *)pXorBits, xmax, ymax );
|
2001-12-26 21:30:40 +01:00
|
|
|
if (!pixmapBits)
|
|
|
|
{
|
2007-08-31 08:16:36 +02:00
|
|
|
HeapFree( GetProcessHeap(), 0, bitMask32 );
|
2001-12-26 21:30:40 +01:00
|
|
|
XFreePixmap( display, pixmapAll );
|
|
|
|
XFreeGC( display, gc );
|
|
|
|
image->data = NULL;
|
|
|
|
XDestroyImage( image );
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2001-12-26 21:30:40 +01:00
|
|
|
/* Put the mask. */
|
|
|
|
XPutImage( display, pixmapAll, gc, image,
|
|
|
|
0, 0, 0, 0, ptr->nWidth, ptr->nHeight );
|
|
|
|
XSetFunction( display, gc, GXcopy );
|
|
|
|
/* Put the image */
|
|
|
|
XCopyArea( display, pixmapBits, pixmapAll, gc,
|
|
|
|
0, 0, xmax, ymax, 0, ptr->nHeight );
|
|
|
|
XFreePixmap( display, pixmapBits );
|
|
|
|
}
|
2001-05-16 21:52:29 +02:00
|
|
|
image->data = NULL;
|
|
|
|
XDestroyImage( image );
|
1998-12-26 13:00:43 +01:00
|
|
|
|
|
|
|
/* Now create the 2 pixmaps for bits and mask */
|
|
|
|
|
2001-05-16 21:52:29 +02:00
|
|
|
pixmapBits = XCreatePixmap( display, root_window, ptr->nWidth, ptr->nHeight, 1 );
|
2007-04-26 01:49:22 +02:00
|
|
|
if (ptr->bBitsPerPixel != 32)
|
1998-12-26 13:00:43 +01:00
|
|
|
{
|
2007-04-26 01:49:22 +02:00
|
|
|
pixmapMaskInv = XCreatePixmap( display, root_window, ptr->nWidth, ptr->nHeight, 1 );
|
|
|
|
pixmapMask = XCreatePixmap( display, root_window, ptr->nWidth, ptr->nHeight, 1 );
|
2002-06-02 23:29:23 +02:00
|
|
|
|
2007-04-26 01:49:22 +02:00
|
|
|
/* Make sure everything went OK so far */
|
|
|
|
if (pixmapBits && pixmapMask && pixmapMaskInv)
|
2002-06-02 23:29:23 +02:00
|
|
|
{
|
2007-04-26 01:49:22 +02:00
|
|
|
/* We have to do some magic here, as cursors are not fully
|
|
|
|
* compatible between Windows and X11. Under X11, there are
|
|
|
|
* only 3 possible color cursor: black, white and masked. So
|
|
|
|
* we map the 4th Windows color (invert the bits on the screen)
|
|
|
|
* to black and an additional white bit on an other place
|
|
|
|
* (+1,+1). This require some boolean arithmetic:
|
|
|
|
*
|
|
|
|
* Windows | X11
|
|
|
|
* And Xor Result | Bits Mask Result
|
|
|
|
* 0 0 black | 0 1 background
|
|
|
|
* 0 1 white | 1 1 foreground
|
|
|
|
* 1 0 no change | X 0 no change
|
|
|
|
* 1 1 inverted | 0 1 background
|
|
|
|
*
|
|
|
|
* which gives:
|
|
|
|
* Bits = not 'And' and 'Xor' or 'And2' and 'Xor2'
|
|
|
|
* Mask = not 'And' or 'Xor' or 'And2' and 'Xor2'
|
|
|
|
*
|
|
|
|
* FIXME: apparently some servers do support 'inverted' color.
|
|
|
|
* I don't know if it's correct per the X spec, but maybe we
|
|
|
|
* ought to take advantage of it. -- AJ
|
|
|
|
*/
|
|
|
|
XSetFunction( display, gc, GXcopy );
|
|
|
|
XCopyArea( display, pixmapAll, pixmapBits, gc,
|
|
|
|
0, 0, ptr->nWidth, ptr->nHeight, 0, 0 );
|
|
|
|
XCopyArea( display, pixmapAll, pixmapMask, gc,
|
|
|
|
0, 0, ptr->nWidth, ptr->nHeight, 0, 0 );
|
|
|
|
XCopyArea( display, pixmapAll, pixmapMaskInv, gc,
|
|
|
|
0, 0, ptr->nWidth, ptr->nHeight, 0, 0 );
|
|
|
|
XSetFunction( display, gc, GXand );
|
|
|
|
XCopyArea( display, pixmapAll, pixmapMaskInv, gc,
|
|
|
|
0, ptr->nHeight, ptr->nWidth, ptr->nHeight, 0, 0 );
|
|
|
|
XSetFunction( display, gc, GXandReverse );
|
|
|
|
XCopyArea( display, pixmapAll, pixmapBits, gc,
|
|
|
|
0, ptr->nHeight, ptr->nWidth, ptr->nHeight, 0, 0 );
|
|
|
|
XSetFunction( display, gc, GXorReverse );
|
|
|
|
XCopyArea( display, pixmapAll, pixmapMask, gc,
|
|
|
|
0, ptr->nHeight, ptr->nWidth, ptr->nHeight, 0, 0 );
|
|
|
|
/* Additional white */
|
|
|
|
XSetFunction( display, gc, GXor );
|
|
|
|
XCopyArea( display, pixmapMaskInv, pixmapMask, gc,
|
|
|
|
0, 0, ptr->nWidth, ptr->nHeight, 1, 1 );
|
|
|
|
XCopyArea( display, pixmapMaskInv, pixmapBits, gc,
|
|
|
|
0, 0, ptr->nWidth, ptr->nHeight, 1, 1 );
|
|
|
|
XSetFunction( display, gc, GXcopy );
|
2002-06-02 23:29:23 +02:00
|
|
|
}
|
2007-04-26 01:49:22 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pixmapMask = XCreateBitmapFromData( display, root_window,
|
|
|
|
bitMask32, ptr->nWidth,
|
|
|
|
ptr->nHeight );
|
|
|
|
HeapFree( GetProcessHeap(), 0, bitMask32 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure hotspot is valid */
|
|
|
|
hotspot.x = ptr->ptHotSpot.x;
|
|
|
|
hotspot.y = ptr->ptHotSpot.y;
|
|
|
|
if (hotspot.x < 0 || hotspot.x >= ptr->nWidth ||
|
|
|
|
hotspot.y < 0 || hotspot.y >= ptr->nHeight)
|
|
|
|
{
|
|
|
|
hotspot.x = ptr->nWidth / 2;
|
|
|
|
hotspot.y = ptr->nHeight / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixmapBits && pixmapMask)
|
1998-12-26 13:00:43 +01:00
|
|
|
cursor = XCreatePixmapCursor( display, pixmapBits, pixmapMask,
|
2002-06-02 23:29:23 +02:00
|
|
|
&fg, &bg, hotspot.x, hotspot.y );
|
1998-12-26 13:00:43 +01:00
|
|
|
|
|
|
|
/* Now free everything */
|
|
|
|
|
|
|
|
if (pixmapAll) XFreePixmap( display, pixmapAll );
|
|
|
|
if (pixmapBits) XFreePixmap( display, pixmapBits );
|
|
|
|
if (pixmapMask) XFreePixmap( display, pixmapMask );
|
1999-07-24 14:16:58 +02:00
|
|
|
if (pixmapMaskInv) XFreePixmap( display, pixmapMaskInv );
|
2001-05-16 21:52:29 +02:00
|
|
|
XFreeGC( display, gc );
|
1998-12-26 13:00:43 +01:00
|
|
|
}
|
2001-05-16 21:52:29 +02:00
|
|
|
return cursor;
|
|
|
|
}
|
1998-12-26 13:00:43 +01:00
|
|
|
|
1999-06-13 10:35:26 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-02-12 04:49:07 +01:00
|
|
|
* SetCursor (X11DRV.@)
|
1999-06-13 10:35:26 +02:00
|
|
|
*/
|
2000-08-10 03:16:19 +02:00
|
|
|
void X11DRV_SetCursor( CURSORICONINFO *lpCursor )
|
1999-06-13 10:35:26 +02:00
|
|
|
{
|
2007-08-20 14:04:53 +02:00
|
|
|
struct x11drv_thread_data *data = x11drv_thread_data();
|
2001-05-16 21:52:29 +02:00
|
|
|
Cursor cursor;
|
1999-06-13 10:35:26 +02:00
|
|
|
|
2007-02-21 09:17:34 +01:00
|
|
|
if (lpCursor)
|
|
|
|
TRACE("%ux%u, planes %u, bpp %u\n",
|
|
|
|
lpCursor->nWidth, lpCursor->nHeight, lpCursor->bPlanes, lpCursor->bBitsPerPixel);
|
|
|
|
else
|
|
|
|
TRACE("NULL\n");
|
|
|
|
|
2007-08-20 14:04:53 +02:00
|
|
|
/* set the same cursor for all top-level windows of the current thread */
|
1999-06-13 10:35:26 +02:00
|
|
|
|
2007-08-20 14:04:53 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
cursor = create_cursor( data->display, lpCursor );
|
|
|
|
if (cursor)
|
1998-12-26 13:00:43 +01:00
|
|
|
{
|
2007-08-20 14:04:53 +02:00
|
|
|
if (data->cursor) XFreeCursor( data->display, data->cursor );
|
|
|
|
data->cursor = cursor;
|
|
|
|
if (data->cursor_window)
|
1998-12-26 13:00:43 +01:00
|
|
|
{
|
2007-08-20 14:04:53 +02:00
|
|
|
XDefineCursor( data->display, data->cursor_window, cursor );
|
|
|
|
/* Make the change take effect immediately */
|
|
|
|
XFlush( data->display );
|
1998-12-26 13:00:43 +01:00
|
|
|
}
|
|
|
|
}
|
2007-08-20 14:04:53 +02:00
|
|
|
wine_tsx11_unlock();
|
1998-12-26 13:00:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-21 02:44:09 +02:00
|
|
|
* SetCursorPos (X11DRV.@)
|
1998-12-26 13:00:43 +01:00
|
|
|
*/
|
2005-03-09 17:45:23 +01:00
|
|
|
BOOL X11DRV_SetCursorPos( INT x, INT y )
|
1998-12-26 13:00:43 +01:00
|
|
|
{
|
2001-10-18 23:38:59 +02:00
|
|
|
Display *display = thread_display();
|
2007-01-04 20:24:50 +01:00
|
|
|
POINT pt;
|
1998-12-26 13:00:43 +01:00
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
TRACE( "warping to (%d,%d)\n", x, y );
|
2001-06-21 02:44:09 +02:00
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
wine_tsx11_lock();
|
2006-12-18 21:26:35 +01:00
|
|
|
if (cursor_pos.x == x && cursor_pos.y == y)
|
|
|
|
{
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
/* We still need to generate WM_MOUSEMOVE */
|
|
|
|
queue_raw_mouse_message( WM_MOUSEMOVE, NULL, x, y, 0, GetCurrentTime(), 0, 0 );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2007-01-04 20:24:50 +01:00
|
|
|
pt.x = x; pt.y = y;
|
|
|
|
clip_point_to_rect( &cursor_clip, &pt);
|
2006-10-26 12:53:59 +02:00
|
|
|
XWarpPointer( display, root_window, root_window, 0, 0, 0, 0,
|
2007-01-04 20:24:50 +01:00
|
|
|
pt.x - virtual_screen_rect.left, pt.y - virtual_screen_rect.top );
|
2005-10-24 17:11:37 +02:00
|
|
|
XFlush( display ); /* avoids bad mouse lag in games that do their own mouse warping */
|
2007-01-04 20:24:50 +01:00
|
|
|
cursor_pos = pt;
|
2001-10-18 23:38:59 +02:00
|
|
|
wine_tsx11_unlock();
|
2005-03-09 17:45:23 +01:00
|
|
|
return TRUE;
|
2001-06-21 02:44:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetCursorPos (X11DRV.@)
|
|
|
|
*/
|
2005-03-09 17:45:23 +01:00
|
|
|
BOOL X11DRV_GetCursorPos(LPPOINT pos)
|
2001-06-21 02:44:09 +02:00
|
|
|
{
|
2005-03-09 17:45:23 +01:00
|
|
|
Display *display = thread_display();
|
|
|
|
Window root, child;
|
|
|
|
int rootX, rootY, winX, winY;
|
|
|
|
unsigned int xstate;
|
1998-12-26 13:00:43 +01:00
|
|
|
|
2005-03-09 17:45:23 +01:00
|
|
|
wine_tsx11_lock();
|
2006-12-18 21:26:35 +01:00
|
|
|
if ((GetTickCount() - last_time_modified > 100) &&
|
|
|
|
XQueryPointer( display, root_window, &root, &child,
|
2005-03-09 17:45:23 +01:00
|
|
|
&rootX, &rootY, &winX, &winY, &xstate ))
|
|
|
|
{
|
|
|
|
update_button_state( xstate );
|
2006-10-26 12:53:59 +02:00
|
|
|
winX += virtual_screen_rect.left;
|
|
|
|
winY += virtual_screen_rect.top;
|
2005-03-09 17:45:23 +01:00
|
|
|
TRACE("pointer at (%d,%d)\n", winX, winY );
|
|
|
|
cursor_pos.x = winX;
|
|
|
|
cursor_pos.y = winY;
|
|
|
|
}
|
|
|
|
*pos = cursor_pos;
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
return TRUE;
|
2001-10-18 23:38:59 +02:00
|
|
|
}
|
|
|
|
|
2007-01-04 20:24:50 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* ClipCursor (X11DRV.@)
|
|
|
|
*
|
|
|
|
* Set the cursor clipping rectangle.
|
|
|
|
*/
|
|
|
|
BOOL X11DRV_ClipCursor( LPCRECT clip )
|
|
|
|
{
|
|
|
|
if (!IntersectRect( &cursor_clip, &virtual_screen_rect, clip ))
|
|
|
|
cursor_clip = virtual_screen_rect;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_ButtonPress
|
|
|
|
*/
|
2005-02-26 18:49:38 +01:00
|
|
|
void X11DRV_ButtonPress( HWND hwnd, XEvent *xev )
|
1999-04-01 10:16:08 +02:00
|
|
|
{
|
2005-02-26 18:49:38 +01:00
|
|
|
XButtonEvent *event = &xev->xbutton;
|
2001-10-18 23:38:59 +02:00
|
|
|
int buttonNum = event->button - 1;
|
|
|
|
WORD wData = 0;
|
|
|
|
POINT pt;
|
2000-06-08 06:57:22 +02:00
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
if (buttonNum >= NB_BUTTONS) return;
|
2002-06-14 02:08:40 +02:00
|
|
|
if (!hwnd) return;
|
2000-06-08 06:57:22 +02:00
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
switch (buttonNum)
|
2000-06-08 06:57:22 +02:00
|
|
|
{
|
2001-10-18 23:38:59 +02:00
|
|
|
case 3:
|
|
|
|
wData = WHEEL_DELTA;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
wData = -WHEEL_DELTA;
|
|
|
|
break;
|
2005-03-24 20:15:41 +01:00
|
|
|
case 5:
|
|
|
|
wData = XBUTTON1;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
wData = XBUTTON2;
|
|
|
|
break;
|
2000-06-08 06:57:22 +02:00
|
|
|
}
|
2005-03-21 13:37:00 +01:00
|
|
|
|
|
|
|
update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
|
|
|
|
|
2006-12-12 23:57:22 +01:00
|
|
|
X11DRV_send_mouse_input( hwnd, button_down_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE,
|
2005-03-09 17:45:23 +01:00
|
|
|
pt.x, pt.y, wData, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
|
1999-04-01 10:16:08 +02:00
|
|
|
}
|
|
|
|
|
2000-06-08 06:57:22 +02:00
|
|
|
|
1999-11-07 22:25:57 +01:00
|
|
|
/***********************************************************************
|
2001-10-18 23:38:59 +02:00
|
|
|
* X11DRV_ButtonRelease
|
1999-11-07 22:25:57 +01:00
|
|
|
*/
|
2005-02-26 18:49:38 +01:00
|
|
|
void X11DRV_ButtonRelease( HWND hwnd, XEvent *xev )
|
1999-11-07 22:25:57 +01:00
|
|
|
{
|
2005-02-26 18:49:38 +01:00
|
|
|
XButtonEvent *event = &xev->xbutton;
|
2001-10-18 23:38:59 +02:00
|
|
|
int buttonNum = event->button - 1;
|
2005-03-24 20:15:41 +01:00
|
|
|
WORD wData = 0;
|
2001-10-18 23:38:59 +02:00
|
|
|
POINT pt;
|
2000-06-08 06:57:22 +02:00
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
if (buttonNum >= NB_BUTTONS || !button_up_flags[buttonNum]) return;
|
2002-06-14 02:08:40 +02:00
|
|
|
if (!hwnd) return;
|
2000-06-08 06:57:22 +02:00
|
|
|
|
2005-03-24 20:15:41 +01:00
|
|
|
switch (buttonNum)
|
|
|
|
{
|
|
|
|
case 5:
|
|
|
|
wData = XBUTTON1;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
wData = XBUTTON2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-03-21 13:37:00 +01:00
|
|
|
update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
|
|
|
|
|
2006-12-12 23:57:22 +01:00
|
|
|
X11DRV_send_mouse_input( hwnd, button_up_flags[buttonNum] | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE,
|
2005-03-24 20:15:41 +01:00
|
|
|
pt.x, pt.y, wData, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
|
2001-10-18 23:38:59 +02:00
|
|
|
}
|
2000-06-08 06:57:22 +02:00
|
|
|
|
|
|
|
|
2001-10-18 23:38:59 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_MotionNotify
|
|
|
|
*/
|
2005-02-26 18:49:38 +01:00
|
|
|
void X11DRV_MotionNotify( HWND hwnd, XEvent *xev )
|
2001-10-18 23:38:59 +02:00
|
|
|
{
|
2005-02-26 18:49:38 +01:00
|
|
|
XMotionEvent *event = &xev->xmotion;
|
2001-10-18 23:38:59 +02:00
|
|
|
POINT pt;
|
|
|
|
|
2004-12-17 19:49:24 +01:00
|
|
|
TRACE("hwnd %p, event->is_hint %d\n", hwnd, event->is_hint);
|
|
|
|
|
2002-06-14 02:08:40 +02:00
|
|
|
if (!hwnd) return;
|
|
|
|
|
2005-03-21 13:37:00 +01:00
|
|
|
update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
|
|
|
|
|
2005-03-09 17:45:23 +01:00
|
|
|
X11DRV_send_mouse_input( hwnd, MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
|
|
|
|
pt.x, pt.y, 0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
|
2002-06-14 02:08:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_EnterNotify
|
|
|
|
*/
|
2005-02-26 18:49:38 +01:00
|
|
|
void X11DRV_EnterNotify( HWND hwnd, XEvent *xev )
|
2002-06-14 02:08:40 +02:00
|
|
|
{
|
2005-02-26 18:49:38 +01:00
|
|
|
XCrossingEvent *event = &xev->xcrossing;
|
2002-06-14 02:08:40 +02:00
|
|
|
POINT pt;
|
|
|
|
|
2004-12-17 19:49:24 +01:00
|
|
|
TRACE("hwnd %p, event->detail %d\n", hwnd, event->detail);
|
|
|
|
|
2002-06-14 02:08:40 +02:00
|
|
|
if (!hwnd) return;
|
2004-12-17 19:49:24 +01:00
|
|
|
if (event->detail == NotifyVirtual || event->detail == NotifyNonlinearVirtual) return;
|
2008-03-31 12:12:12 +02:00
|
|
|
if (event->window == x11drv_thread_data()->grab_window) return;
|
2002-06-14 02:08:40 +02:00
|
|
|
|
|
|
|
/* simulate a mouse motion event */
|
2005-03-21 13:37:00 +01:00
|
|
|
update_mouse_state( hwnd, event->window, event->x, event->y, event->state, &pt );
|
|
|
|
|
2005-03-09 17:45:23 +01:00
|
|
|
X11DRV_send_mouse_input( hwnd, MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE,
|
|
|
|
pt.x, pt.y, 0, EVENT_x11_time_to_win32_time(event->time), 0, 0 );
|
2001-10-18 23:38:59 +02:00
|
|
|
}
|