Next Previous Up Top Contents Index

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

LispWorks CAPI Reference Manual - 17 Oct 1998

Next Previous Up Top Contents Index

Generated with Harlequin WebMaker