1Curses::UI::PasswordEntUrsye(r3)Contributed Perl DocumenCtuartsieosn::UI::PasswordEntry(3)
2
3
4
6 Curses::UI::PasswordEntry - Create and manipulate passwordentry widgets
7
9 Curses::UI::Widget
10 Curses::UI::Searchable
11 |
12 +----Curses::UI::TextEditor
13 |
14 +----Curses::UI::TextEntry
15 |
16 +----Curses::UI::PasswordEntry
17
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
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
38 Curses::UI, Curses::UI::TextEntry,
39
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.12.0 2008-12-21 Curses::UI::PasswordEntry(3)