Containers.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Edited by McGregor on October 21, 1982 4:10 pm
Last Edited by: Maxwell, December 17, 1982 10:07 am
Doug Wyatt, March 28, 1985 9:28:41 pm PST
DIRECTORY
ViewerClasses USING [Viewer, ViewerRec];
Containers are just viewers that are convenient to hold other viewers.
Containers: CEDAR DEFINITIONS
= BEGIN OPEN ViewerClasses;
Container: TYPE = Viewer;
Create: PROC [info: ViewerRec ← [], paint: BOOLTRUE] RETURNS [container: Container];
Creates a new, empty container. You probably want to pass a name in the info record.
ChildYBound: PROC [container: Container, child: Viewer];
Constrain (child.wy + child.wh = container.wh) after next time container is painted.
ChildXBound: PROC [container: Container, child: Viewer];
Constrain (child.wx + child.ww = container.ww) after next time container is painted.
ScrollOffset: PROC [container: Container] RETURNS [offTop: INTEGER];
Returns the amount of the container scrolled off the top.
END.