Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ce7bfd6a
Commit
ce7bfd6a
authored
Jul 31, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Erase parent window when child is hidden. From a patch by Clinton Stimpson.
parent
5b6bb63a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
8 deletions
+15
-8
painting.c
dlls/user32/painting.c
+1
-1
msg.c
dlls/user32/tests/msg.c
+1
-1
user_private.h
dlls/user32/user_private.h
+1
-0
winpos.c
dlls/user32/winpos.c
+12
-6
No files found.
dlls/user32/painting.c
View file @
ce7bfd6a
...
...
@@ -280,7 +280,7 @@ static BOOL send_erase( HWND hwnd, UINT flags, HRGN client_rgn,
*
* Implementation of RDW_ERASENOW behavior.
*/
static
void
erase_now
(
HWND
hwnd
,
UINT
rdw_flags
)
void
erase_now
(
HWND
hwnd
,
UINT
rdw_flags
)
{
HWND
child
=
0
;
HRGN
hrgn
;
...
...
dlls/user32/tests/msg.c
View file @
ce7bfd6a
...
...
@@ -3994,7 +3994,7 @@ static void test_messages(void)
/* check parent messages too */
log_all_parent_messages
++
;
ShowWindow
(
hchild
,
SW_HIDE
);
ok_sequence
(
WmHideChildSeq2
,
"ShowWindow(SW_HIDE):child"
,
TRU
E
);
ok_sequence
(
WmHideChildSeq2
,
"ShowWindow(SW_HIDE):child"
,
FALS
E
);
log_all_parent_messages
--
;
ShowWindow
(
hchild
,
SW_SHOW
);
...
...
dlls/user32/user_private.h
View file @
ce7bfd6a
...
...
@@ -213,6 +213,7 @@ extern HBRUSH SYSCOLOR_55AABrush;
extern
BOOL
CLIPBOARD_ReleaseOwner
(
void
);
extern
BOOL
FOCUS_MouseActivate
(
HWND
hwnd
);
extern
BOOL
HOOK_IsHooked
(
INT
id
);
extern
void
erase_now
(
HWND
hwnd
,
UINT
rdw_flags
);
extern
LRESULT
call_current_hook
(
HHOOK
hhook
,
INT
code
,
WPARAM
wparam
,
LPARAM
lparam
);
extern
LRESULT
MSG_SendInternalMessageTimeout
(
DWORD
dest_pid
,
DWORD
dest_tid
,
UINT
msg
,
WPARAM
wparam
,
LPARAM
lparam
,
...
...
dlls/user32/winpos.c
View file @
ce7bfd6a
...
...
@@ -1604,13 +1604,19 @@ BOOL USER_SetWindowPos( WINDOWPOS * winpos )
&
newWindowRect
,
&
newClientRect
,
orig_flags
,
valid_rects
))
return
FALSE
;
/* Windows doesn't redraw a window if it is being just moved */
if
(
!
(
orig_flags
&
SWP_SHOWWINDOW
)
&&
(
winpos
->
flags
&
SWP_AGG_STATUSFLAGS
)
!=
SWP_AGG_NOGEOMETRYCHANGE
)
/* erase parent if hiding child */
if
(
!
(
orig_flags
&
SWP_DEFERERASE
))
{
UINT
rdw_flags
=
RDW_FRAME
|
RDW_ERASE
;
if
(
!
(
orig_flags
&
SWP_DEFERERASE
)
)
rdw_flags
|=
RDW_ERASENOW
;
RedrawWindow
(
winpos
->
hwnd
,
NULL
,
NULL
,
rdw_flags
);
if
(
orig_flags
&
SWP_HIDEWINDOW
)
{
HWND
parent
=
GetAncestor
(
winpos
->
hwnd
,
GA_PARENT
);
erase_now
(
parent
,
RDW_NOCHILDREN
);
}
else
if
(
!
(
orig_flags
&
SWP_SHOWWINDOW
)
&&
(
winpos
->
flags
&
SWP_AGG_STATUSFLAGS
)
!=
SWP_AGG_NOGEOMETRYCHANGE
)
{
erase_now
(
winpos
->
hwnd
,
0
);
}
}
if
(
winpos
->
flags
&
SWP_HIDEWINDOW
)
...
...
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