OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl5
/
Debconf
/
Element
/
Gnome
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/21/2019 03:48:56 PM
rwxr-xr-x
📄
Boolean.pm
684 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Error.pm
1.14 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Multiselect.pm
2.42 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Note.pm
1.05 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Password.pm
580 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Progress.pm
1.09 KB
05/06/2019 04:30:30 PM
rw-r--r--
📄
Select.pm
974 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
String.pm
649 bytes
05/06/2019 04:30:30 PM
rw-r--r--
📄
Text.pm
290 bytes
05/06/2019 04:30:30 PM
rw-r--r--
Editing: Error.pm
Close
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Element::Gnome::Error; use strict; use Debconf::Gettext; use Gtk3; use utf8; use Debconf::Encoding qw(to_Unicode); use base qw(Debconf::Element::Gnome); sub init { my $this=shift; my $extended_description = to_Unicode($this->question->extended_description); $this->SUPER::init(@_); $this->multiline(1); $this->fill(1); $this->expand(1); $this->widget(Gtk3::HBox->new(0, 0)); my $image = Gtk3::Image->new_from_stock("gtk-dialog-error", "dialog"); $image->show; my $text = Gtk3::TextView->new(); my $textbuffer = $text->get_buffer; $text->show; $text->set_wrap_mode ("word"); $text->set_editable (0); my $scrolled_window = Gtk3::ScrolledWindow->new(); $scrolled_window->show; $scrolled_window->set_policy('automatic', 'automatic'); $scrolled_window->set_shadow_type('in'); $scrolled_window->add ($text); $this->widget->show; $this->widget->pack_start($image, 0, 0, 6); $this->widget->pack_start($scrolled_window, 1, 1, 0); $textbuffer->set_text($extended_description); $this->widget->show; $this->adddescription; $this->addwidget($this->widget); } 1