Edited by Teitelman on May 12, 1983 1:44 pm
Contains procedures shared in common by actionareasimpl, actionareasopsimpl
DIRECTORY
Icons USING [IconFlavor],
Rope USING [ROPE],
UserExec USING [ExecHandle]
;
ActionAreas: CEDAR DEFINITIONS =
BEGIN
RestoreSelection: PROC [exec: UserExec.ExecHandle];
used in both actionareasimpl and actionareasopsimpl
LeaveActionArea: PROC [exec: UserExec.ExecHandle, abort: BOOL, booted: BOOLFALSE];
used in both actionareasimpl and actionareasopsimpl
ShowSource: PROC [name: Rope.ROPE, index: INT, exec: UserExec.ExecHandle, onlyIfAlreadyOpen: BOOLFALSE];
actionAreaIcon, inactiveActionAreaIcon, inactiveExecIcon: Icons.IconFlavor;
END. -- ActionAreas