PipalInteractiveEdit.mesa 
Copyright Ó 1988 by Xerox Corporation. All rights reserved.
Barth, February 4, 1988 12:55:45 pm PST
DIRECTORY BiScrollers, Pipal, PipalEdit, PipalReal, ViewerClasses;
PipalInteractiveEdit: CEDAR DEFINITIONS = BEGIN
Theory
Combines input events with editors and keeps the screen refreshed.
Operations
ViewerData : TYPE = REF ViewerDataRec; -- what gets hung unto the viewer
ViewerDataRec: TYPE = RECORD [
editor: PipalEdit.Editor,
data: REFNIL];
Create: PROC [editor: PipalEdit.Editor, tipTable: Pipal.ROPE, notify: ViewerClasses.NotifyProc, data: REFNIL] RETURNS [viewerData: PipalInteractiveEdit.ViewerData];
END.