Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
55a78fd1
Commit
55a78fd1
authored
Jun 29, 2015
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Add some tests to show that WS_CLIPCHILDREN doesn't exclude…
user32/tests: Add some tests to show that WS_CLIPCHILDREN doesn't exclude children from update region.
parent
eddfefa5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
msg.c
dlls/user32/tests/msg.c
+14
-0
No files found.
dlls/user32/tests/msg.c
View file @
55a78fd1
...
...
@@ -6646,6 +6646,20 @@ static void test_paint_messages(void)
RedrawWindow
(
hparent
,
NULL
,
0
,
RDW_ERASENOW
);
ok_sequence
(
WmEmptySeq
,
"WmChildPaintNc3"
,
FALSE
);
/* WS_CLIPCHILDREN doesn't exclude children from update region */
flush_sequence
();
RedrawWindow
(
hparent
,
NULL
,
0
,
RDW_INVALIDATE
|
RDW_ERASE
|
RDW_NOCHILDREN
);
GetClientRect
(
hparent
,
&
rect
);
SetRectRgn
(
hrgn
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
check_update_rgn
(
hparent
,
hrgn
);
flush_events
();
RedrawWindow
(
hparent
,
NULL
,
0
,
RDW_INVALIDATE
|
RDW_ERASE
|
RDW_ALLCHILDREN
);
GetClientRect
(
hparent
,
&
rect
);
SetRectRgn
(
hrgn
,
rect
.
left
,
rect
.
top
,
rect
.
right
,
rect
.
bottom
);
check_update_rgn
(
hparent
,
hrgn
);
flush_events
();
/* test RDW_INTERNALPAINT behavior */
flush_sequence
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment