Commit 7c342b4c authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

If ScrollWindowEx do not use the DCX_USESTYLE to get a DC. Instead

calculate DCX_CLIPSIBLINGS, DCX_PARENTCLIP and DCX_CLIPCHILDREN. The DCX_CLIPCHILDREN is not used when ScrollWindowEx is called with a SW_SCROLLCHILDREN flag. With a couple of regression tests.
parent b59484de
...@@ -2603,12 +2603,14 @@ void test_scrollvalidate( HWND parent) ...@@ -2603,12 +2603,14 @@ void test_scrollvalidate( HWND parent)
/* create two overlapping child windows. The visual region /* create two overlapping child windows. The visual region
* of hwnd1 is clipped by the overlapping part of * of hwnd1 is clipped by the overlapping part of
* hwnd2 because of the WS_CLIPSIBLING style */ * hwnd2 because of the WS_CLIPSIBLING style */
HWND hwnd2 = CreateWindowExA(0, "static", NULL, HWND hwnd1, hwnd2;
WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
75, 30, 100, 100, parent, 0, 0, NULL); hwnd2 = CreateWindowExA(0, "static", NULL,
HWND hwnd1 = CreateWindowExA(0, "static", NULL, WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER , 75, 30, 100, 100, parent, 0, 0, NULL);
25, 50, 100, 100, parent, 0, 0, NULL); hwnd1 = CreateWindowExA(0, "static", NULL,
WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
25, 50, 100, 100, parent, 0, 0, NULL);
ShowWindow( parent, SW_SHOW); ShowWindow( parent, SW_SHOW);
UpdateWindow( parent); UpdateWindow( parent);
GetClientRect( hwnd1, &rc); GetClientRect( hwnd1, &rc);
...@@ -2642,6 +2644,63 @@ void test_scrollvalidate( HWND parent) ...@@ -2642,6 +2644,63 @@ void test_scrollvalidate( HWND parent)
trace("update rect is %ld,%ld - %ld,%ld\n", trace("update rect is %ld,%ld - %ld,%ld\n",
rcu.left,rcu.top,rcu.right,rcu.bottom); rcu.left,rcu.top,rcu.right,rcu.bottom);
ReleaseDC( hwnd1, hdc); ReleaseDC( hwnd1, hdc);
/* now test ScrollWindowEx with a combination of
* WS_CLIPCHILDREN style and SW_SCROLLCHILDREN flag */
/* make hwnd2 the child of hwnd1 */
DestroyWindow( hwnd2);
hwnd2 = CreateWindowExA(0, "static", NULL,
WS_CHILD| WS_VISIBLE | WS_BORDER ,
50, 50, 100, 100, hwnd1, 0, 0, NULL);
SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPSIBLINGS);
GetClientRect( hwnd1, &rc);
cliprc=rc;
/* WS_CLIPCHILDREN and SW_SCROLLCHILDREN */
SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
ValidateRect( hwnd1, NULL);
ValidateRect( hwnd2, NULL);
ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu,
SW_SCROLLCHILDREN | SW_INVALIDATE);
if (winetest_debug > 0) dump_region(hrgn);
exprgn = CreateRectRgn( 88,0,98,88);
tmprgn = CreateRectRgn( 0,88,98,98);
CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
/* SW_SCROLLCHILDREN */
SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
ValidateRect( hwnd1, NULL);
ValidateRect( hwnd2, NULL);
ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_SCROLLCHILDREN | SW_INVALIDATE);
if (winetest_debug > 0) dump_region(hrgn);
/* expected region is the same as in previous test */
ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
/* no SW_SCROLLCHILDREN */
SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
ValidateRect( hwnd1, NULL);
ValidateRect( hwnd2, NULL);
ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
if (winetest_debug > 0) dump_region(hrgn);
/* expected region is the same as in previous test */
ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
/* WS_CLIPCHILDREN and no SW_SCROLLCHILDREN */
SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
ValidateRect( hwnd1, NULL);
ValidateRect( hwnd2, NULL);
ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
if (winetest_debug > 0) dump_region(hrgn);
exprgn = CreateRectRgn( 88,0,98,20);
tmprgn = CreateRectRgn( 20,20,98,30);
CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
tmprgn = CreateRectRgn( 20,30,30,88);
CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
tmprgn = CreateRectRgn( 0,88,30,98);
CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
/* clean up */ /* clean up */
DeleteObject( hrgn); DeleteObject( hrgn);
DeleteObject( exprgn); DeleteObject( exprgn);
...@@ -2749,6 +2808,6 @@ START_TEST(win) ...@@ -2749,6 +2808,6 @@ START_TEST(win)
test_scroll(); test_scroll();
UnhookWindowsHookEx(hhook); UnhookWindowsHookEx(hhook);
test_window_styles(); test_window_styles();
} }
...@@ -104,10 +104,17 @@ INT WINAPI ScrollWindowEx( HWND hwnd, INT dx, INT dy, ...@@ -104,10 +104,17 @@ INT WINAPI ScrollWindowEx( HWND hwnd, INT dx, INT dy,
else if( bUpdate ) hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 ); else if( bUpdate ) hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 );
if( !IsRectEmpty(&cliprc) && (dx || dy)) { if( !IsRectEmpty(&cliprc) && (dx || dy)) {
DWORD dcxflags = DCX_CACHE;
DWORD style = GetWindowLongW( hwnd, GWL_STYLE );
caretrc = rc; caretrc = rc;
hwndCaret = fix_caret(hwnd, &caretrc, flags); hwndCaret = fix_caret(hwnd, &caretrc, flags);
hDC = GetDCEx( hwnd, 0, DCX_CACHE | DCX_USESTYLE ); if( style & WS_CLIPSIBLINGS) dcxflags |= DCX_CLIPSIBLINGS;
if( GetClassLongW( hwnd, GCL_STYLE ) & CS_PARENTDC)
dcxflags |= DCX_PARENTCLIP;
if( !(flags & SW_SCROLLCHILDREN) && (style & WS_CLIPCHILDREN))
dcxflags |= DCX_CLIPCHILDREN;
hDC = GetDCEx( hwnd, 0, dcxflags);
if (hDC) if (hDC)
{ {
ScrollDC( hDC, dx, dy, &rc, &cliprc, hrgnUpdate, rcUpdate ); ScrollDC( hDC, dx, dy, &rc, &cliprc, hrgnUpdate, rcUpdate );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment