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
917f288f
Commit
917f288f
authored
Oct 31, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Also return the new extended style in the set_window_pos request.
parent
ab07d61b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
3 deletions
+10
-3
winpos.c
dlls/winex11.drv/winpos.c
+4
-1
server_protocol.h
include/wine/server_protocol.h
+2
-1
protocol.def
server/protocol.def
+1
-0
trace.c
server/trace.c
+2
-1
window.c
server/window.c
+1
-0
No files found.
dlls/winex11.drv/winpos.c
View file @
917f288f
...
...
@@ -240,7 +240,7 @@ BOOL X11DRV_SetWindowPos( HWND hwnd, HWND insert_after, const RECT *rectWindow,
struct
x11drv_win_data
*
data
;
RECT
new_whole_rect
,
old_client_rect
;
WND
*
win
;
DWORD
old_style
,
new_style
;
DWORD
old_style
,
new_style
,
new_ex_style
;
BOOL
ret
,
make_managed
=
FALSE
;
if
(
!
(
data
=
X11DRV_get_win_data
(
hwnd
)))
return
FALSE
;
...
...
@@ -293,6 +293,7 @@ BOOL X11DRV_SetWindowPos( HWND hwnd, HWND insert_after, const RECT *rectWindow,
}
ret
=
!
wine_server_call
(
req
);
new_style
=
reply
->
new_style
;
new_ex_style
=
reply
->
new_ex_style
;
}
SERVER_END_REQ
;
...
...
@@ -304,6 +305,7 @@ BOOL X11DRV_SetWindowPos( HWND hwnd, HWND insert_after, const RECT *rectWindow,
win
->
rectWindow
=
*
rectWindow
;
win
->
rectClient
=
*
rectClient
;
win
->
dwStyle
=
new_style
;
win
->
dwExStyle
=
new_ex_style
;
WIN_ReleasePtr
(
win
);
}
return
ret
;
...
...
@@ -325,6 +327,7 @@ BOOL X11DRV_SetWindowPos( HWND hwnd, HWND insert_after, const RECT *rectWindow,
win
->
rectClient
=
*
rectClient
;
old_style
=
win
->
dwStyle
;
win
->
dwStyle
=
new_style
;
win
->
dwExStyle
=
new_ex_style
;
data
->
window_rect
=
*
rectWindow
;
TRACE
(
"win %p window %s client %s style %08x
\n
"
,
...
...
include/wine/server_protocol.h
View file @
917f288f
...
...
@@ -2946,6 +2946,7 @@ struct set_window_pos_reply
{
struct
reply_header
__header
;
unsigned
int
new_style
;
unsigned
int
new_ex_style
;
};
...
...
@@ -4879,6 +4880,6 @@ union generic_reply
struct
set_completion_info_reply
set_completion_info_reply
;
};
#define SERVER_PROTOCOL_VERSION 32
3
#define SERVER_PROTOCOL_VERSION 32
4
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/protocol.def
View file @
917f288f
...
...
@@ -2171,6 +2171,7 @@ enum message_type
VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE */
@REPLY
unsigned int new_style; /* new window style */
unsigned int new_ex_style; /* new window extended style */
@END
...
...
server/trace.c
View file @
917f288f
...
...
@@ -2691,7 +2691,8 @@ static void dump_set_window_pos_request( const struct set_window_pos_request *re
static
void
dump_set_window_pos_reply
(
const
struct
set_window_pos_reply
*
req
)
{
fprintf
(
stderr
,
" new_style=%08x"
,
req
->
new_style
);
fprintf
(
stderr
,
" new_style=%08x,"
,
req
->
new_style
);
fprintf
(
stderr
,
" new_ex_style=%08x"
,
req
->
new_ex_style
);
}
static
void
dump_get_window_rectangles_request
(
const
struct
get_window_rectangles_request
*
req
)
...
...
server/window.c
View file @
917f288f
...
...
@@ -1822,6 +1822,7 @@ DECL_HANDLER(set_window_pos)
if
(
!
visible_rect
)
visible_rect
=
&
req
->
window
;
set_window_pos
(
win
,
previous
,
flags
,
&
req
->
window
,
&
req
->
client
,
visible_rect
,
valid_rects
);
reply
->
new_style
=
win
->
style
;
reply
->
new_ex_style
=
win
->
ex_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