Rebase against 3ded60bd1654dc689d24a23305f4a93acce3a6f2.

This commit is contained in:
Alistair Leslie-Hughes 2022-05-07 15:51:15 +10:00
parent 828a61e0bb
commit 699309db0f
4 changed files with 28 additions and 42 deletions

View File

@ -51,7 +51,7 @@ usage()
# Get the upstream commit sha
upstream_commit()
{
echo "7de36f8e98b2cbbdcc360bdba96a5fe83e815d1a"
echo "3ded60bd1654dc689d24a23305f4a93acce3a6f2"
}
# Show version information
@ -254,7 +254,6 @@ patch_enable_all ()
enable_winex11_XEMBED="$1"
enable_winex11__NET_ACTIVE_WINDOW="$1"
enable_winex11_ime_check_thread_data="$1"
enable_winex11_key_translation="$1"
enable_winex11_wglShareLists="$1"
enable_winex11_drv_Query_server_position="$1"
enable_wininet_Cleanup="$1"
@ -789,9 +788,6 @@ patch_enable ()
winex11-ime-check-thread-data)
enable_winex11_ime_check_thread_data="$2"
;;
winex11-key_translation)
enable_winex11_key_translation="$2"
;;
winex11-wglShareLists)
enable_winex11_wglShareLists="$2"
;;
@ -3802,21 +3798,6 @@ if test "$enable_winex11_ime_check_thread_data" -eq 1; then
patch_apply winex11-ime-check-thread-data/0001-winex11.drv-handle-missing-thread-data-in-X11DRV_get_ic.patch
fi
# Patchset winex11-key_translation
# |
# | This patchset fixes the following Wine bugs:
# | * [#30984] Improve key translation.
# | * [#45605] Letter keys doesn't work in DirectX aplications
# |
# | Modified files:
# | * dlls/winex11.drv/keyboard.c
# |
if test "$enable_winex11_key_translation" -eq 1; then
patch_apply winex11-key_translation/0001-winex11-Match-keyboard-in-Unicode.patch
patch_apply winex11-key_translation/0002-winex11-Fix-more-key-translation.patch
patch_apply winex11-key_translation/0003-winex11.drv-Fix-main-Russian-keyboard-layout.patch
fi
# Patchset winex11-wglShareLists
# |
# | This patchset fixes the following Wine bugs:

View File

