XTkCredentialsWidget.mesa
Copyright Ó 1992 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi, January 31, 1992 5:37:57 pm PST
Christian Jacobi, February 3, 1992 11:20 am PST
Implements widgets supporting invisible text input.
DIRECTORY
Rope USING [ROPE],
XTk USING [Widget, WidgetSpec];
XTkCredentialsWidget: CEDAR DEFINITIONS ~
BEGIN
Create: PROC [widgetSpec: XTk.WidgetSpec ¬ []] RETURNS [XTk.Widget];
Creates a credential widget.
A credential widget is a widget which allows text input without interactive display of the typed text.
Contents: PROC [w: XTk.Widget] RETURNS [Rope.ROPE];
Returns the text currently input into a credential widget
Clear: PROC [w: XTk.Widget];
Resets credential widget to state where no input has been made.
END.