diff options
author | Sebastien Dupont <sdupont@mandriva.com> | 2001-12-10 09:50:04 +0000 |
---|---|---|
committer | Sebastien Dupont <sdupont@mandriva.com> | 2001-12-10 09:50:04 +0000 |
commit | 6519c8866b3df6293abe17775f7210ca9606f321 (patch) | |
tree | d15f03028345319ab4b3a1149195d57dc1fdab47 /perl-install | |
parent | b47d1740de5fcd93b39dddf5c8f7793269000493 (diff) | |
download | drakx-6519c8866b3df6293abe17775f7210ca9606f321.tar drakx-6519c8866b3df6293abe17775f7210ca9606f321.tar.gz drakx-6519c8866b3df6293abe17775f7210ca9606f321.tar.bz2 drakx-6519c8866b3df6293abe17775f7210ca9606f321.tar.xz drakx-6519c8866b3df6293abe17775f7210ca9606f321.zip |
restore button box step 2
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakbackup | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 7bff2aa58..57ee04105 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1195,30 +1195,32 @@ sub restore_step_sys { sub restore_step2 { my $retore_step2; - gtkpack($retore_box2, + + + gtkpack($advanced_box, $retore_step2 = gtkpack_(new Gtk::VBox(0,10), 1, new Gtk::VBox(0,10), 0, my $check_restore_sys = new Gtk::CheckButton(_("Restore system")), 0, my $check_restore_user = new Gtk::CheckButton(_("Restore Users")), 0, my $check_restore_other = new Gtk::CheckButton(_("Restore Other")), 1, new Gtk::VBox(0,10), - 0, gtkpack_(new Gtk::HBox(0,10), - 1, new Gtk::VBox(0,10), - 0, gtksignal_connect(new Gtk::Button(_(" Next ")), clicked => sub { - ${$central_widget}->destroy(); - if ($restore_sys && $backup_sys_cvs) { restore_step_sys(); } - elsif ($restore_user) { restore_step_user();} - elsif ($restore_other){ restore_step_other();} - else{ do_restore();} - }), - ), +# 0, gtkpack_(new Gtk::HBox(0,10), +# 1, new Gtk::VBox(0,10), +# 0, gtksignal_connect(new Gtk::Button(_(" Next ")), clicked => sub { +# ${$central_widget}->destroy(); +# if ($restore_sys && $backup_sys_cvs) { restore_step_sys(); } +# elsif ($restore_user) { restore_step_user();} +# elsif ($restore_other){ restore_step_other();} +# else{ do_restore();} +# }), +# ), ), ); foreach ([$check_restore_sys, \$restore_sys], [$check_restore_user, \$restore_user], [$check_restore_other, \$restore_other]) { my $ref = $_->[1]; gtksignal_connect(gtkset_active($_->[0], ${$ref}), toggled => sub { ${$ref} = ${$ref} ? 0 : 1; }) } - + restore_button_box(); $central_widget = \$retore_step2; $up_box->show_all(); } @@ -1245,7 +1247,9 @@ sub restore_box { $restore_user = 1; do_restore(); }), 1, gtksignal_connect(new Gtk::Button(_("Custom Restore")), - clicked => sub { $retore_box->destroy(); restore_step2(); }), + clicked => sub { $retore_box->destroy(); + restore_step2(); + }), ), 1, new Gtk::HBox(0,10), ), |