summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive_newt.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-02-23 23:36:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-02-23 23:36:16 +0000
commit591eeb315e38e0bdf13b5a965dd9fe132a811a46 (patch)
tree4e98161911b40f1648357cd0452a1164d16de655 /perl-install/interactive_newt.pm
parent18aff6d028be2477bf60c5236f7955f8c64350a1 (diff)
downloaddrakx-backup-do-not-use-591eeb315e38e0bdf13b5a965dd9fe132a811a46.tar
drakx-backup-do-not-use-591eeb315e38e0bdf13b5a965dd9fe132a811a46.tar.gz
drakx-backup-do-not-use-591eeb315e38e0bdf13b5a965dd9fe132a811a46.tar.bz2
drakx-backup-do-not-use-591eeb315e38e0bdf13b5a965dd9fe132a811a46.tar.xz
drakx-backup-do-not-use-591eeb315e38e0bdf13b5a965dd9fe132a811a46.zip
- use simplify_string to ensure multi-line and too long strings are not used
(hacky, but no other solution) - set $::setstep like interactive_gtk is doing (??)
Diffstat (limited to 'perl-install/interactive_newt.pm')
-rw-r--r--perl-install/interactive_newt.pm23
1 files changed, 18 insertions, 5 deletions
diff --git a/perl-install/interactive_newt.pm b/perl-install/interactive_newt.pm
index b5b167fb3..431a39930 100644
--- a/perl-install/interactive_newt.pm
+++ b/perl-install/interactive_newt.pm
@@ -102,7 +102,7 @@ sub ask_fromW {
$set = sub { $w->CheckboxSetValue(checkval($_[0])) };
$get = sub { $w->CheckboxGetValue == ord '*' };
} elsif ($e->{type} eq 'button') {
- $w = Newt::Component::Button(-1, -1, may_apply($e->{format}, ${$e->{val}}));
+ $w = Newt::Component::Button(-1, -1, simplify_string(may_apply($e->{format}, ${$e->{val}})));
} elsif ($e->{type} =~ /list/) {
my ($h, $wi) = (@$l == 1 && $height > 30 ? 10 : 5, 20);
my $scroll = @{$e->{list}} > $h ? 1 << 2 : 0;
@@ -110,7 +110,7 @@ sub ask_fromW {
$w = Newt::Component::Listbox(-1, -1, $h, $scroll); #- NEWT_FLAG_SCROLL
foreach (@{$e->{list}}) {
- my $t = may_apply($e->{format}, $_);
+ my $t = simplify_string(may_apply($e->{format}, $_));
$w->ListboxAddEntry($t, $_);
$wi = max($wi, length $t);
}
@@ -167,7 +167,8 @@ sub ask_fromW {
$grid;
}
};
- my ($buttons, $ok, $cancel) = Newt::Grid::ButtonBar($common->{ok} || _("Ok"), if_($common->{cancel}, $common->{cancel}));
+ my ($buttons, $ok, $cancel) = Newt::Grid::ButtonBar(simplify_string($common->{ok} || _("Ok")),
+ if_($common->{cancel}, simplify_string($common->{cancel})));
my $form = Newt::Component::Form(\undef, '', 0);
my $window = Newt::Grid::GridBasicWindow(first(myTextbox(@widgets == 0, @{$common->{messages}})), $listg, $buttons);
@@ -188,13 +189,19 @@ sub ask_fromW {
my ($destroyed, $canceled);
do {
- my $r = $form->RunForm;
+ my $r = do {
+ local $::setstep = 1;
+ $form->RunForm;
+ };
foreach (@widgets) {
if ($$r == ${$_->{w}}) {
$destroyed = 1;
$form->FormDestroy;
Newt::PopWindow;
- my $v = $_->{e}{clicked_may_quit}();
+ my $v = do {
+ local $::setstep = 1;
+ $_->{e}{clicked_may_quit}();
+ };
$v or return ask_fromW($o, $common, $l, $l2);
}
}
@@ -241,5 +248,11 @@ sub wait_message_endW {
Newt::PopWindow;
}
+sub simplify_string {
+ my ($s) = @_;
+ $s =~ s/\n/ /g;
+ $s = substr($s, 0, 40); #- truncate if too long
+ $s;
+}
1;