<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/perl
# This file was preprocessed, do not edit!


package Debconf::Element::Gnome::Password;
use warnings;
use strict;
use Gtk3;
use utf8;
use base qw(Debconf::Element::Gnome);



sub init {
	my $this=shift;

	$this-&gt;SUPER::init(@_);
	$this-&gt;adddescription;

	$this-&gt;widget(Gtk3::Entry-&gt;new);
	$this-&gt;widget-&gt;show;
	$this-&gt;widget-&gt;set_visibility(0);
	$this-&gt;addwidget($this-&gt;widget);
	$this-&gt;tip( $this-&gt;widget );
	$this-&gt;addhelp;
}


sub value {
	my $this=shift;

	my $text = $this-&gt;widget-&gt;get_chars(0, -1);
	$text = $this-&gt;question-&gt;value if $text eq '';
	return $text;
}


1
</pre></body></html>