
1 CAPI Reference Entries
text-input-pane
text-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.
(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))
editor-panetext-input-pane

Generated with Harlequin WebMaker