From 9a3fc27fa3ef63a5fc17717fcbefa2021220b26d Mon Sep 17 00:00:00 2001 From: Sebastien Dupont Date: Wed, 24 Oct 2001 14:12:05 +0000 Subject: import_status & progress. --- perl-install/standalone/drakfont | 56 +++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 9 deletions(-) diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index d3f2add96..c88a8a005 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -409,7 +409,7 @@ my $adj; my $adj1; my $adj2; my $adj3; - +my $font_box; my $check4; my $check1; @@ -449,7 +449,7 @@ sub result_gi { -sub install_gi { +sub import_status { my $window2 = $::isEmbedded ? new Gtk::Plug ($::XID) : new Gtk::Window -toplevel; my $align; @@ -503,21 +503,29 @@ sub main_gi { $window1->set_policy(1, 1, 1); $window1->set_border_width(5); - gtkadd($window1, - gtkpack_(new Gtk::HBox(0,6), - 1, my $notebook = new Gtk::FontSelection, + + gtkadd($window1, + gtkpack_(new Gtk::HBox(0,2), + 0, gtkpack_(new Gtk::HBox(0,5), + 0, gtkpack($font_box = new Gtk::VBox(0,5), + my $font_sel = new Gtk::FontSelection, + ) + ), 0, gtkadd(gtkset_layout(new Gtk::VButtonBox, -end), _("DrakFont"), gtksignal_connect(new Gtk::Button(_("Windows Importation")), clicked => sub { $windows = 1; backend_mod(); }), - gtksignal_connect(new Gtk::Button(_("Advanced Importation")), clicked => sub { $window1->destroy(); install_gi(); }), + gtksignal_connect(new Gtk::Button(_("Advanced Importation")), clicked => sub { + gtkdestroy($font_box); import_status(); + }), gtksignal_connect(new Gtk::Button(_("Uninstall Fonts")), clicked => sub { Gtk->main_quit() }), gtksignal_connect(new Gtk::Button(_("Close")), clicked => sub { Gtk->main_quit() }), - ) - ), - ); + ), + ), + ); $window1->show_all; $window1->realize; $window1->show_all(); + } main_gi; @@ -606,3 +614,33 @@ sub progress_timeout3 { # destroy $window1; # } # } + + + + + + + + + + + + +# gtkadd($window1, +# gtkpack_(new Gtk::HBox(0,6), +# 1, my $notebook = new Gtk::FontSelection, +# 0, gtkadd(gtkset_layout(new Gtk::VButtonBox, -end), +# _("DrakFont"), +# gtksignal_connect(new Gtk::Button(_("Windows Importation")), clicked => sub { $windows = 1; backend_mod(); }), +# gtksignal_connect(new Gtk::Button(_("Advanced Importation")), clicked => sub { +# gtkdestroy($); +# # $window1->destroy(); +# install_gi(); }), +# gtksignal_connect(new Gtk::Button(_("Uninstall Fonts")), clicked => sub { Gtk->main_quit() }), +# gtksignal_connect(new Gtk::Button(_("Close")), clicked => sub { Gtk->main_quit() }), +# ) +# ), +# ); +# $window1->show_all; +# $window1->realize; +# $window1->show_all(); -- cgit v1.2.1