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
e42eaaaf
Commit
e42eaaaf
authored
Mar 03, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Invalidate the newly exposed child region on the parent too if it doesn't clip children.
parent
9ac7f205
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
13 deletions
+20
-13
window.c
server/window.c
+20
-13
No files found.
server/window.c
View file @
e42eaaaf
...
...
@@ -1363,8 +1363,8 @@ static unsigned int get_window_update_flags( struct window *win, struct window *
static
struct
region
*
expose_window
(
struct
window
*
win
,
const
rectangle_t
*
old_window_rect
,
struct
region
*
old_vis_rgn
)
{
struct
window
*
parent
=
win
;
struct
region
*
new_vis_rgn
,
*
exposed_rgn
;
int
offset_x
,
offset_y
;
if
(
!
(
new_vis_rgn
=
get_visible_region
(
win
,
DCX_WINDOW
)))
return
NULL
;
...
...
@@ -1383,23 +1383,30 @@ static struct region *expose_window( struct window *win, const rectangle_t *old_
}
}
/* make it relative to the old window pos for subtracting */
offset_region
(
new_vis_rgn
,
win
->
window_rect
.
left
-
old_window_rect
->
left
,
win
->
window_rect
.
top
-
old_window_rect
->
top
);
if
(
subtract_region
(
new_vis_rgn
,
old_vis_rgn
,
new_vis_rgn
)
&&
!
is_region_empty
(
new_vis_rgn
))
offset_x
=
old_window_rect
->
left
-
win
->
client_rect
.
left
;
offset_y
=
old_window_rect
->
top
-
win
->
client_rect
.
top
;
if
(
win
->
parent
)
{
/* make it relative to new client rect again */
int
offset_x
=
old_window_rect
->
left
-
win
->
client_rect
.
left
;
int
offset_y
=
old_window_rect
->
top
-
win
->
client_rect
.
top
;
if
(
win
->
parent
&&
!
is_desktop_window
(
win
->
parent
))
if
(
!
is_desktop_window
(
win
->
parent
))
{
offset_x
+=
win
->
client_rect
.
left
;
offset_y
+=
win
->
client_rect
.
top
;
parent
=
win
->
parent
;
}
offset_region
(
new_vis_rgn
,
offset_x
,
offset_y
);
redraw_window
(
parent
,
new_vis_rgn
,
0
,
RDW_INVALIDATE
|
RDW_ERASE
|
RDW_ALLCHILDREN
);
/* make it relative to the old window pos for subtracting */
offset_region
(
new_vis_rgn
,
win
->
window_rect
.
left
-
old_window_rect
->
left
,
win
->
window_rect
.
top
-
old_window_rect
->
top
);
if
((
win
->
parent
->
style
&
WS_CLIPCHILDREN
)
?
subtract_region
(
new_vis_rgn
,
old_vis_rgn
,
new_vis_rgn
)
:
xor_region
(
new_vis_rgn
,
old_vis_rgn
,
new_vis_rgn
))
{
if
(
!
is_region_empty
(
new_vis_rgn
))
{
offset_region
(
new_vis_rgn
,
offset_x
,
offset_y
);
redraw_window
(
win
->
parent
,
new_vis_rgn
,
0
,
RDW_INVALIDATE
|
RDW_ERASE
|
RDW_ALLCHILDREN
);
}
}
}
free_region
(
new_vis_rgn
);
return
exposed_rgn
;
...
...
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