GGStateTypes.mesa
Copyright © 1991 by Xerox Corporation. All rights reserved.
Bier, December 16, 1991 2:59 pm PST
Contents: Concrete types for data related to how Gargoyle is embedded in a window or parent editor.
DIRECTORY
ImagerTransformation;
GGStateTypes: CEDAR DEFINITIONS = BEGIN
Transformation: TYPE = ImagerTransformation.Transformation;
StateDataObj: TYPE = RECORD [
doubleBuffer: BOOLTRUE, -- used if there is no control panel
clientToViewer: Transformation,
viewerToClient: Transformation,
clientToViewerPrevious: Transformation,
viewerToClientPrevious: Transformation,
readOnly: BOOLFALSE -- should editing be disallowed (e.g. when the picture is being used as a control panel)?
];
END.