@ -1,4 +1,4 @@
From 05c560e6de31f40125ff4955aabad2262ed4d342 Mon Sep 17 00:00:00 2001
From f57059086630af68cf9469074c1630d32e607e15 Mon Sep 17 00:00:00 2001
From: Felix Yan <felixonmars@gmail.com>
Date: Tue, 23 Sep 2014 23:22:17 +0800
Subject: [PATCH] winex11.drv: Update a candidate window's position with
@ -26,10 +26,10 @@ received a lot of help from Sebastian Lackner.
6 files changed, 84 insertions(+), 1 deletion(-)
diff --git a/dlls/win32u/driver.c b/dlls/win32u/driver.c
index 175fde1fa40..0c3240c9106 100644
index 526bb5db19c..d18a8121f1f 100644
--- a/dlls/win32u/driver.c
+++ b/dlls/win32u/driver.c
@@ -925,6 +925,11 @@ static struct opengl_funcs *nulldrv_wine_get_wgl_driver( UINT version )
@@ -893,6 +893,11 @@ static struct opengl_funcs *nulldrv_wine_get_wgl_driver( UINT version )
return (void *)-1;
}
@ -41,7 +41,7 @@ index 175fde1fa40..0c3240c9106 100644
static void nulldrv_ThreadDetach( void )
{
}
@@ -1219,6 +1224,7 @@ static const struct user_driver_funcs lazy_load_driver =
@@ -1188,6 +1193,7 @@ static const struct user_driver_funcs lazy_load_driver =
loaderdrv_wine_get_vulkan_driver,
/* opengl support */
nulldrv_wine_get_wgl_driver,
@ -49,7 +49,7 @@ index 175fde1fa40..0c3240c9106 100644
/* thread management */
nulldrv_ThreadDetach,
};
@@ -1288,6 +1294,7 @@ void CDECL __wine_set_user_driver( const struct user_driver_funcs *funcs, UINT v
@@ -1258,6 +1264,7 @@ void CDECL __wine_set_user_driver( const struct user_driver_funcs *funcs, UINT v
SET_USER_FUNC(SystemParametersInfo);
SET_USER_FUNC(wine_get_vulkan_driver);
SET_USER_FUNC(wine_get_wgl_driver);
@ -58,10 +58,10 @@ index 175fde1fa40..0c3240c9106 100644
#undef SET_USER_FUNC
diff --git a/dlls/win32u/input.c b/dlls/win32u/input.c
index 28fc5a918c8..b31511804be 100644
index 658258f73ee..8ecacb763c7 100644
--- a/dlls/win32u/input.c
+++ b/dlls/win32u/input.c
@@ -2042,6 +2042,7 @@ BOOL set_caret_pos( int x, int y )
@@ -2035,6 +2035,7 @@ BOOL set_caret_pos( int x, int y )
r.left = x;
r.top = y;
display_caret( hwnd, &r );
@ -69,7 +69,7 @@ index 28fc5a918c8..b31511804be 100644
NtUserSetSystemTimer( hwnd, SYSTEM_TIMER_CARET, caret.timeout );
}
return ret;
@@ -2079,6 +2080,7 @@ BOOL WINAPI NtUserShowCaret( HWND hwnd )
@@ -2072,6 +2073,7 @@ BOOL WINAPI NtUserShowCaret( HWND hwnd )
if (ret && hidden == 1) /* hidden was 1 so it's now 0 */
{
display_caret( hwnd, &r );
@ -78,10 +78,10 @@ index 28fc5a918c8..b31511804be 100644
}
return ret;
diff --git a/dlls/winex11.drv/init.c b/dlls/winex11.drv/init.c
index 9c5c394581b..b52a38690e4 100644
index 60232e4ca7b..846ead80a4a 100644
--- a/dlls/winex11.drv/init.c
+++ b/dlls/winex11.drv/init.c
@@ -425,6 +425,7 @@ static const struct user_driver_funcs x11drv_funcs =
@@ -433,6 +433,7 @@ static const struct user_driver_funcs x11drv_funcs =
.pSystemParametersInfo = X11DRV_SystemParametersInfo,
.pwine_get_vulkan_driver = X11DRV_wine_get_vulkan_driver,
.pwine_get_wgl_driver = X11DRV_wine_get_wgl_driver,
@ -90,10 +90,10 @@ index 9c5c394581b..b52a38690e4 100644
};
diff --git a/dlls/winex11.drv/x11drv.h b/dlls/winex11.drv/x11drv.h
index a8d2f78aa6b..12e55bbf1d2 100644
index ac540df004c..ba56b1e127c 100644
--- a/dlls/winex11.drv/x11drv.h
+++ b/dlls/winex11.drv/x11drv.h
@@ -243,6 +243,7 @@ extern void X11DRV_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flag
@@ -245,6 +245,7 @@ extern void X11DRV_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flag
struct window_surface *surface ) DECLSPEC_HIDDEN;
extern BOOL X11DRV_SystemParametersInfo( UINT action, UINT int_param, void *ptr_param,
UINT flags ) DECLSPEC_HIDDEN;
@ -102,18 +102,18 @@ index a8d2f78aa6b..12e55bbf1d2 100644
/* X11 driver internal functions */
diff --git a/dlls/winex11.drv/xim.c b/dlls/winex11.drv/xim.c
index 6adf2475de7..5b57c572e5f 100644
index 00c15bb3bcf..280bfe5bf3c 100644
--- a/dlls/winex11.drv/xim.c
+++ b/dlls/winex11.drv/xim.c
@@ -30,6 +30,7 @@
@@ -34,6 +34,7 @@
#include "x11drv.h"
#include "imm.h"
#include "wine/debug.h"
+#include "wine/server.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL(xim);
@@ -461,6 +462,48 @@ static BOOL X11DRV_DestroyIC(XIC xic, XPointer p, XPointer data)
@@ -449,6 +450,48 @@ static BOOL X11DRV_DestroyIC(XIC xic, XPointer p, XPointer data)
return TRUE;
}
@ -162,7 +162,7 @@ index 6adf2475de7..5b57c572e5f 100644
XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
{
@@ -488,7 +531,7 @@ XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
@@ -483,7 +526,7 @@ XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
XNDestroyCallback, &destroy,
NULL);
data->xic = xic;
@ -171,7 +171,7 @@ index 6adf2475de7..5b57c572e5f 100644
}
/* create callbacks */
@@ -586,5 +629,32 @@ XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
@@ -581,5 +624,32 @@ XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
if (status != NULL)
XFree(status);
@ -205,10 +205,10 @@ index 6adf2475de7..5b57c572e5f 100644
return xic;
}
diff --git a/include/wine/gdi_driver.h b/include/wine/gdi_driver.h
index a63e2c3ceda..79e9f869b6e 100644
index d9c52777dd8..532e4bdcd9e 100644
--- a/include/wine/gdi_driver.h
+++ b/include/wine/gdi_driver.h
@@ -324,6 +324,8 @@ struct user_driver_funcs
@@ -325,6 +325,8 @@ struct user_driver_funcs
const struct vulkan_funcs * (*pwine_get_vulkan_driver)(UINT);
/* opengl support */
struct opengl_funcs * (*pwine_get_wgl_driver)(UINT);
@ -218,5 +218,5 @@ index a63e2c3ceda..79e9f869b6e 100644
void (*pThreadDetach)(void);
};
--
2.34.1
2.35.1

View File

@ -1,2 +1,7 @@
Fixes: [30984] Improve key translation.
Fixes: [45605] Letter keys doesn't work in DirectX aplications
Disabled: True
# Broken due to winex11 being converted to PE.
# MultiByteToWideChar is undefined and may not be the best way handle
# this anymore.

View File

@ -1 +1 @@
7de36f8e98b2cbbdcc360bdba96a5fe83e815d1a
3ded60bd1654dc689d24a23305f4a93acce3a6f2