diff options
author | damien <damien@mandriva.com> | 2001-07-31 16:29:32 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-07-31 16:29:32 +0000 |
commit | 2e840a4d0d2d7342f094737019277d85421680fd (patch) | |
tree | 6c0ca139394e6f983e642533acb428a227df694b /perl-install/network/netconnect.pm | |
parent | 6eb0d043a315fec34895401b09301770b26204eb (diff) | |
download | drakx-2e840a4d0d2d7342f094737019277d85421680fd.tar drakx-2e840a4d0d2d7342f094737019277d85421680fd.tar.gz drakx-2e840a4d0d2d7342f094737019277d85421680fd.tar.bz2 drakx-2e840a4d0d2d7342f094737019277d85421680fd.tar.xz drakx-2e840a4d0d2d7342f094737019277d85421680fd.zip |
added splash screen between different configurations. Added splash wizard mode
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 4a4e7dbad..676b02711 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -159,7 +159,7 @@ ifdown eth0 my $i=0; map { defined $set_default or do { $_->[1] and $set_default=$i; }; $i++; } @l; my $e = $in->ask_from_entries_refH(_("Network Configuration Wizard"), - _("Choose"), + _("Choose the connection you want to configure"), [ map { { label => $_->[0] . if_($_->[1], " - " . _ ($_->[2], $_->[1])), @@ -171,8 +171,27 @@ ifdown eth0 my $pre_func = sub { $::Wizard_no_previous=1; - #$_[0] is the type of connection of the list: (modem, isdn, adsl, cable, local network); - $in->ask_okcancel(_("Network Configuration"), _("\n\n\nWe are now going to configure the %s connection.\n\n\nPress next to begin.",_($_[0])), 1); + if (ref($in) =~ /gtk/) { + $::Wizard_splash=1; + require my_gtk; + my_gtk->import(qw(:wrappers)); + my $W = my_gtk->new(_("Network Configuration Wizard")); + gtkadd($W->{window}, + gtkpack_(new Gtk::VBox(0, 0), + 1, write_on_pixmap(gtkpng ("draknet_step"), + 20,60, + _("We are now going to configure the %s connection.",_($_[0])), + _("Press next to begin."), + ), + 0, $W->create_okcancel + ) + ); + $W->main; + $::Wizard_splash=0; + } else { + #- for i18n : %s is the type of connection of the list: (modem, isdn, adsl, cable, local network); + $in->ask_okcancel(_("Network Configuration Wizard"), _("\n\n\nWe are now going to configure the %s connection.\n\n\nPress next to begin.",_($_[0])), 1); + } undef $::Wizard_no_previous; }; $conf{modem} and do { &$pre_func("modem"); require network::modem; network::modem::configure($netcnx, $mouse, $netc) or goto step_2 }; @@ -202,7 +221,7 @@ ifdown eth0 my $m = _("Congratulation, The network and internet configuration is finished. -The configuration will now be applied to your system.") . if_($::isStandalone, +The configuration will now be applied to your system.\n") . if_($::isStandalone, _("After that is done, we recommend you to restart your X environnement to avoid hostname changing problem.")); if ($::isWizard) { |