Home  /  Autodocs  /  layout.gadget

NAME

FlushLayoutDomainCache
Flush layout domain cache below a level.

SYNOPSIS

FlushLayoutDomainCache( layout )
a0

void FlushLayoutDomainCache( struct Gadget * )

FUNCTION

Layout gadget normally caches GM_DOMAIN results from the child objects to speed up window relayouts. However, on some rare occasions a gadget's minimum or maximum domain might change after creation. For these instances layout gadget provides two methods controlling the domain cache. You can set a caching on a child-by-child basis, using the CHILD_CacheDomain attribute, so that on each relayout the domain is calculated again. This method might have an extra performance hit, if the domain changes infrequently. It also has to be set for each parent layout level, which makes the amount of extra calculations grow quickly. The other method, for the cases where the application will know when a gadget's domain changes, is to call FlushLayoutDomainCache() with a pointer to the window's topmost layout object. This call will flush the whole hierarchy, so that the next window relayout will calculate all domains again.

INPUTS

layout
the layout object to flush. This should be the topmost layout object for the window.

SEE ALSO

CHILD_CacheDomain attribute