<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::Note;
use warnings;
use strict;
use Debconf::Gettext;
use Gtk3;
use utf8;
use Debconf::Encoding qw(to_Unicode);
use Debconf::Element::Noninteractive::Note;
use base qw(Debconf::Element::Gnome);


sub init {
	my $this=shift;
	my $extended_description = to_Unicode($this-&gt;question-&gt;extended_description);

	$this-&gt;SUPER::init(@_);
	$this-&gt;multiline(1);
	$this-&gt;fill(1);
	$this-&gt;expand(1);
	$this-&gt;widget(Gtk3::HBox-&gt;new(0, 0));

	my $text = Gtk3::TextView-&gt;new();
	my $textbuffer = $text-&gt;get_buffer;
	$text-&gt;show;
	$text-&gt;set_wrap_mode ("word");
	$text-&gt;set_editable (0);

	my $scrolled_window = Gtk3::ScrolledWindow-&gt;new();
	$scrolled_window-&gt;show;
	$scrolled_window-&gt;set_policy('automatic', 'automatic');
	$scrolled_window-&gt;set_shadow_type('in');
	$scrolled_window-&gt;add ($text);

	$this-&gt;widget-&gt;show;
	$this-&gt;widget-&gt;pack_start($scrolled_window, 1, 1, 0);

	$textbuffer-&gt;set_text($extended_description);

	$this-&gt;widget-&gt;show;
	$this-&gt;adddescription;
	$this-&gt;addwidget($this-&gt;widget);
}


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