summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-02-15 16:36:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-02-15 16:36:47 +0000
commit770daeb5d2b473d50d67b4e9423c2e914aed718b (patch)
tree13a3bc7061ef806d71406238b079fc1247450f4e /perl-install/interactive
parent3758e9d2c6ffe12820ceba5e35fdf5f1173108ad (diff)
downloaddrakx-backup-do-not-use-770daeb5d2b473d50d67b4e9423c2e914aed718b.tar
drakx-backup-do-not-use-770daeb5d2b473d50d67b4e9423c2e914aed718b.tar.gz
drakx-backup-do-not-use-770daeb5d2b473d50d67b4e9423c2e914aed718b.tar.bz2
drakx-backup-do-not-use-770daeb5d2b473d50d67b4e9423c2e914aed718b.tar.xz
drakx-backup-do-not-use-770daeb5d2b473d50d67b4e9423c2e914aed718b.zip
create ->ask_filename and ->ask_directory to replace ->ask_file
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/gtk.pm16
1 files changed, 11 insertions, 5 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index c55a5f41c..d29c2df9b 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -24,11 +24,17 @@ sub leave_console { my ($o) = @_; common::setVirtual(delete $o->{suspended}) }
sub exit { ugtk2::exit(@_) }
sub ask_fileW {
- my ($_o, $title, $dir) = @_;
- my $w = ugtk2->new($title);
- $dir .= '/' if $dir !~ m|/$|;
- ugtk2::_ask_file($w, $title, $dir);
- $w->main;
+ my ($in, $common) = @_;
+
+ my $w = ugtk2::create_file_selector(%$common);
+
+ my $file;
+ $w->main(sub {
+ $file = $w->{chooser}->get_filename;
+ my $err = ugtk2::file_selected_check($common->{save}, $common->{want_a_dir}, $file);
+ $err and $in->ask_warn('', $err);
+ !$err;
+ }) && $file;
}
sub create_boxradio {