IconManager.mesa; Edited by McGregor on May 5, 1982 3:36 pm
Last Edited by: Maxwell, December 17, 1982 10:02 am
DIRECTORY
TIPUser USING [TIPTable],
ViewerClasses USING [ModifyProc, NotifyProc, Viewer];
IconManager: CEDAR DEFINITIONS = BEGIN
Events directed to icons are intercepted by the input focus machinery and redirected to the icon manager via this interface.
IconNotify: ViewerClasses.NotifyProc ;
IconModify: ViewerClasses.ModifyProc ;
iconTIP: TIPUser.TIPTable ;
selectedIcon: ViewerClasses.Viewer ;
END.