summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-09-10 04:23:55 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-09-10 04:23:55 +0000
commit9193eecc5903c49ba45484a4523134526879d1ec (patch)
treec9e59276157cb325e9c11dbae7aa13725f3433cf /perl-install/ugtk2.pm
parent67376ed2a30600ffde62df3c5342da9ba0f8ecff (diff)
downloaddrakx-backup-do-not-use-9193eecc5903c49ba45484a4523134526879d1ec.tar
drakx-backup-do-not-use-9193eecc5903c49ba45484a4523134526879d1ec.tar.gz
drakx-backup-do-not-use-9193eecc5903c49ba45484a4523134526879d1ec.tar.bz2
drakx-backup-do-not-use-9193eecc5903c49ba45484a4523134526879d1ec.tar.xz
drakx-backup-do-not-use-9193eecc5903c49ba45484a4523134526879d1ec.zip
create_box_with_title():
- introduce the ugly $o->{box_allow_grow} - cleanup the usage
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 7edd1aab8..3c9b32e64 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -304,16 +304,16 @@ sub n_line_size {
}
sub create_box_with_title {
- my $o = shift;
+ my ($o, @l) = @_;
- my $nbline = sum(map { round(length($_) / 60 + 1/2) } map { split "\n" } @_);
+ my $nbline = sum(map { round(length($_) / 60 + 1/2) } map { split "\n" } @l);
my $box = Gtk2::VBox->new(0,0);
if ($nbline == 0) {
$o->{box_size} = 0;
return $box;
}
$o->{box_size} = n_line_size($nbline, 'text', $box);
- if (@_ <= 2 && $nbline > 4) {
+ if (@l <= 2 && $nbline > 4) {
$o->{icon} && !$::isWizard and
eval { gtkpack__($box, gtkset_border_width(gtkpack_(Gtk2::HBox->new(0,0), 1, gtkcreate_img($o->{icon})),5)) };
my $wanted = $o->{box_size};
@@ -324,7 +324,7 @@ sub create_box_with_title {
$wtext->set_left_margin(3);
$wtext->can_focus($has_scroll);
$wtext->signal_connect(button_press_event => sub { 1 }); #- disable selecting text and popping the contextual menu (GUI team says it's *horrible* to be able to do select text!)
- chomp(my $text = join("\n", @_));
+ chomp(my $text = join("\n", @l));
my $scroll = create_scrolled_window(gtktext_insert($wtext, $text));
my $width = 400;
$scroll->signal_connect(realize => sub {
@@ -335,7 +335,7 @@ sub create_box_with_title {
$o->{rwindow}->queue_resize;
});
$scroll->set_size_request($width, 200);
- gtkpack_($box, 0, $scroll);
+ gtkpack_($box, $o->{box_allow_grow} || 0, $scroll);
} else {
my $a = !$::no_separator;
undef $::no_separator;
@@ -356,7 +356,7 @@ sub create_box_with_title {
my $w = $new_label->($_);
$::isWizard and $w->set_justify("left");
(0, $w);
- } @_),
+ } @l),
1, Gtk2::HBox->new(0,0),
)
),
@@ -369,7 +369,7 @@ sub create_box_with_title {
my $w = $new_label->($_);
$::isWizard ? gtkpack__(Gtk2::HBox->new(0,0), gtkset_size_request(Gtk2::Label->new, 20, 0), $w)
: $w
- } @_),
+ } @l),
if_($::isWizard, gtkset_size_request(Gtk2::Label->new, 0, 15)),
if_($a, Gtk2::HSeparator->new)
)