ViewersWorldInitializations.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Christian Jacobi, March 4, 1992 5:00 pm PST
Last tweaked by Mike Spreitzer March 26, 1992 1:57 pm PST
A ViewersWorld.Ref is created by calling ViewersWorldClasses.CreateViewersWorld and then ViewersWorld.SetSize.
A ViewersWorld.Ref vw is connected into Viewers by code like this:
ViewersWorldInitializations.StartInstallation[vw];
[] ¬ Buttons.Create[...] --post vw-specific buttons
MessageWindow.Append[greeting, TRUE];
ViewersWorldInitializations.FinishInstallation[vw];
DIRECTORY
ViewersWorldRefType;
ViewersWorldInitializations: CEDAR DEFINITIONS =
BEGIN
Ref: TYPE = ViewersWorldRefType.Ref;
StartInstallation: PROC [Ref];
FinishInstallation: PROC [Ref];
END.