TSOutputDisplay.Mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Last Edited by: Beach, October 28, 1983 4:38 pm
Michael Plass, April 25, 1985 1:48:45 pm PST
DIRECTORY
Imager, TSFont, Rope, ViewerClasses;
TSOutputDisplay: CEDAR DEFINITIONS =
BEGIN
DisplayState: TYPE = REF DisplayStateRec;
DisplayStateRec: TYPE = RECORD [
viewer: ViewerClasses.Viewer ← NIL,
color: Imager.Color ← NIL,
callBackProc: DisplayProc ← NIL,
currentFont: TSFont.Ref ← NIL,
imagerFont: Imager.Font ← NIL,
pageHeight: REAL
];
DisplayProc: TYPE = PROCEDURE [dc: Imager.Context];
END.