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
56fbca4f
Commit
56fbca4f
authored
Jul 31, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineandroid: Update the views z-order based on the window hierarchy.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
744d5385
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
87 additions
and
28 deletions
+87
-28
WineActivity.java
dlls/wineandroid.drv/WineActivity.java
+82
-26
window.c
dlls/wineandroid.drv/window.c
+5
-2
No files found.
dlls/wineandroid.drv/WineActivity.java
View file @
56fbca4f
This diff is collapsed.
Click to expand it.
dlls/wineandroid.drv/window.c
View file @
56fbca4f
...
...
@@ -1123,8 +1123,11 @@ void CDECL ANDROID_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flag
if
(
!
data
->
parent
)
owner
=
GetWindow
(
hwnd
,
GW_OWNER
);
release_win_data
(
data
);
TRACE
(
"win %p window %s client %s style %08x owner %p flags %08x
\n
"
,
hwnd
,
wine_dbgstr_rect
(
window_rect
),
wine_dbgstr_rect
(
client_rect
),
new_style
,
owner
,
swp_flags
);
if
(
!
(
swp_flags
&
SWP_NOZORDER
))
insert_after
=
GetWindow
(
hwnd
,
GW_HWNDPREV
);
TRACE
(
"win %p window %s client %s style %08x owner %p after %p flags %08x
\n
"
,
hwnd
,
wine_dbgstr_rect
(
window_rect
),
wine_dbgstr_rect
(
client_rect
),
new_style
,
owner
,
insert_after
,
swp_flags
);
ioctl_window_pos_changed
(
hwnd
,
window_rect
,
client_rect
,
visible_rect
,
new_style
,
swp_flags
,
insert_after
,
owner
);
...
...
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