From fad0259fb304e54cedebb7f389d5cd99f643d0db Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Sat, 17 Oct 2009 19:51:44 +0000 Subject: - partitioning wizard: o add legend for the colors o display mount point if known o display ext2 like ext3/4 --- perl-install/fs/partitioning_wizard.pm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'perl-install/fs') diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 43d648edf..99c04acc5 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -301,9 +301,9 @@ sub create_display_box { $last = $resize->[-1] if $resize; foreach my $entry (@parts) { - my $info = $entry->{device_LABEL}; + my $info = $entry->{mntpoint} || $entry->{device_LABEL}; my $w = Gtk2::Label->new($info); - my @colorized_fs_types = qw(ext3 ext4 xfs swap vfat ntfs ntfs-3g); + my @colorized_fs_types = qw(ext2 ext3 ext4 xfs swap vfat ntfs ntfs-3g); $ev = Gtk2::EventBox->new; $ev->add($w); my $part; @@ -391,6 +391,20 @@ sub create_display_box { ugtk2::gtkpack__($display_box, $ev); } $display_box->remove($ev); + unless($resize || $fill_empty) { + my @types = (N_("Ext2/3/4"), N_("XFS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("Windows"), + N_("Other"), N_("Empty")); + my %name2fs_type = ('Ext2/3/4' => 'ext3', 'XFS' => 'xfs', Swap => 'swap', Other => 'other', "Windows" => 'vfat', HFS => 'hfs'); + $desc = ugtk2::gtkpack(Gtk2::HBox->new(), + map { + my $t = $name2fs_type{$_}; + my $ev = Gtk2::EventBox->new; + my $w = Gtk2::Label->new(translate($_)); + $ev->add($w); + $ev->set_name('PART_' . ($t || 'empty')); + $ev; + } @types); + } $vbox->add($display_box); $vbox->add($desc) if $desc; -- cgit v1.2.1