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
93748f72
Commit
93748f72
authored
Jul 01, 2023
by
Esme Povirk
Committed by
Alexandre Julliard
Jul 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Implement EVENT_OBJECT_SHOW/HIDE for window objects.
parent
45ac4ce9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
msg.c
dlls/user32/tests/msg.c
+0
-0
window.c
dlls/win32u/window.c
+8
-0
No files found.
dlls/user32/tests/msg.c
View file @
93748f72
This diff is collapsed.
Click to expand it.
dlls/win32u/window.c
View file @
93748f72
...
@@ -3448,9 +3448,17 @@ BOOL set_window_pos( WINDOWPOS *winpos, int parent_x, int parent_y )
...
@@ -3448,9 +3448,17 @@ BOOL set_window_pos( WINDOWPOS *winpos, int parent_x, int parent_y )
goto
done
;
goto
done
;
if
(
winpos
->
flags
&
SWP_HIDEWINDOW
)
if
(
winpos
->
flags
&
SWP_HIDEWINDOW
)
{
NtUserNotifyWinEvent
(
EVENT_OBJECT_HIDE
,
winpos
->
hwnd
,
0
,
0
);
NtUserHideCaret
(
winpos
->
hwnd
);
NtUserHideCaret
(
winpos
->
hwnd
);
}
else
if
(
winpos
->
flags
&
SWP_SHOWWINDOW
)
else
if
(
winpos
->
flags
&
SWP_SHOWWINDOW
)
{
NtUserNotifyWinEvent
(
EVENT_OBJECT_SHOW
,
winpos
->
hwnd
,
0
,
0
);
NtUserShowCaret
(
winpos
->
hwnd
);
NtUserShowCaret
(
winpos
->
hwnd
);
}
if
(
!
(
winpos
->
flags
&
(
SWP_NOACTIVATE
|
SWP_HIDEWINDOW
)))
if
(
!
(
winpos
->
flags
&
(
SWP_NOACTIVATE
|
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