ViewerMenus.mesa
Copyright Ó 1985, 1986, 1987, 1991 by Xerox Corporation. All rights reserved.
Edited by McGregor on September 2, 1982 11:12 am
Last Edited by: Maxwell, December 17, 1982 10:00 am
Michael Plass, February 19, 1987 11:22:22 am PST
Doug Wyatt, January 19, 1987 10:35:26 pm PST
DIRECTORY
ViewerClasses USING [ClickProc];
ViewerMenus: CEDAR DEFINITIONS
= BEGIN
Destroy: ViewerClasses.ClickProc; -- destroy a viewer
Adjust: ViewerClasses.ClickProc; -- adjust the size of the viewer
Top: ViewerClasses.ClickProc; -- move the viewer to the top of the column
Left: ViewerClasses.ClickProc; -- move the viewer to the left
Right: ViewerClasses.ClickProc; -- move the viewer to the right
Color: ViewerClasses.ClickProc; -- move the viewer to the color display
Grow: ViewerClasses.ClickProc; -- close all other viewers in the column
Close: ViewerClasses.ClickProc; -- make a viewer iconic
END.