ViewerMenus.mesa
Copyright © 1985 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
Doug Wyatt, April 14, 1985 10:58:34 pm PST
DIRECTORY
Menus USING [MenuProc];
ViewerMenus: CEDAR DEFINITIONS
= BEGIN
Destroy: Menus.MenuProc; -- destroy a viewer
Adjust: Menus.MenuProc; -- adjust the size of the viewer
Top: Menus.MenuProc; -- move the viewer to the top of the column
Left: Menus.MenuProc; -- move the viewer to the left column
Right: Menus.MenuProc; -- move the viewer to the right column
Color: Menus.MenuProc; -- move the viewer to the color column
Grow: Menus.MenuProc; -- close all other viewers in the column
Close: Menus.MenuProc; -- make a viewer iconic
Save: Menus.MenuProc; -- save new edits in the viewer
Restore: Menus.MenuProc; -- discard current edits
END.