Apache/2.4.7 (Ubuntu) Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) safemode : OFF MySQL: ON | Perl: ON | cURL: OFF | WGet: ON > / usr / share / perl5 / Debconf / FrontEnd / | server ip : 104.21.89.46 your ip : 172.69.214.34 H O M E |
Filename | /usr/share/perl5/Debconf/FrontEnd/Gnome.pm |
Size | 5.13 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 27-Apr-2025 09:50 |
Last modified | 23-Feb-2014 22:30 |
Last accessed | 07-Jul-2025 02:34 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
package Debconf::FrontEnd::Gnome;
use strict;
use utf8;
use Debconf::Gettext;
use Debconf::Config;
use Debconf::Encoding qw(to_Unicode);
use base qw{Debconf::FrontEnd};
our @ARGV_for_gnome=('--sm-disable');
sub create_assistant_page {
my $this=shift;
$this->assistant_page(Gtk2::VBox->new);
$this->assistant->append_page($this->assistant_page);
if ($this->logo) {
$this->assistant->set_page_header_image($this->assistant_page, $this->logo);
}
$this->configure_assistant_page;
$this->assistant_page->show_all;
}
sub configure_assistant_page {
my $this=shift;
$this->assistant->set_page_title($this->assistant_page, to_Unicode($this->title));
if ($this->capb_backup) {
$this->assistant->set_page_type($this->assistant_page, 'content');
} else {
$this->assistant->set_page_type($this->assistant_page, 'intro');
}
$this->assistant->set_page_complete($this->assistant_page, 1);
}
sub reset_assistant_page {
my $this=shift;
$this->assistant_page($this->assistant->get_nth_page($this->assistant->get_current_page));
foreach my $element ($this->assistant_page->get_children) {
$this->assistant_page->remove($element);
}
}
my $prev_page = 0;
sub prepare_callback {
my ($assistant, $page, $this) = @_;
my $current_page = $assistant->get_current_page;
if ($prev_page < $current_page) {
$this->goback(0);
if (Gtk2->main_level) {
Gtk2->main_quit;
}
} elsif ($prev_page > $current_page) {
$this->goback(1);
if (Gtk2->main_level) {
Gtk2->main_quit;
}
}
$prev_page = $current_page;
}
sub forward_page_func {
my ($current_page, $assistant) = @_;
if ($current_page == $assistant->get_n_pages - 1) {
return 0;
} else {
return $current_page + 1;
}
}
sub init {
my $this=shift;
if (fork) {
wait(); # for child
if ($? != 0) {
die "DISPLAY problem?\n";
}
}
else {
use Gtk2;
@ARGV=@ARGV_for_gnome; # temporary change at first
Gtk2->init;
my $window = Gtk2::Window->new('toplevel');
exit(0); # success
}
eval q{use Gtk2;};
die "Unable to load Gtk -- is libgtk2-perl installed?\n" if $@;
my @gnome_sucks=@ARGV;
@ARGV=@ARGV_for_gnome;
Gtk2->init;
@ARGV=@gnome_sucks;
$this->SUPER::init(@_);
$this->interactive(1);
$this->capb('backup');
$this->need_tty(0);
$this->assistant(Gtk2::Assistant->new);
$this->assistant->set_position("center");
$this->assistant->set_default_size(600, 400);
my $hostname = `hostname`;
chomp $hostname;
$this->assistant->set_title(to_Unicode(sprintf(gettext("Debconf on %s"), $hostname)));
$this->assistant->signal_connect("delete_event", sub { exit 1 });
my $distribution='';
if (system('type lsb_release >/dev/null 2>&1') == 0) {
$distribution=lc(`lsb_release -is`);
chomp $distribution;
} elsif (-e '/etc/debian_version') {
$distribution='debian';
}
my $logo="/usr/share/pixmaps/$distribution-logo.png";
if (-e $logo) {
$this->logo(Gtk2::Gdk::Pixbuf->new_from_file($logo));
}
$this->assistant->signal_connect("cancel", sub { exit 1 });
$this->assistant->signal_connect("close", sub { exit 1 });
$this->assistant->signal_connect("prepare", \&prepare_callback, $this);
$this->assistant->set_forward_page_func(\&forward_page_func, $this->assistant);
$this->create_assistant_page();
$this->assistant->signal_connect("realize", sub {
$this->assistant->window->set_functions(["resize","move","maximize"])
});
$this->assistant->get_cancel_button->signal_connect("show", sub {
$this->assistant->get_cancel_button->hide
});
$this->assistant->show;
$this->assistant->get_cancel_button->hide;
}
sub go {
my $this=shift;
my @elements=@{$this->elements};
$this->reset_assistant_page;
my $interactive='';
foreach my $element (@elements) {
next unless $element->hbox;
$interactive=1;
$this->assistant_page->pack_start($element->hbox, $element->fill, $element->expand, 0);
}
if ($interactive) {
$this->configure_assistant_page;
if ($this->assistant->get_current_page == $this->assistant->get_n_pages - 1) {
$this->create_assistant_page();
}
Gtk2->main;
}
foreach my $element (@elements) {
$element->show;
}
return '' if $this->goback;
return 1;
}
sub progress_start {
my $this=shift;
$this->SUPER::progress_start(@_);
$this->reset_assistant_page;
my $element=$this->progress_bar;
$this->assistant_page->pack_start($element->hbox, $element->fill, $element->expand, 0);
$this->configure_assistant_page;
$this->assistant->set_page_complete($this->assistant_page, 0);
$this->assistant->show_all;
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
}
sub progress_set {
my $this=shift;
my $ret=$this->SUPER::progress_set(@_);
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
return $ret;
}
sub progress_info {
my $this=shift;
my $ret=$this->SUPER::progress_info(@_);
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
return $ret;
}
sub progress_stop {
my $this=shift;
$this->SUPER::progress_stop(@_);
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
if ($this->assistant->get_current_page == $this->assistant->get_n_pages - 1) {
$this->create_assistant_page();
}
$this->assistant->set_current_page($prev_page + 1);
}
1
# This file was preprocessed, do not edit!
package Debconf::FrontEnd::Gnome;
use strict;
use utf8;
use Debconf::Gettext;
use Debconf::Config;
use Debconf::Encoding qw(to_Unicode);
use base qw{Debconf::FrontEnd};
our @ARGV_for_gnome=('--sm-disable');
sub create_assistant_page {
my $this=shift;
$this->assistant_page(Gtk2::VBox->new);
$this->assistant->append_page($this->assistant_page);
if ($this->logo) {
$this->assistant->set_page_header_image($this->assistant_page, $this->logo);
}
$this->configure_assistant_page;
$this->assistant_page->show_all;
}
sub configure_assistant_page {
my $this=shift;
$this->assistant->set_page_title($this->assistant_page, to_Unicode($this->title));
if ($this->capb_backup) {
$this->assistant->set_page_type($this->assistant_page, 'content');
} else {
$this->assistant->set_page_type($this->assistant_page, 'intro');
}
$this->assistant->set_page_complete($this->assistant_page, 1);
}
sub reset_assistant_page {
my $this=shift;
$this->assistant_page($this->assistant->get_nth_page($this->assistant->get_current_page));
foreach my $element ($this->assistant_page->get_children) {
$this->assistant_page->remove($element);
}
}
my $prev_page = 0;
sub prepare_callback {
my ($assistant, $page, $this) = @_;
my $current_page = $assistant->get_current_page;
if ($prev_page < $current_page) {
$this->goback(0);
if (Gtk2->main_level) {
Gtk2->main_quit;
}
} elsif ($prev_page > $current_page) {
$this->goback(1);
if (Gtk2->main_level) {
Gtk2->main_quit;
}
}
$prev_page = $current_page;
}
sub forward_page_func {
my ($current_page, $assistant) = @_;
if ($current_page == $assistant->get_n_pages - 1) {
return 0;
} else {
return $current_page + 1;
}
}
sub init {
my $this=shift;
if (fork) {
wait(); # for child
if ($? != 0) {
die "DISPLAY problem?\n";
}
}
else {
use Gtk2;
@ARGV=@ARGV_for_gnome; # temporary change at first
Gtk2->init;
my $window = Gtk2::Window->new('toplevel');
exit(0); # success
}
eval q{use Gtk2;};
die "Unable to load Gtk -- is libgtk2-perl installed?\n" if $@;
my @gnome_sucks=@ARGV;
@ARGV=@ARGV_for_gnome;
Gtk2->init;
@ARGV=@gnome_sucks;
$this->SUPER::init(@_);
$this->interactive(1);
$this->capb('backup');
$this->need_tty(0);
$this->assistant(Gtk2::Assistant->new);
$this->assistant->set_position("center");
$this->assistant->set_default_size(600, 400);
my $hostname = `hostname`;
chomp $hostname;
$this->assistant->set_title(to_Unicode(sprintf(gettext("Debconf on %s"), $hostname)));
$this->assistant->signal_connect("delete_event", sub { exit 1 });
my $distribution='';
if (system('type lsb_release >/dev/null 2>&1') == 0) {
$distribution=lc(`lsb_release -is`);
chomp $distribution;
} elsif (-e '/etc/debian_version') {
$distribution='debian';
}
my $logo="/usr/share/pixmaps/$distribution-logo.png";
if (-e $logo) {
$this->logo(Gtk2::Gdk::Pixbuf->new_from_file($logo));
}
$this->assistant->signal_connect("cancel", sub { exit 1 });
$this->assistant->signal_connect("close", sub { exit 1 });
$this->assistant->signal_connect("prepare", \&prepare_callback, $this);
$this->assistant->set_forward_page_func(\&forward_page_func, $this->assistant);
$this->create_assistant_page();
$this->assistant->signal_connect("realize", sub {
$this->assistant->window->set_functions(["resize","move","maximize"])
});
$this->assistant->get_cancel_button->signal_connect("show", sub {
$this->assistant->get_cancel_button->hide
});
$this->assistant->show;
$this->assistant->get_cancel_button->hide;
}
sub go {
my $this=shift;
my @elements=@{$this->elements};
$this->reset_assistant_page;
my $interactive='';
foreach my $element (@elements) {
next unless $element->hbox;
$interactive=1;
$this->assistant_page->pack_start($element->hbox, $element->fill, $element->expand, 0);
}
if ($interactive) {
$this->configure_assistant_page;
if ($this->assistant->get_current_page == $this->assistant->get_n_pages - 1) {
$this->create_assistant_page();
}
Gtk2->main;
}
foreach my $element (@elements) {
$element->show;
}
return '' if $this->goback;
return 1;
}
sub progress_start {
my $this=shift;
$this->SUPER::progress_start(@_);
$this->reset_assistant_page;
my $element=$this->progress_bar;
$this->assistant_page->pack_start($element->hbox, $element->fill, $element->expand, 0);
$this->configure_assistant_page;
$this->assistant->set_page_complete($this->assistant_page, 0);
$this->assistant->show_all;
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
}
sub progress_set {
my $this=shift;
my $ret=$this->SUPER::progress_set(@_);
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
return $ret;
}
sub progress_info {
my $this=shift;
my $ret=$this->SUPER::progress_info(@_);
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
return $ret;
}
sub progress_stop {
my $this=shift;
$this->SUPER::progress_stop(@_);
while (Gtk2->events_pending) {
Gtk2->main_iteration;
}
if ($this->assistant->get_current_page == $this->assistant->get_n_pages - 1) {
$this->create_assistant_page();
}
$this->assistant->set_current_page($prev_page + 1);
}
1