Code Search for Developers
 
 
  

Password.pm from GreenSocs at Krugle


Show Password.pm syntax highlighted

#!/usr/bin/perl -w

=head1 NAME

Debconf::Element::Kde::Password - password entry widget

=cut

package Debconf::Element::Kde::Password;
use strict;
use Qt;
use base qw(Debconf::Element::Kde);

=head1 DESCRIPTION

This is a password entry widget.

=head1 METHODS

=over 4

=item create

Creates and sets up the widget, set it not to display its contents.

=cut

sub create {
	my $this=shift;
	
	$this->SUPER::create(@_);
	$this->startsect;
	$this->widget(Qt::LineEdit($this->cur->top));
	$this->widget->show;
	$this->widget->setEchoMode(2);
	$this->addhelp;
	my $b = $this->addhbox;
	$b->addWidget($this->description);
	$b->addWidget($this->widget);
	$this->endsect;
}

=item value

Of course the value is the content of the text entry field.
If the widget's value field is empty, display the default.

=cut

sub value {
	my $this=shift;
	
	my $text = $this->widget->text();
	$text = $this->question->value if $text eq '';
	return $text;
}

=back

=head1 AUTHOR
 
Peter Rockai <mornfall@logisys.dyndns.org>
  
=cut

1




See more files for this project here

GreenSocs

To develop SystemC infrustructure, basic IP, patches and add on library code for eventual standerdization.\r\nThe GreenSocs project is made up of a number of contributions (sub projects). Please visit www.greensocs.com for more information.

Project homepage: http://sourceforge.net/projects/greensocs
Programming language(s): C,C++,Java,Perl,XML
License: other

  Boolean.pm
  Multiselect.pm
  Note.pm
  Password.pm
  Select.pm
  String.pm
  Text.pm