When background is erased in a 16 bit app, a handle to DC is passed through USER16 functions, namely CallWindowProc16 (USER.122) and DefDriverProc16 (USER.255), whose respective parameters are of type WPARAM16, hence the upper part of the handle is truncated. Later the returned handle is rejected by get_dc_attr() in GDI32 because its type is 0, although such handles are accepted by handle_entry(). This results in black and not cleared background. If handles are restored with HDC_32(), they pass get_dc_attr() successfully.
Based on a patch by Nikolay Sivov.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51899 Signed-off-by: Oleh Nykyforchyn oleh.nyk@gmail.com --- dlls/user.exe16/message.c | 11 +++++++++++ 1 file changed, 11 insertions(+)
diff --git a/dlls/user.exe16/message.c b/dlls/user.exe16/message.c index 93e2cc018bf..eb1d957847a 100644 --- a/dlls/user.exe16/message.c +++ b/dlls/user.exe16/message.c @@ -899,6 +899,9 @@ LRESULT WINPROC_CallProc16To32A( winproc_callback_t callback, HWND16 hwnd, UINT1 case WM_SIZECLIPBOARD: FIXME_(msg)( "message %04x needs translation\n", msg ); break; + case WM_ERASEBKGND: + ret = callback( hwnd32, msg, (WPARAM)HDC_32(wParam), lParam, result, arg ); + break; default: ret = callback( hwnd32, msg, wParam, lParam, result, arg ); break; @@ -1670,6 +1673,14 @@ LRESULT WINAPI DefWindowProc16( HWND16 hwnd16, UINT16 msg, WPARAM16 wParam, LPAR case WM_GETTEXT: case WM_SETTEXT: return DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) ); + case WM_CTLCOLOR: + if (HIWORD(lParam) <= CTLCOLOR_STATIC) + return DefWindowProcA( hwnd, WM_CTLCOLORMSGBOX + HIWORD(lParam), + (WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ) ); + else + return 0; + case WM_ERASEBKGND: + return DefWindowProcA( hwnd, msg, (WPARAM)HDC_32(wParam), lParam ); default: return DefWindowProcA( hwnd, msg, wParam, lParam ); }
Hi Oleh,
On 11/26/21 10:43 AM, Oleh Nykyforchyn wrote:
@@ -1670,6 +1673,14 @@ LRESULT WINAPI DefWindowProc16( HWND16 hwnd16, UINT16 msg, WPARAM16 wParam, LPAR case WM_GETTEXT: case WM_SETTEXT: return DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) );
- case WM_CTLCOLOR:
if (HIWORD(lParam) <= CTLCOLOR_STATIC)
return DefWindowProcA( hwnd, WM_CTLCOLORMSGBOX + HIWORD(lParam),
(WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ) );
else
return 0;
- case WM_ERASEBKGND:
return DefWindowProcA( hwnd, msg, (WPARAM)HDC_32(wParam), lParam );
Maybe we could just use WINPROC_CallProc16To32A for DefWindowProc16 instead of duplicating it here. Does the attached patch work for you?
Thanks,
Jacek
Wine prefix has been created, and something went wrong:
wine: configuration in L"/home/family/nick/.wine" has been updated. 0120:fixme:imm:ImeSetActiveContext (0x163030, 1): stub 0120:fixme:imm:ImmReleaseContext (0000000000050046, 0000000000163030): stub wine: Unhandled page fault on read access to 0000000000000500 at address 00007F613CDE67E8 (thread 0048), starting debugger... ^C0138:fixme:console:default_ctrl_handler Terminating process 20 on event 0 013c:fixme:console:default_ctrl_handler Terminating process 114 on event 0 0134:fixme:console:default_ctrl_handler Terminating process 11c on event 0
пт, 26 лист. 2021 о 18:35 Jacek Caban jacek@codeweavers.com пише:
Hi Oleh,
On 11/26/21 10:43 AM, Oleh Nykyforchyn wrote:
@@ -1670,6 +1673,14 @@ LRESULT WINAPI DefWindowProc16( HWND16 hwnd16, UINT16 msg, WPARAM16 wParam, LPAR case WM_GETTEXT: case WM_SETTEXT: return DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) );
- case WM_CTLCOLOR:
if (HIWORD(lParam) <= CTLCOLOR_STATIC)
return DefWindowProcA( hwnd, WM_CTLCOLORMSGBOX + HIWORD(lParam),
(WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ) );
else
return 0;
- case WM_ERASEBKGND:
return DefWindowProcA( hwnd, msg, (WPARAM)HDC_32(wParam), lParam );
Maybe we could just use WINPROC_CallProc16To32A for DefWindowProc16 instead of duplicating it here. Does the attached patch work for you?
Thanks,
Jacek
Removed wine prefix , manually killed all wineserver, winedevice.exe etc processes, run winecfg once more. It seems that everything is OK. WinEdt works flawlessly. I will rebuild the entire package from scratch and test it more thoroughly.
пт, 26 лист. 2021 о 20:16 Oleh Nykyforchyn oleh.nyk@gmail.com пише:
Wine prefix has been created, and something went wrong:
wine: configuration in L"/home/family/nick/.wine" has been updated. 0120:fixme:imm:ImeSetActiveContext (0x163030, 1): stub 0120:fixme:imm:ImmReleaseContext (0000000000050046, 0000000000163030): stub wine: Unhandled page fault on read access to 0000000000000500 at address 00007F613CDE67E8 (thread 0048), starting debugger... ^C0138:fixme:console:default_ctrl_handler Terminating process 20 on event 0 013c:fixme:console:default_ctrl_handler Terminating process 114 on event 0 0134:fixme:console:default_ctrl_handler Terminating process 11c on event 0
пт, 26 лист. 2021 о 18:35 Jacek Caban jacek@codeweavers.com пише:
Hi Oleh,
On 11/26/21 10:43 AM, Oleh Nykyforchyn wrote:
@@ -1670,6 +1673,14 @@ LRESULT WINAPI DefWindowProc16( HWND16 hwnd16, UINT16 msg, WPARAM16 wParam, LPAR case WM_GETTEXT: case WM_SETTEXT: return DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) );
- case WM_CTLCOLOR:
if (HIWORD(lParam) <= CTLCOLOR_STATIC)
return DefWindowProcA( hwnd, WM_CTLCOLORMSGBOX + HIWORD(lParam),
(WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ) );
else
return 0;
- case WM_ERASEBKGND:
return DefWindowProcA( hwnd, msg, (WPARAM)HDC_32(wParam), lParam );
Maybe we could just use WINPROC_CallProc16To32A for DefWindowProc16 instead of duplicating it here. Does the attached patch work for you?
Thanks,
Jacek
Jacek, I see no problems with Your patch, it works well both for WinEdt and Collins Dictionary.
пт, 26 лист. 2021 о 22:01 Oleh Nykyforchyn oleh.nyk@gmail.com пише:
Removed wine prefix , manually killed all wineserver, winedevice.exe etc processes, run winecfg once more. It seems that everything is OK. WinEdt works flawlessly. I will rebuild the entire package from scratch and test it more thoroughly.
пт, 26 лист. 2021 о 20:16 Oleh Nykyforchyn oleh.nyk@gmail.com пише:
Wine prefix has been created, and something went wrong:
wine: configuration in L"/home/family/nick/.wine" has been updated. 0120:fixme:imm:ImeSetActiveContext (0x163030, 1): stub 0120:fixme:imm:ImmReleaseContext (0000000000050046, 0000000000163030): stub wine: Unhandled page fault on read access to 0000000000000500 at address 00007F613CDE67E8 (thread 0048), starting debugger... ^C0138:fixme:console:default_ctrl_handler Terminating process 20 on event 0 013c:fixme:console:default_ctrl_handler Terminating process 114 on event 0 0134:fixme:console:default_ctrl_handler Terminating process 11c on event 0
пт, 26 лист. 2021 о 18:35 Jacek Caban jacek@codeweavers.com пише:
Hi Oleh,
On 11/26/21 10:43 AM, Oleh Nykyforchyn wrote:
@@ -1670,6 +1673,14 @@ LRESULT WINAPI DefWindowProc16( HWND16 hwnd16, UINT16 msg, WPARAM16 wParam, LPAR case WM_GETTEXT: case WM_SETTEXT: return DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) );
- case WM_CTLCOLOR:
if (HIWORD(lParam) <= CTLCOLOR_STATIC)
return DefWindowProcA( hwnd, WM_CTLCOLORMSGBOX + HIWORD(lParam),
(WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ) );
else
return 0;
- case WM_ERASEBKGND:
return DefWindowProcA( hwnd, msg, (WPARAM)HDC_32(wParam), lParam );
Maybe we could just use WINPROC_CallProc16To32A for DefWindowProc16 instead of duplicating it here. Does the attached patch work for you?
Thanks,
Jacek
Could You finalize Your patch, submit it, and mark my patch as superseded?
сб, 27 лист. 2021 о 08:10 Oleh Nykyforchyn oleh.nyk@gmail.com пише:
Jacek, I see no problems with Your patch, it works well both for WinEdt and Collins Dictionary.
пт, 26 лист. 2021 о 22:01 Oleh Nykyforchyn oleh.nyk@gmail.com пише:
Removed wine prefix , manually killed all wineserver, winedevice.exe etc processes, run winecfg once more. It seems that everything is OK. WinEdt works flawlessly. I will rebuild the entire package from scratch and test it more thoroughly.
пт, 26 лист. 2021 о 20:16 Oleh Nykyforchyn oleh.nyk@gmail.com пише:
Wine prefix has been created, and something went wrong:
wine: configuration in L"/home/family/nick/.wine" has been updated. 0120:fixme:imm:ImeSetActiveContext (0x163030, 1): stub 0120:fixme:imm:ImmReleaseContext (0000000000050046, 0000000000163030): stub wine: Unhandled page fault on read access to 0000000000000500 at address 00007F613CDE67E8 (thread 0048), starting debugger... ^C0138:fixme:console:default_ctrl_handler Terminating process 20 on event 0 013c:fixme:console:default_ctrl_handler Terminating process 114 on event 0 0134:fixme:console:default_ctrl_handler Terminating process 11c on event 0
пт, 26 лист. 2021 о 18:35 Jacek Caban jacek@codeweavers.com пише:
Hi Oleh,
On 11/26/21 10:43 AM, Oleh Nykyforchyn wrote:
@@ -1670,6 +1673,14 @@ LRESULT WINAPI DefWindowProc16( HWND16 hwnd16, UINT16 msg, WPARAM16 wParam, LPAR case WM_GETTEXT: case WM_SETTEXT: return DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) );
- case WM_CTLCOLOR:
if (HIWORD(lParam) <= CTLCOLOR_STATIC)
return DefWindowProcA( hwnd, WM_CTLCOLORMSGBOX + HIWORD(lParam),
(WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ) );
else
return 0;
- case WM_ERASEBKGND:
return DefWindowProcA( hwnd, msg, (WPARAM)HDC_32(wParam), lParam );
Maybe we could just use WINPROC_CallProc16To32A for DefWindowProc16 instead of duplicating it here. Does the attached patch work for you?
Thanks,
Jacek