ImagerInterpressBackdoor.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Tim Diebert: October 9, 1985 8:33:24 am PDT
DIRECTORY
Imager USING [Context],
ImagerInterpress USING [Ref];
ImagerInterpressBackdoor: CEDAR DEFINITIONS
~ BEGIN
This interface provides hooks for getting a context that behaves in the way that ImagerPress and ImagerViewer behave.
GetContext: PROC [self: ImagerInterpress.Ref] RETURNS [Imager.Context];
This procedure creates a context into which the imager calls do thier actions. You must call NewPage with last TRUE for the last page and before the Master is closed.
NewPage: PROC [self: ImagerInterpress.Ref, context: Imager.Context, last: BOOL];
This causes a new page to be written into the master. It must be called with last TRUE on the last page of the master.
END.