File: TilerMenu.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Created by: Bob Mayo, July 27, 1984 8:20:35 pm PDT
Last Edited by: Mayo, July 27, 1984 9:12:08 pm PDT
-- TilerMenu, allow implementations of tiler objects and commands to add themselves to the tiler menu.
DIRECTORY
Rope USING [ROPE];
TilerMenu: CEDAR DEFINITIONS =
BEGIN
-- name is text for the pop-up menu, commandAtom is an atom registered via CDSequencer.ImplementCommand.
Register: PROC [name: Rope.ROPE, commandAtom: ATOM];
END.