WindowManagerPrivate.mesa; Written by S. McGregor
Edited by McGregor on July 21, 1983 10:44 am
Last Edited by: Maxwell, December 17, 1982 10:01 am
Last Edited by: Pausch, August 17, 1983 11:11 am
Last Edited by: Wyatt, November 9, 1983 4:41 pm
DIRECTORY
MenusPrivate USING [MenuInfo],
Process USING [Priority],
TIPUser USING [TIPScreenCoords],
ViewerClasses USING [Column, NotifyProc, Viewer];
WindowManagerPrivate: CEDAR DEFINITIONS
= BEGIN
rootViewerTree: ARRAY ViewerClasses.Column OF ViewerClasses.Viewer;
the current displayed tree, duplicated for each virtual desktop
VMgrPriority: Process.Priority = LOOPHOLE[3]; -- =Process.priorityForeground
ProcessWindowResults: ViewerClasses.NotifyProc;
DrawCaptionMenu: PROC[v: ViewerClasses.Viewer, guard: BOOL];
windowMenu: MenusPrivate.MenuInfo;
growPos: PUBLIC TIPUser.TIPScreenCoords;
closePos: PUBLIC TIPUser.TIPScreenCoords;
END.