InputFocus.mesa; Last Edited by McGregor, August 17, 1982 10:43 am
Last Edited by: Maxwell, December 17, 1982 10:00 am
DIRECTORY
TIPUser USING [TIPClient, TIPTable],
ViewerClasses USING [NotifyProc, Viewer];
InputFocus: CEDAR DEFINITIONS = BEGIN OPEN ViewerClasses;
Focus: TYPE = REF FocusRec;
FocusRec: TYPE = RECORD [
owner: Viewer ← NIL,   -- Viewer associated with this focus.
info: REFNIL,     -- focus data private to the owner.
link: PRIVATE Focus ← NIL  -- focus stack overhead.
] ;
GetInputFocus: PROC RETURNS [Focus] ;
Returns a REF to the Current Focus, i.e. the focus on the top of the focus stack.
SetInputFocus: PROC [self: Viewer ← NIL, info: REFNIL] ;
Sets focus stack to self and calls the modify proc of the Current Focus with {kill}.
PushInputFocus: PROC [self: Viewer ← NIL, info: REFNIL] ;
Pushes self on top of focus stack and calls modify proc of the Current Focus with {push}.
PopInputFocus: PROC ;
Pops the focus stack and calls the modify proc of the old Focus with {kill}, then calls the new Focus (if any) modify proc with {pop}.
CaptureButtons: PROC [proc: NotifyProc, tip: TIPUser.TIPTable, viewer: Viewer ← NIL] ;
A client may register with the InputFocus mechanism to capture all button events, without regard to the mouse position (useful for growing windows, etc.) Registration is reset by calling ReleaseButtons below. Note that mouse coordinates passed to the NotifyProc will be screen relative rather than relative to any particular viewer. See ViewerOps.MouseInViewer should you require mapping to a particular viewer.
ReleaseButtons: PROC = INLINE { CaptureButtons[NIL, NIL, NIL] } ;
EnableInput: PRIVATE PROC ;
Call at init to enable input from TIP. Type-ahead lost up to this point.
Wizards only, please.
inputEnabled: READONLY BOOL;
keyboard input enable flag
focusTIP: PRIVATE TIPUser.TIPClient;
InputFocus TIP Client; wizards only, please.
WindowManagerTIPTable: PRIVATE TIPUser.TIPTable ;
InputFocusImpl: PRIVATE PROGRAM;
END.