GGActive.mesa
Copyright Ó 1988, 1991, 1992 by Xerox Corporation. All rights reserved.
Bier, June 17, 1991 10:33 pm PDT
Kenneth A. Pier, September 30, 1992 12:26 pm PDT
Doug Wyatt, April 20, 1992 12:41 pm PDT
Contents: Routines that help applications use Gargoyle illustrations as user interfaces (part of the EmbeddedButtons architecture).
DIRECTORY
EBTypes, GGInterfaceTypes, GGUserInput, ViewerClasses;
GGActive: CEDAR DEFINITIONS = BEGIN
GGData: TYPE = GGInterfaceTypes.GGData;
LookupDoc: PROC [ggData: GGData] RETURNS [doc: EBTypes.ActiveDoc];
NullDoc: PROC [ggData: GGData] RETURNS [doc: EBTypes.ActiveDoc];
ControlPanelButtonHandler: PROC [ggData: GGData,
events: LIST OF REF, buttonInfo: EBTypes.ButtonInfo];
ActiveInputHandler: GGUserInput.RawInputHandlerProc;
END.