diff options
author | damien <damien@mandriva.com> | 2002-03-07 16:39:14 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-03-07 16:39:14 +0000 |
commit | de5fd6a76aedf04db28d1e00c2ba22836a2acf5d (patch) | |
tree | 1b4b552e7c237e626785c9e5d0037cea226ee389 | |
parent | 32aaaf1c11a007e29b2f247a2abc4a41d1af49c8 (diff) | |
download | control-center-de5fd6a76aedf04db28d1e00c2ba22836a2acf5d.tar control-center-de5fd6a76aedf04db28d1e00c2ba22836a2acf5d.tar.gz control-center-de5fd6a76aedf04db28d1e00c2ba22836a2acf5d.tar.bz2 control-center-de5fd6a76aedf04db28d1e00c2ba22836a2acf5d.tar.xz control-center-de5fd6a76aedf04db28d1e00c2ba22836a2acf5d.zip |
new about
-rwxr-xr-x | control-center | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/control-center b/control-center index 4eb3d6de..1c44bf33 100755 --- a/control-center +++ b/control-center @@ -730,13 +730,24 @@ sub about_mdk_cc { my $label = new Gtk::Label( _("Mandrake Control Center %s\n", $_version) ); my $style1 = $label->style->copy(); + my $style2 = $label->style->copy(); $style1->font(Gtk::Gdk::Font->fontset_load(_("-*-helvetica-medium-r-normal-*-20-*-100-100-p-*-iso8859-1,*-r-*"))); + $style2->font(Gtk::Gdk::Font->fontset_load(_("-*-helvetica-medium-r-bold-*-14-*-100-100-p-*-iso8859-1,*-r-*"))); $label->set_style($style1); - $window_about->vbox->pack_start( $label, 1, 1, 0 ); - $window_about->vbox->pack_start( new Gtk::Label( _("Copyright (C) 2001 Mandrakesoft SA")), 1, 1, 0); - $window_about->vbox->pack_start( new Gtk::Label( ''), 1, 1, 0 ); - $window_about->vbox->pack_start( new Gtk::Label( _("Author: ") . "Damien Krotkine <damien\@mandrakesoft.com>\n"), 1, 1, 0 ); - $window_about->vbox->pack_start( new Gtk::Label( _("Technology Contributor: ") . "Yves Duret <yduret\@mandrakesoft.com>"), 1, 1, 0 ); + gtkpack_($window_about->vbox, + 1, $label, + 0, new Gtk::Label( _("Copyright (C) 2001 Mandrakesoft SA")), + 1, new Gtk::Label( ''), + 0, gtkpack__(new Gtk::HBox, gtksetstyle(new Gtk::Label( _('Author: ')), $style2), new Gtk::Label('Damien Krotkine <damien@mandrakesoft.com>\n')), + 0, gtkpack__(new Gtk::HBox, gtksetstyle(new Gtk::Label( _('Technology Contributor: ')), $style2), new Gtk::Label('Yves Duret <yduret@mandrakesoft.com>')), + 1, new Gtk::Label( ''), + 0, gtkpack__(new Gtk::HBox, gtksetstyle(new Gtk::Label( _('Artwork : ')), $style2)), +# 1, new Gtk::Label( ''), + 0, gtkpack__(new Gtk::HBox, new Gtk::Label( 'Hélène Durosini <ln@mandrakesoft.com>')), + 0, gtkpack__(new Gtk::HBox, new Gtk::Label( 'Anh-Van Nguyen <avnguyen@mandrakesoft.com>')), + 0, gtkpack__(new Gtk::HBox, new Gtk::Label( 'Tigert <tigert@ximian.com>')), + 0, gtkpack__(new Gtk::HBox, new Gtk::Label( 'Jakub "Jimmac" Steiner <jimmac@linux.com.nospam>')) + ); $window_about->show_all(); $window_about->set_modal(1); } |