1Curses::UI::PasswordEntUrsye(r3)Contributed Perl DocumenCtuartsieosn::UI::PasswordEntry(3)
2
3
4

NAME

6       Curses::UI::PasswordEntry - Create and manipulate passwordentry widgets
7

CLASS HIERARCHY

9        Curses::UI::Widget
10        Curses::UI::Searchable
11           |
12           +----Curses::UI::TextEditor
13                   |
14                   +----Curses::UI::TextEntry
15                           |
16                           +----Curses::UI::PasswordEntry
17

SYNOPSIS

19           use Curses::UI;
20           my $cui = new Curses::UI;
21           my $win = $cui->add('window_id', 'Window');
22
23           my $passwordentry = $win->add(
24               'mypasswordentry', 'PasswordEntry'
25           );
26
27           $passwordentry->focus();
28           my $password = $passwordentry->get();
29

DESCRIPTION

31       Curses::UI::PasswordEntry is a widget that can be used to create a
32       passwordentry widget. This class is derived from Curses::UI::TextEntry.
33       The only special thing about this class is that the -password option is
34       forced to '*'.  So for the usage of Curses::UI::PasswordEntry see
35       Curses::UI::TextEntry.
36

SEE ALSO

38       Curses::UI, Curses::UI::TextEntry,
39

AUTHOR

41       Copyright (c) 2001-2002 Maurice Makaay. All rights reserved.
42
43       Maintained by Marcus Thiesen (marcus@cpan.thiesenweb.de)
44
45       This package is free software and is provided "as is" without express
46       or implied warranty. It may be used, redistributed and/or modified
47       under the same terms as perl itself.
48
49
50
51perl v5.30.0                      2019-07-26      Curses::UI::PasswordEntry(3)
Impressum