https://bugs.winehq.org/show_bug.cgi?id=45968
Bug ID: 45968 Summary: Multiple applications need 'user32.CascadeWindows' implementation Product: Wine Version: 3.17 Hardware: x86-64 OS: Linux Status: NEW Severity: normal Priority: P2 Component: user32 Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net Distribution: ---
Hello folks,
to track https://www.winehq.org/pipermail/wine-devel/2018-October/133379.html
Reactos ticket: https://jira.reactos.org/browse/CORE-14807 PR: https://github.com/reactos/reactos/pull/676
Microsoft docs:
https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-casc...
Wine source: https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/user32/mdi.c#l1842
--- snip --- 1842 /****************************************************************************** 1843 * CascadeWindows (USER32.@) Cascades MDI child windows 1844 * 1845 * RETURNS 1846 * Success: Number of cascaded windows. 1847 * Failure: 0 1848 */ 1849 WORD WINAPI 1850 CascadeWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect, 1851 UINT cKids, const HWND *lpKids) 1852 { 1853 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids); 1854 return 0; 1855 } --- snip ---
Regards
https://bugs.winehq.org/show_bug.cgi?id=45968
Alistair Leslie-Hughes leslie_alistair@hotmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Staged patchset| |https://github.com/wine-sta | |ging/wine-staging/tree/mast | |er/patches/user32-Implement | |-CascadeWindows Status|NEW |STAGED CC| |leslie_alistair@hotmail.com
https://bugs.winehq.org/show_bug.cgi?id=45968
Zebediah Figura z.figura12@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Multiple applications need |explorer.exe needs "Cascade |'user32.CascadeWindows' |Windows" function -> |implementation |'user32.CascadeWindows' | |implementation CC| |z.figura12@gmail.com
--- Comment #1 from Zebediah Figura z.figura12@gmail.com --- Linked tickets seem to just show explorer.exe (+ sample MDI application); changing title appropriately.
https://bugs.winehq.org/show_bug.cgi?id=45968
katayama.hirofumi.mz@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |katayama.hirofumi.mz@gmail. | |com
--- Comment #2 from katayama.hirofumi.mz@gmail.com --- Created attachment 62858 --> https://bugs.winehq.org/attachment.cgi?id=62858 Implements CascadeWindows
https://bugs.winehq.org/show_bug.cgi?id=45968
--- Comment #3 from katayama.hirofumi.mz@gmail.com --- Created attachment 62884 --> https://bugs.winehq.org/attachment.cgi?id=62884 A test program (CascadeTile)
This is a test program I made. Please test it. Thanks.
https://bugs.winehq.org/show_bug.cgi?id=45968
--- Comment #4 from katayama.hirofumi.mz@gmail.com --- Please take a look at the first attachment. It's my patch I made. Thanks.