PPreViewOps.mesa
Copyright Ó 1989, 1991, 1992 by Xerox Corporation. All rights reserved.
Pier, May 17, 1991 10:40 am PDT
DIRECTORY Imager, PPreView;
PPreViewOps: CEDAR DEFINITIONS = BEGIN
GetSelection: PROC [data: PPreView.Data] RETURNS [x, y, w, h: REAL];
SetSelection: PROC [data: PPreView.Data, x, y, w, h: REAL];
ClearSelection: PROC [data: PPreView.Data];
DoSelectionOp: PROC [data: PPreView.Data, op: ATOM];
GetTransform: PROC [data: PPreView.Data] RETURNS [Imager.Transformation];
SetTransform: PROC [data: PPreView.Data, clientToViewer: Imager.Transformation];
END.