TEditSelectionOps.mesa
Copyright Ó 1985, 1986, 1991, 1992 by Xerox Corporation. All rights reserved.
Russ Atkinson (RRA) June 25, 1985 1:22:34 am PDT
Doug Wyatt, January 30, 1992 6:49 pm PST
DIRECTORY
TiogaOpsDefs USING [WhichSelection],
ViewerClasses USING [Viewer];
TEditSelectionOps: CEDAR DEFINITIONS ~ {
Viewer: TYPE ~ ViewerClasses.Viewer;
ShowGivenPosition: PROC [viewer: Viewer, pos: INT, skipCommentNodes: BOOL ¬ TRUE];
scrolls to the given position and uses the feedback selection to point it out. This is the basic stuff used for the Position button and Source feedback from the interpreter.
ShowGivenPositionRange: PROC [viewer: ViewerClasses.Viewer,
selectionId: TiogaOpsDefs.WhichSelection, posI, posF: INT,
skipCommentNodes, pendingDelete: BOOL];
A slightly more flexible version of ShowGivenPosition.
}.