summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-10-26 13:45:11 +0000
committerdamien <damien@mandriva.com>2001-10-26 13:45:11 +0000
commitfa8b5a97281411add271aeaafd8df5ef583d8f1e (patch)
treea4ebc22aa36d985da294c32f759d5990ae9b0f08
parentf491ebbba3c4256b7b358a59516d0225ea7e5436 (diff)
downloaddrakx-backup-do-not-use-fa8b5a97281411add271aeaafd8df5ef583d8f1e.tar
drakx-backup-do-not-use-fa8b5a97281411add271aeaafd8df5ef583d8f1e.tar.gz
drakx-backup-do-not-use-fa8b5a97281411add271aeaafd8df5ef583d8f1e.tar.bz2
drakx-backup-do-not-use-fa8b5a97281411add271aeaafd8df5ef583d8f1e.tar.xz
drakx-backup-do-not-use-fa8b5a97281411add271aeaafd8df5ef583d8f1e.zip
progress bar hack
-rwxr-xr-xperl-install/standalone/drakautoinst16
-rwxr-xr-xperl-install/standalone/drakfont83
2 files changed, 53 insertions, 46 deletions
diff --git a/perl-install/standalone/drakautoinst b/perl-install/standalone/drakautoinst
index 24f8a32e7..cb2edbcb3 100755
--- a/perl-install/standalone/drakautoinst
+++ b/perl-install/standalone/drakautoinst
@@ -78,15 +78,16 @@ my $mountdir = "/root/tmp/drakautoinst-mountdir"; -d $mountdir or mkdir $mountdi
my $floppy = detect_devices::floppy();
my $dev = devices::make($floppy);
$in->ask_okcancel('', _("Insert a blank floppy in drive %s", $floppy), 1) or quit_global($in, 0);
-#{
-# my $w = $in->wait_message('', _("Creating auto install floppy"));
-# commands::dd("if=$imagefile", "of=$dev", "bs=1440", "count=1024");
-# common::sync();
-#}
+{
+ my $w = $in->wait_message('', _("Creating auto install floppy"));
+ commands::dd("if=$imagefile", "of=$dev", "bs=1440", "count=1024");
+ common::sync();
+}
fs::mount($dev, $mountdir, 'vfat', 0);
my $cfgfile = "$mountdir/auto_inst.cfg";
eval(cat_($cfgfile));
my $o_old = $o;
+
if (ref($in) =~ /gtk/) {
require Gtk;
init Gtk;
@@ -126,7 +127,6 @@ if (ref($in) =~ /gtk/) {
member($_, keys %struct_gui) and push @{$tree{$struct_gui{$_}}}, [$_ , $pixmap{$_}, h2widget($o->{$_}, "\$o->\{$_\}") ] foreach (keys %$o);
-
my $W = my_gtk->new(_('$o edition'));
my @box_to_hide;
my $nb_pages=0;
@@ -253,6 +253,7 @@ sub quit_global {
}
+
sub h2widget {
my ($k, $label) = @_;
my $w;
@@ -358,6 +359,9 @@ sub control_buttons {
#-------------------------------------------------
#- $Log$
+#- Revision 1.11 2001/10/26 13:45:11 damien
+#- progress bar hack
+#-
#- Revision 1.10 2001/10/25 11:59:58 damien
#- simple variables handled, code compression.
#-
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont
index 511b31491..00fb2723d 100755
--- a/perl-install/standalone/drakfont
+++ b/perl-install/standalone/drakfont
@@ -156,7 +156,7 @@ foreach my $i (@application) {
# PATH and binary full path
my $xfs_conffile = '/etc/X11/fs/config';
-my $drakfont_dir = '/home/seb/new2_drakfont'; # '/usr/X11R6/lib/X11/fonts/drakfont';
+my $drakfont_dir = '/home/damien/new2_drakfont'; # '/usr/X11R6/lib/X11/fonts/drakfont';
my $ttf2pt1 = '/usr/sbin/ttf2pt1';
my $pfm2afm = '/usr/sbin/pfm2afm';
my $type1inst = '/usr/sbin/type1inst';
@@ -191,8 +191,9 @@ sub list_fontpath {
sub search_installed_fonts {
list_fontpath();
+ $interactive and progress($pbar, 0, _("search installed fonts"));
push @installed_fonts, all($_) foreach @installed_fonts_path;
- $interactive and progress($pbar, 100/3 );
+ $interactive and progress($pbar, 100/3, _("Search fonts in install list"));
}
sub search_installed_fonts_full_path {
@@ -218,7 +219,7 @@ sub search_windows_font {
foreach $_ ([\@list_fonts_win, "windows"], [\@list_fonts_winnt, "winnt"]) {
foreach my $i (@{$_->[0]}) {
if($interactive) {
- if($nb_dir) { progress($pbar, 34/$nb_dir) } else {
+ if($nb_dir) { progress($pbar, 34/$nb_dir, "toto") } else {
display_error(_("no fonts found"));
return 0;
}
@@ -227,7 +228,7 @@ sub search_windows_font {
grep ( /$i$/, @font_list) or push @font_list, "$win_dir/$_->[1]/fonts/$i";
}
}
- $interactive && $nb_dir and progress($pbar, 100/3 );
+ $interactive && $nb_dir and progress($pbar, 100/3, "toto");
}
1;
}
@@ -261,10 +262,8 @@ sub search_dir_font {
!grep /$fn/, (@installed_fonts) and push @font_list, "$fn";
}
}
- print "Fonts in directory " . $dir . " : " . $_ . "\n" foreach (@font_list_tmp);
}
- print ".........................................\n\n";
- print "Font to install : " . $_ . "\n" foreach (@font_list);
+ $interactive and progress($pbar, 2*100/3, _("Search fonts in install list"));
}
sub search_dir_font_uninstall {
@@ -303,22 +302,24 @@ sub put_font_dir {
dir_created();
foreach my $i (@font_list) {
cp_af($i, $drakfont_dir . "/tmp/tmp");
- $interactive and progress($pbar1, 100/@font_list );
+ $interactive and progress($pbar1, 100/@font_list, _("Fonts copy"));
}
system ("cd $drakfont_dir/tmp/tmp && cp *.ttf ../../ttf");
system ("cd $drakfont_dir/ttf && $ttmkfdir > fonts.dir" );
- system ("$chkfontpath -a $drakfont_dir/ttf");
- $interactive and progress($pbar2, 50 );
+ my $restart_xfs = "$chkfontpath -a $drakfont_dir/ttf";
+ $interactive and progress($pbar2, 50, _("True Type fonts installation"));
+# my nb += $_ ?1 : 0 foreach ($so, $gs); #add abiword when implemented
if ($so && $gs) {
foreach my $fontname ( glob ("$drakfont_dir/tmp/tmp/*.ttf") ) {
system ("cd $drakfont_dir/tmp/tmp && $ttf2pt1 -b $fontname");
}
- system ("cd $drakfont_dir/tmp/tmp && mv *.gsf *.pfb *.pfm *.afm ../Type1");
+ system ("cd $drakfont_dir/tmp/tmp && mv *.gsf *.pfb *.pfm *.afm ../Type1");
system ("cd $drakfont_dir/tmp/Type1 && $type1inst" );
system ("cd $drakfont_dir/tmp/Type1 && cat Fontmap >> `rpm -ql ghostscript | grep Fontmap.GS` " );
system ("cd $drakfont_dir/tmp/Type1 && mv *.pfm *.gsf *.afm *.pfb ../../Type1 ");
- system ("cd $drakfont_dir/Type1 && $type1inst && $chkfontpath -a $drakfont_dir/Type1");
+ system ("cd $drakfont_dir/Type1 && $type1inst");
+ $restart_xfs .= "; $chkfontpath -a $drakfont_dir/Type1";
}
if (!$so && $gs) {
foreach my $fontname ( glob ("$/drakfont_dir/tmp/tmp/*.ttf") ) {
@@ -328,7 +329,8 @@ sub put_font_dir {
system ("cd $drakfont_dir/tmp/Type1 && $type1inst" );
system ("cd $drakfont_dir/tmp/Type1 && cat Fontmap >> `rpm -ql ghostscript | grep Fontmap.GS` " );
system ("cd $drakfont_dir/tmp/Type1 && mv *.pfm *.afm *.gsf *.pfb ../../Type1 ");
- system ("cd $drakfont_dir/Type1 && $type1inst && $chkfontpath -a $drakfont_dir/Type1");
+ system ("cd $drakfont_dir/Type1 && $type1inst");
+ $restart_xfs .= "; $chkfontpath -a $drakfont_dir/Type1";
}
if ($so && !$gs) {
foreach my $fontname ( glob ("$drakfont_dir/tmp/tmp/*.ttf") ) {
@@ -339,14 +341,15 @@ sub put_font_dir {
}
system ("cd $drakfont_dir/tmp/tmp && mv *.afm ../Type1");
system ("cd $drakfont_dir/tmp/Type1 && mv *.afm ../../Type1 ");
- system ("cd $drakfont_dir/Type1 && $type1inst && $chkfontpath -a $drakfont_dir/Type1");
+ system ("cd $drakfont_dir/Type1 && $type1inst");
+ $restart_xfs .= "; $chkfontpath -a $drakfont_dir/Type1";
}
- $interactive and progress($pbar2, 50 );
+ $interactive and progress($pbar2, 50, _("Fonts conversion for applications"));
rm_rf("$drakfont_dir/tmp/");
- $interactive and progress($pbar3, 50 );
+ $interactive and progress($pbar3, 50, _("Suppress temporary Files"));
print "\n\nretarting xfs......\n";
- system ("/etc/rc.d/init.d/xfs restart");
- $interactive and progress($pbar3, 50 );
+ system ($restart_xfs);
+ $interactive and progress($pbar3, 50, _("Restart XFS"));
}
}
@@ -422,8 +425,6 @@ sub backend_mod {
print ".......Install Specifics Fonts...........\n\n";
search_installed_fonts();
search_dir_font $_ foreach (@install);
- print "font directory_______ : $_ \n" foreach (@install);
- print ".................................................\n\n";
print "Font to install : " . $_ . "\n" foreach (@font_list);
put_font_dir();
print "\n...............The End...................\n";
@@ -659,16 +660,11 @@ sub font_choice {
sub file_ok_sel {
my ( $widget, $file_selection ) = @_;
my $file_name = $file_selection->get_filename();
- print "nom du rep:".$file_name."\n\n";
-# print "liste complete rep : $_ \n" foreach (@install);
-# print "\n___________\n";
- if (@install) {
- grep( $file_name , @install) or push @install, $file_name && $list->add(gtkshow(new Gtk::ListItem($file_name)));
- }
- else {
- push @install, $file_name && $list->add(gtkshow(new Gtk::ListItem($file_name)));
+ print "-- @install\n";
+ if(!member($file_name, @install)) {
+ push(@install, $file_name);
+ $list->add(gtkshow(new Gtk::ListItem($file_name)));
}
-# print ("$file_name\n");
}
sub list_remove {
@@ -711,16 +707,20 @@ sub import_status {
my $adj2 = new Gtk::Adjustment( 0, 1, 100, 0, 0, 0 );
my $adj3 = new Gtk::Adjustment( 0, 1, 100, 0, 0, 0 );
my $table;
+ $pbar = new_with_adjustment Gtk::ProgressBar($adj);
+ $pbar1 = new_with_adjustment Gtk::ProgressBar($adj1);
+ $pbar2 = new_with_adjustment Gtk::ProgressBar($adj2);
+ $pbar3 = new_with_adjustment Gtk::ProgressBar($adj3);
gtkpack($font_box,
$table = create_packtable({ col_spacings => 10, row_spacings => 2},
- [ " ", $label1 = new Gtk::Label(' ' ), ' '],
- [_("Initial tests"), $pbar = new_with_adjustment Gtk::ProgressBar($adj), ' '],
- [ " ", $label2 = new Gtk::Label(' ' ), ' '],
- [_("Copy all fonts on your system"), $pbar1 = new_with_adjustment Gtk::ProgressBar($adj1), ' '],
- [ " ", $label3 = new Gtk::Label(' ' ), ' '],
- [_("Install & convert Fonts"), $pbar2 = new_with_adjustment Gtk::ProgressBar($adj2), ' '],
- [ " ", $label4 = new Gtk::Label(' ' ), ' '],
- [_("Post Install"), $pbar3 = new_with_adjustment Gtk::ProgressBar($adj3), ' '],
+ [ " ", $pbar->{label} = new Gtk::Label(' ' ), ' '],
+ [_("Initial tests"), $pbar, ' '],
+ [ " ", $pbar1->{label} = new Gtk::Label(' ' ), ' '],
+ [_("Copy all fonts on your system"), $pbar1, ' '],
+ [ " ", $pbar2->{label} = new Gtk::Label(' ' ), ' '],
+ [_("Install & convert Fonts"), $pbar2, ' '],
+ [ " ", $pbar3->{label} = new Gtk::Label(' ' ), ' '],
+ [_("Post Install"), $pbar3, ' '],
),
# $table = create_packtable({ col_spacings => 10, row_spacings => 2},
# [ " ", $label1 = new Gtk::Label(' ' )],
@@ -735,22 +735,25 @@ sub import_status {
);
$central_widget = \$table;
$font_box->show_all();
- progress($pbar, 0.1 );
+ progress($pbar, 0.1, "toto");
# my $timer = Gtk->timeout_add( 5, \&progress_timeout );
# my $timer1 = Gtk->timeout_add( 10, \&progress_timeout1 );
# my $timer2 = Gtk->timeout_add( 15, \&progress_timeout2 );
# my $timer3 = Gtk->timeout_add( 20, \&progress_timeout3 );
+ Gtk->main_iteration while Gtk->events_pending;
backend_mod();
}
sub progress {
- my ($bar, $incr) = @_;
+ my ($bar, $incr, $label_text) = @_;
my $new_val;
my $adjt;
$new_val = $pbar->get_value() + $incr;
$adjt = $bar->adjustment;
- $bar->set_value( $new_val );
+ $bar->set_value($new_val);
+ $bar->{label}->set($label_text);
# $new_val < 100 || gtkset_active($check1 , 1);
+ Gtk->main_iteration while Gtk->events_pending;
$new_val < 100 ;
}