summaryrefslogtreecommitdiffstats
path: root/perl-install/install_gtk.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-12-18 19:26:19 +0000
committerdamien <damien@mandriva.com>2000-12-18 19:26:19 +0000
commit7f0461519a119b40c90a4f3ee8aeaec5cc66c4ad (patch)
treedc0e93fb3c9aa010699bbf05d94b2d28d82d1411 /perl-install/install_gtk.pm
parente3059d803205332b270e875070f47809339f145d (diff)
downloaddrakx-7f0461519a119b40c90a4f3ee8aeaec5cc66c4ad.tar
drakx-7f0461519a119b40c90a4f3ee8aeaec5cc66c4ad.tar.gz
drakx-7f0461519a119b40c90a4f3ee8aeaec5cc66c4ad.tar.bz2
drakx-7f0461519a119b40c90a4f3ee8aeaec5cc66c4ad.tar.xz
drakx-7f0461519a119b40c90a4f3ee8aeaec5cc66c4ad.zip
added firewall support
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r--perl-install/install_gtk.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm
index 2840166dc..9884418fc 100644
--- a/perl-install/install_gtk.pm
+++ b/perl-install/install_gtk.pm
@@ -13,6 +13,7 @@ use devices;
#-#####################################################################################
my @themes_vga16 = qw(blue blackwhite savane);
my @themes_desktop = qw(mdk-Desktop DarkMarble marble3d blueHeart);
+my @themes_firewall = qw(mdk-Firewall);
my @themes = qw(mdk DarkMarble marble3d blueHeart);
my (@background1, @background2);
@@ -36,6 +37,7 @@ sub load_rc {
sub default_theme {
my ($o) = @_;
@themes = @themes_desktop if $o->{meta_class} eq 'desktop';
+ @themes = @themes_firewall if $o->{meta_class} eq 'firewall';
@themes = @themes_vga16 if $o->{simple_themes} || $o->{vga16};
install_theme($o, $o->{theme} || $themes[0]);
}
@@ -140,7 +142,7 @@ sub create_steps_window {
$_[0]) or die;
$darea->window->draw_pixmap ($darea->style->bg_gc('normal'),
$pixmap, 0, 0,
- ($darea->allocation->[2]-$PIX_W)/2,
+ ($darea->allocation->[2]-$PIX_W)/2 + ($o->{meta_class} eq 'firewall' ? 3 : 0),
($darea->allocation->[3]-$PIX_H)/2,
$PIX_W , $PIX_H );
};
@@ -150,7 +152,7 @@ sub create_steps_window {
my $color = $step->{done} ? 'green' : $step->{entered} ? 'orange' : 'red';
"$ENV{SHARE_PATH}/step-$color$type.xpm";
};
- $darea->set_usize($PIX_W,$PIX_H);
+ $darea->set_usize($PIX_W+($o->{meta_class} eq 'firewall' ? 3 : 0),$PIX_H);
$darea->set_events(['exposure_mask', 'enter_notify_mask', 'leave_notify_mask', 'button_press_mask', 'button_release_mask' ]);
$darea->signal_connect(expose_event => sub { $draw_pix->($f->('')) });
if ($step->{reachable}) {
@@ -189,6 +191,7 @@ sub create_logo_window {
$w->{rwindow}->set_name("logo");
$w->show;
my $file = $o->{meta_class} eq 'desktop' ? "logo-mandrake-Desktop.xpm" : "logo-mandrake.xpm";
+ $o->{meta_class} eq 'firewall' and $file = "logo-mandrake-Firewall.xpm";
-r $file or $file = "$ENV{SHARE_PATH}/$file";
if (-r $file) {
my $ww = $w->{window};