RethinkVirtualSize(virtual, rootlayout, font, screen, layoutlimits)
BOOL RethinkVirtualSize(Object *, Object *, struct TextFont *,
struct Screen *, struct LayoutLimits *)
This function is used to calculate the intial size of a layout group that contains a virtual.gadget (and ONLY one!). Simply call this function BEFORE you open the window:
RethinkVirtualSize(virtual, rootlayout, NULL, screen, &ll);
This ensures that the visible portion of the virtual group will be as large as possible. Next open the window and set the window limits to values that were returned by the function in the LayoutLimits structure you've passed in:
WindowLimits( mywin, ll.MinWidth, ll.MinHeight,
ll.MaxWidth, ll.MaxHeight );
Last but not least, set the new minimum size for the virtual.gadget, so that the user can resize the group:
SetAttrs( layoutgroup_containg_virtual,
LAYOUT_ModifyChild, virtual,
CHILD_MinWidth, 64,
CHILD_MinHeight, 48,
TAG_DONE);
If anything went wrong, this function returns FALSE (out of memory, NULL screen pointer, ...).
The function may become obsolete in a later release of ReAction.