1 CAPI Reference Entries

password-pane

Class

Summary

The password pane is a pane designed for entering passwords, such that when the password is entered it is not visible on the screen.

Superclasses

text-input-pane

Description

The password pane inherits all of its functionality fromtext-input-pane, and thus it starts with the initial text and caret position specified by:text and:caret-position respectively, and limits the number of characters entered with the:max-characters keyword (which defaults tonil, meaning there is no maximum). It can be enabled and disabled with the accessortext-input-pane-enabled.

Examples

(setq password-pane (capi:contain
                     (make-instance
                      'capi:password-pane
                      :callback 
                      #'(lambda (password interface)
                                (capi:display-message
                                "Password: ~A"
                                password)))))

(capi:text-input-pane-text password-pane)

(capi:contain (make-instance 'capi:password-pane :max-characters 5))

See Also

editor-pane
text-input-pane


CAPI Reference Manual, Liquid Common Lisp Version 5.0 - 3 OCT 1997

Generated with Harlequin WebMaker