SVScratchpadMonitor.mesa
Last edited by Bier on July 30, 1984 2:00:44 am PDT
Copyright © 1984 by Xerox Corporation. All rights reserved.
Contents: A flexible setup, suggested by Scott McGregor, for processing mouse input as fast as you can (but no faster). I will use it to synchronize my mouse point processing with the mousepoint. If the processing algorithms become faster, this procedure will still do the right thing.
DIRECTORY
Menus,
SVInterfaceTypes,
SV2d;
SVScratchpadMonitor: DEFINITIONS =
BEGIN
Point2d: TYPE = SV2d.Point2d;
ScratchpadData: TYPE = SVInterfaceTypes.ScratchpadData;
NewMotion: PROC [pt: Point2d, atom: ATOM, scratchpadData: ScratchpadData];
New: PROC RETURNS [x: BOOL];
END.