diff options
Diffstat (limited to 'perl-install/install_steps_newt.pm')
-rw-r--r-- | perl-install/install_steps_newt.pm | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/perl-install/install_steps_newt.pm b/perl-install/install_steps_newt.pm deleted file mode 100644 index ba8f7ba0c..000000000 --- a/perl-install/install_steps_newt.pm +++ /dev/null @@ -1,55 +0,0 @@ -package install_steps_newt; # $Id$ - -use diagnostics; -use strict; -use vars qw(@ISA); - -@ISA = qw(install_steps_interactive interactive::newt); - -#-###################################################################################### -#- misc imports -#-###################################################################################### -use install_steps_interactive; -use interactive::newt; -use install_any; -use devices; -use lang; -use common; - -sub banner { - my $banner = translate(N_("Mandrakelinux Installation %s")); - my $l = first(Newt::GetScreenSize()) - length($banner) - length($_[0]) + 1; - Newt::DrawRootText(0, 0, sprintf($banner, ' ' x $l . $_[0])); - Newt::Refresh(); -} - -sub new { - my ($type, $o) = @_; - - interactive::newt->new; - - banner(''); -#-PO This string must fit in a 80-char wide text screen - Newt::PushHelpLine(N(" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen ")); - - (bless {}, ref($type) || $type)->SUPER::new($o); -} - -sub charsetChanged { - my ($o) = @_; - lang::load_console_font($o->{locale}); -} - -sub enteringStep { - my ($o, $step) = @_; - $o->SUPER::enteringStep($step); - banner(translate($o->{steps}{$step}{text})); -} - -sub exitInstall { - &install_steps_interactive::exitInstall; - interactive::newt::end(); -} - -1; - |