invalidate_region


Description:

public void invalidate_region (Region region, bool invalidate_children)

Adds region to the update area for this.

The update area is the region that needs to be redrawn, or “dirty region.” The call process_updates sends one or more expose events to the window, which together cover the entire update area. An application would normally redraw the contents of this in response to those expose events.

GDK will call process_all_updates on your behalf whenever your program returns to the main loop and becomes idle, so normally there’s no need to do that manually, you just need to invalidate regions that you know should be redrawn.

The invalidate_children parameter controls whether the region of each child window that intersects region will also be invalidated. If false, then the update area for child windows will remain unaffected. See gdk_window_invalidate_maybe_recurse if you need fine grained control over which children are invalidated.

Parameters:

this

a Window

region

a Region

invalidate_children

true to also invalidate child windows