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
ab111025
Commit
ab111025
authored
May 24, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Don't send minimize/maximize sys commands to windows that are not supposed to get them.
parent
2cf9cdd3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
event.c
dlls/winex11.drv/event.c
+19
-5
No files found.
dlls/winex11.drv/event.c
View file @
ab111025
...
...
@@ -941,6 +941,8 @@ static int get_window_wm_state( Display *display, struct x11drv_win_data *data )
static
void
handle_wm_state_notify
(
struct
x11drv_win_data
*
data
,
XPropertyEvent
*
event
,
BOOL
update_window
)
{
DWORD
style
;
switch
(
event
->
state
)
{
case
PropertyDelete
:
...
...
@@ -966,25 +968,37 @@ static void handle_wm_state_notify( struct x11drv_win_data *data, XPropertyEvent
if
(
!
update_window
||
!
data
->
managed
||
!
data
->
mapped
)
return
;
style
=
GetWindowLongW
(
data
->
hwnd
,
GWL_STYLE
);
if
(
data
->
iconic
&&
data
->
wm_state
==
NormalState
)
/* restore window */
{
data
->
iconic
=
FALSE
;
if
(
is_net_wm_state_maximized
(
event
->
display
,
data
))
{
TRACE
(
"restoring to max %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
SendMessageW
(
data
->
hwnd
,
WM_SYSCOMMAND
,
SC_MAXIMIZE
,
0
);
if
((
style
&
WS_MAXIMIZEBOX
)
&&
!
(
style
&
WS_DISABLED
))
{
TRACE
(
"restoring to max %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
SendMessageW
(
data
->
hwnd
,
WM_SYSCOMMAND
,
SC_MAXIMIZE
,
0
);
}
else
TRACE
(
"not restoring to max win %p/%lx style %08x
\n
"
,
data
->
hwnd
,
data
->
whole_window
,
style
);
}
else
else
if
(
style
&
(
WS_MINIMIZE
|
WS_MAXIMIZE
))
{
TRACE
(
"restoring win %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
SendMessageW
(
data
->
hwnd
,
WM_SYSCOMMAND
,
SC_RESTORE
,
0
);
}
else
TRACE
(
"not restoring win %p/%lx style %08x
\n
"
,
data
->
hwnd
,
data
->
whole_window
,
style
);
}
else
if
(
!
data
->
iconic
&&
data
->
wm_state
==
IconicState
)
{
TRACE
(
"minimizing win %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
data
->
iconic
=
TRUE
;
SendMessageW
(
data
->
hwnd
,
WM_SYSCOMMAND
,
SC_MINIMIZE
,
0
);
if
((
style
&
WS_MINIMIZEBOX
)
&&
!
(
style
&
WS_DISABLED
))
{
TRACE
(
"minimizing win %p/%lx
\n
"
,
data
->
hwnd
,
data
->
whole_window
);
SendMessageW
(
data
->
hwnd
,
WM_SYSCOMMAND
,
SC_MINIMIZE
,
0
);
}
else
TRACE
(
"not minimizing win %p/%lx style %08x
\n
"
,
data
->
hwnd
,
data
->
whole_window
,
style
);
}
}
...
...
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