2023-11-29 16:35:48 -08:00
|
|
|
From 7fcbbbd139dc8504ca084e468afc436cfaee6ef1 Mon Sep 17 00:00:00 2001
|
2019-12-23 01:03:44 -08:00
|
|
|
From: =?UTF-8?q?R=C3=A9mi=20Bernon?= <rbernon@codeweavers.com>
|
|
|
|
Date: Thu, 19 Dec 2019 22:34:44 +0100
|
2021-11-30 15:27:42 -08:00
|
|
|
Subject: [PATCH] winex11.drv: Keep track of pointer and device button
|
2019-12-23 01:03:44 -08:00
|
|
|
mappings.
|
|
|
|
|
|
|
|
We are going to receive raw button events and we will need to apply the
|
|
|
|
correct button mappings ourselves.
|
|
|
|
|
|
|
|
Original patch by Andrew Eikum <aeikum@codeweavers.com>.
|
|
|
|
---
|
|
|
|
dlls/winex11.drv/keyboard.c | 23 ++++++---
|
|
|
|
dlls/winex11.drv/mouse.c | 89 +++++++++++++++++++++++++++++++++-
|
|
|
|
dlls/winex11.drv/x11drv.h | 1 +
|
|
|
|
dlls/winex11.drv/x11drv_main.c | 1 +
|
|
|
|
4 files changed, 106 insertions(+), 8 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/dlls/winex11.drv/keyboard.c b/dlls/winex11.drv/keyboard.c
|
2023-11-29 16:35:48 -08:00
|
|
|
index 5c7f6c37276..674d8d6db58 100644
|
2019-12-23 01:03:44 -08:00
|
|
|
--- a/dlls/winex11.drv/keyboard.c
|
|
|
|
+++ b/dlls/winex11.drv/keyboard.c
|
2023-11-29 16:35:48 -08:00
|
|
|
@@ -1848,13 +1848,24 @@ BOOL X11DRV_MappingNotify( HWND dummy, XEvent *event )
|
2019-12-23 01:03:44 -08:00
|
|
|
{
|
|
|
|
HWND hwnd;
|
|
|
|
|
|
|
|
- XRefreshKeyboardMapping(&event->xmapping);
|
|
|
|
- X11DRV_InitKeyboard( event->xmapping.display );
|
|
|
|
+ switch (event->xmapping.request)
|
|
|
|
+ {
|
|
|
|
+ case MappingModifier:
|
|
|
|
+ case MappingKeyboard:
|
|
|
|
+ XRefreshKeyboardMapping( &event->xmapping );
|
|
|
|
+ X11DRV_InitKeyboard( event->xmapping.display );
|
|
|
|
+
|
2022-04-15 17:28:24 -07:00
|
|
|
+ hwnd = get_focus();
|
|
|
|
+ if (!hwnd) hwnd = get_active_window();
|
|
|
|
+ NtUserPostMessage( hwnd, WM_INPUTLANGCHANGEREQUEST,
|
|
|
|
+ 0 /*FIXME*/, (LPARAM)NtUserGetKeyboardLayout(0) );
|
2019-12-23 01:03:44 -08:00
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case MappingPointer:
|
|
|
|
+ X11DRV_InitMouse( event->xmapping.display );
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
|
2022-04-15 17:28:24 -07:00
|
|
|
- hwnd = get_focus();
|
|
|
|
- if (!hwnd) hwnd = get_active_window();
|
|
|
|
- NtUserPostMessage( hwnd, WM_INPUTLANGCHANGEREQUEST,
|
|
|
|
- 0 /*FIXME*/, (LPARAM)NtUserGetKeyboardLayout(0) );
|
2019-12-23 01:03:44 -08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c
|
2023-11-29 16:35:48 -08:00
|
|
|
index ab89f32a8a2..75d961423ba 100644
|
2019-12-23 01:03:44 -08:00
|
|
|
--- a/dlls/winex11.drv/mouse.c
|
|
|
|
+++ b/dlls/winex11.drv/mouse.c
|
2023-02-22 13:34:37 -08:00
|
|
|
@@ -30,6 +30,9 @@
|
2019-12-23 01:03:44 -08:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
+#ifdef HAVE_X11_EXTENSIONS_XINPUT_H
|
|
|
|
+#include <X11/extensions/XInput.h>
|
|
|
|
+#endif
|
|
|
|
#ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
|
|
|
|
#include <X11/extensions/XInput2.h>
|
|
|
|
#endif
|
2023-08-21 17:39:59 -07:00
|
|
|
@@ -137,6 +140,14 @@ MAKE_FUNCPTR(XISelectEvents);
|
2019-12-23 01:03:44 -08:00
|
|
|
#undef MAKE_FUNCPTR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#ifdef HAVE_X11_EXTENSIONS_XINPUT_H
|
|
|
|
+#define MAKE_FUNCPTR(f) static typeof(f) * p##f
|
|
|
|
+MAKE_FUNCPTR(XOpenDevice);
|
|
|
|
+MAKE_FUNCPTR(XCloseDevice);
|
|
|
|
+MAKE_FUNCPTR(XGetDeviceButtonMapping);
|
|
|
|
+#undef MAKE_FUNCPTR
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_Xcursor_Init
|
|
|
|
*
|
2023-08-21 17:39:59 -07:00
|
|
|
@@ -224,6 +235,70 @@ void set_window_cursor( Window window, HCURSOR handle )
|
2023-06-13 17:59:42 -07:00
|
|
|
XFlush( gdi_display );
|
2019-12-23 01:03:44 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
+struct mouse_button_mapping
|
|
|
|
+{
|
|
|
|
+ int deviceid;
|
|
|
|
+ unsigned int button_count;
|
|
|
|
+ unsigned char buttons[256];
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct mouse_button_mapping *pointer_mapping;
|
|
|
|
+static struct mouse_button_mapping *device_mapping;
|
|
|
|
+
|
|
|
|
+static void update_pointer_mapping( Display *display )
|
|
|
|
+{
|
|
|
|
+ struct mouse_button_mapping *tmp;
|
|
|
|
+
|
2022-04-23 15:57:41 -07:00
|
|
|
+ if (!(tmp = malloc( sizeof(*tmp) )))
|
2019-12-23 01:03:44 -08:00
|
|
|
+ {
|
|
|
|
+ WARN("Unable to allocate device mapping.\n");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ tmp->button_count = ARRAY_SIZE( tmp->buttons );
|
|
|
|
+ tmp->button_count = XGetPointerMapping( display, tmp->buttons, tmp->button_count );
|
|
|
|
+
|
|
|
|
+ tmp = InterlockedExchangePointer( (void**)&pointer_mapping, tmp );
|
|
|
|
+
|
2022-04-23 15:57:41 -07:00
|
|
|
+ free( tmp );
|
2019-12-23 01:03:44 -08:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void update_device_mapping( Display *display, int deviceid )
|
|
|
|
+{
|
|
|
|
+#ifdef HAVE_X11_EXTENSIONS_XINPUT_H
|
|
|
|
+ struct mouse_button_mapping *tmp;
|
|
|
|
+ XDevice *device;
|
|
|
|
+
|
|
|
|
+ if (!(device = pXOpenDevice( display, deviceid )))
|
|
|
|
+ {
|
|
|
|
+ WARN( "Unable to open cursor device %d\n", deviceid );
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
2022-04-23 15:57:41 -07:00
|
|
|
+ if (!(tmp = malloc( sizeof(*tmp) )))
|
2019-12-23 01:03:44 -08:00
|
|
|
+ {
|
|
|
|
+ WARN( "Unable to allocate device mapping.\n" );
|
|
|
|
+ pXCloseDevice( display, device );
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ tmp->deviceid = deviceid;
|
|
|
|
+ tmp->button_count = ARRAY_SIZE( tmp->buttons );
|
|
|
|
+ tmp->button_count = pXGetDeviceButtonMapping( display, device, tmp->buttons, tmp->button_count );
|
|
|
|
+
|
|
|
|
+ tmp = InterlockedExchangePointer( (void**)&device_mapping, tmp );
|
|
|
|
+
|
2022-04-23 15:57:41 -07:00
|
|
|
+ free( tmp );
|
2019-12-23 01:03:44 -08:00
|
|
|
+
|
|
|
|
+ pXCloseDevice( display, device );
|
|
|
|
+#endif
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void X11DRV_InitMouse( Display *display )
|
|
|
|
+{
|
|
|
|
+ update_pointer_mapping( display );
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
|
|
|
|
/***********************************************************************
|
|
|
|
* update_relative_valuators
|
2023-11-29 16:35:48 -08:00
|
|
|
@@ -1677,6 +1752,8 @@ static BOOL X11DRV_DeviceChanged( XGenericEventCookie *xev )
|
2019-12-23 01:03:44 -08:00
|
|
|
if (event->reason != XISlaveSwitch) return FALSE;
|
|
|
|
|
|
|
|
update_relative_valuators( event->classes, event->num_classes );
|
|
|
|
+ update_device_mapping( event->display, event->sourceid );
|
|
|
|
+
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-11-29 16:35:48 -08:00
|
|
|
@@ -1764,13 +1841,12 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev )
|
2019-12-23 01:03:44 -08:00
|
|
|
|
|
|
|
#endif /* HAVE_X11_EXTENSIONS_XINPUT2_H */
|
|
|
|
|
|
|
|
-
|
|
|
|
/***********************************************************************
|
2021-04-09 15:39:38 -07:00
|
|
|
* x11drv_xinput_load
|
2019-12-23 01:03:44 -08:00
|
|
|
*/
|
2021-04-09 15:39:38 -07:00
|
|
|
void x11drv_xinput_load(void)
|
2019-12-23 01:03:44 -08:00
|
|
|
{
|
|
|
|
-#if defined(SONAME_LIBXI) && defined(HAVE_X11_EXTENSIONS_XINPUT2_H)
|
|
|
|
+#if defined(SONAME_LIBXI)
|
|
|
|
int event, error;
|
2020-04-07 16:15:39 -07:00
|
|
|
void *libxi_handle = dlopen( SONAME_LIBXI, RTLD_NOW );
|
2019-12-23 01:03:44 -08:00
|
|
|
|
2023-11-29 16:35:48 -08:00
|
|
|
@@ -1786,11 +1862,20 @@ void x11drv_xinput_load(void)
|
2019-12-23 01:03:44 -08:00
|
|
|
return; \
|
|
|
|
}
|
|
|
|
|
|
|
|
+#ifdef HAVE_X11_EXTENSIONS_XINPUT2_H
|
|
|
|
LOAD_FUNCPTR(XIGetClientPointer);
|
|
|
|
LOAD_FUNCPTR(XIFreeDeviceInfo);
|
|
|
|
LOAD_FUNCPTR(XIQueryDevice);
|
|
|
|
LOAD_FUNCPTR(XIQueryVersion);
|
|
|
|
LOAD_FUNCPTR(XISelectEvents);
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifdef HAVE_X11_EXTENSIONS_XINPUT_H
|
|
|
|
+ LOAD_FUNCPTR(XOpenDevice);
|
|
|
|
+ LOAD_FUNCPTR(XCloseDevice);
|
|
|
|
+ LOAD_FUNCPTR(XGetDeviceButtonMapping);
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#undef LOAD_FUNCPTR
|
|
|
|
|
|
|
|
xinput2_available = XQueryExtension( gdi_display, "XInputExtension", &xinput2_opcode, &event, &error );
|
|
|
|
diff --git a/dlls/winex11.drv/x11drv.h b/dlls/winex11.drv/x11drv.h
|
2023-11-29 16:35:48 -08:00
|
|
|
index 4d94f042ee1..7ad685dfafb 100644
|
2019-12-23 01:03:44 -08:00
|
|
|
--- a/dlls/winex11.drv/x11drv.h
|
|
|
|
+++ b/dlls/winex11.drv/x11drv.h
|
2023-11-29 16:35:48 -08:00
|
|
|
@@ -692,6 +692,7 @@ extern void retry_grab_clipping_window(void);
|
|
|
|
extern void ungrab_clipping_window(void);
|
|
|
|
extern void move_resize_window( HWND hwnd, int dir );
|
|
|
|
extern void X11DRV_InitKeyboard( Display *display );
|
|
|
|
+extern void X11DRV_InitMouse( Display *display );
|
|
|
|
extern BOOL X11DRV_ProcessEvents( DWORD mask );
|
|
|
|
extern HWND *build_hwnd_list(void);
|
2023-02-22 13:34:37 -08:00
|
|
|
|
2019-12-23 01:03:44 -08:00
|
|
|
diff --git a/dlls/winex11.drv/x11drv_main.c b/dlls/winex11.drv/x11drv_main.c
|
2023-11-29 16:35:48 -08:00
|
|
|
index 573a41bbe96..0eb5a2e8d45 100644
|
2019-12-23 01:03:44 -08:00
|
|
|
--- a/dlls/winex11.drv/x11drv_main.c
|
|
|
|
+++ b/dlls/winex11.drv/x11drv_main.c
|
2023-08-21 17:39:59 -07:00
|
|
|
@@ -704,6 +704,7 @@ static NTSTATUS x11drv_init( void *arg )
|
2023-02-28 15:05:20 -08:00
|
|
|
|
|
|
|
XkbUseExtension( gdi_display, NULL, NULL );
|
2019-12-23 01:03:44 -08:00
|
|
|
X11DRV_InitKeyboard( gdi_display );
|
|
|
|
+ X11DRV_InitMouse( gdi_display );
|
2023-04-03 17:40:07 -07:00
|
|
|
if (use_xim) use_xim = xim_init( input_style );
|
2019-12-23 01:03:44 -08:00
|
|
|
|
2021-11-30 15:27:42 -08:00
|
|
|
init_user_driver();
|
2019-12-23 01:03:44 -08:00
|
|
|
--
|
2023-11-29 16:35:48 -08:00
|
|
|
2.42.0
|
2019-12-23 01:03:44 -08:00
|
|
|
|