IconManager.mesa; Written by S. McGregor
Edited by McGregor on July 21, 1983 10:44 am
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.