summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/hd_gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-15 22:21:02 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-15 22:21:02 +0000
commit8e187d972ed59909271d48915eef4af34e7fe068 (patch)
tree9ab1cf4bc2778f42890caed92633da632050120a /perl-install/diskdrake/hd_gtk.pm
parent09d1e8cecc0385d694818ddc6cca3d26fabaff23 (diff)
downloaddrakx-backup-do-not-use-8e187d972ed59909271d48915eef4af34e7fe068.tar
drakx-backup-do-not-use-8e187d972ed59909271d48915eef4af34e7fe068.tar.gz
drakx-backup-do-not-use-8e187d972ed59909271d48915eef4af34e7fe068.tar.bz2
drakx-backup-do-not-use-8e187d972ed59909271d48915eef4af34e7fe068.tar.xz
drakx-backup-do-not-use-8e187d972ed59909271d48915eef4af34e7fe068.zip
split button bars into 3 bars
Diffstat (limited to 'perl-install/diskdrake/hd_gtk.pm')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm16
1 files changed, 11 insertions, 5 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index dbccf5cdb..2c85fae9a 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -70,7 +70,8 @@ sub main {
width => mygtk2::get_label_width()
),
1, (my $notebook_widget = Gtk2::Notebook->new),
- 0, (my $per_kind_action_box = Gtk2::HBox->new(0,0)),
+ 0, (my $per_kind_action_box = gtknew('HButtonBox', layout => 'edge')),
+ 0, (my $per_kind_action_box2 = gtknew('HButtonBox', layout => 'end')),
0, (my $general_action_box = gtknew('HButtonBox', spacing => 5, layout => 'spread')),
),
);
@@ -84,7 +85,7 @@ sub main {
partition_table::assign_device_numbers($_) foreach fs::get::hds($all_hds);
create_automatic_notebooks($notebook_widget);
general_action_box($general_action_box);
- per_kind_action_box($per_kind_action_box, $current_kind);
+ per_kind_action_box($per_kind_action_box, $per_kind_action_box2, $current_kind);
current_kind_changed($in, $current_kind);
current_entry_changed($current_kind, $current_entry);
$lock = 0;
@@ -184,16 +185,21 @@ sub general_action_box {
}
}
sub per_kind_action_box {
- my ($box, $kind) = @_;
- $_->destroy foreach $box->get_children;
+ my ($box, $box2, $kind) = @_;
+ $_->destroy foreach $box->get_children, $box2->get_children;
$kind->{type} =~ /hd|lvm/ or return;
- foreach my $s (diskdrake::interactive::hd_possible_actions($in, kind2hd($kind), $all_hds)) {
+ foreach my $s (diskdrake::interactive::hd_possible_actions_base($in, kind2hd($kind), $all_hds)) {
gtkadd($box,
gtksignal_connect(Gtk2::Button->new(translate($s)),
clicked => sub { try($s, kind2hd($kind)) }));
}
+ foreach my $s (diskdrake::interactive::hd_possible_actions_extra($in, kind2hd($kind), $all_hds)) {
+ gtkadd($box2,
+ gtksignal_connect(Gtk2::Button->new(translate($s)),
+ clicked => sub { try($s, kind2hd($kind)) }));
+ }
}
sub per_entry_action_box {
my ($box, $kind, $entry) = @_;