GGEditTool.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Last edited by Bier on October 14, 1986 8:47:01 pm PDT
Contents: Contains Gargoyle routines that are independent of viewer, or that involve the Gargoyle EditTool (a separate one-per-world viewer with Gargoyle functions).
DIRECTORY
GGInterfaceTypes;
GGEditTool: CEDAR DEFINITIONS =
BEGIN
SetDefaultHeuristics:
PROC [on:
BOOL];
When a new viewer is created, should heuristics be turned on?
GetDefaultHeuristics:
PROC RETURNS [on:
BOOL];
When a new viewer is created, should heuristics be turned on?
SetDefaultGravityExtent:
PROC [inches:
REAL];
When a new viewer is created, how strong should its gravity be?
GetDefaultGravityExtent:
PROC RETURNS [
screenDots:
REAL];
When a new viewer is created, how strong should its gravity be?
END.