diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-13 15:34:43 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-13 15:34:43 +0000 |
commit | eb7b360c998f2c6f610149b9264a1f73cbaf31e7 (patch) | |
tree | bca3ca8627412ebf447c84c1f399083a2600cf0c /perl-install/install/gtk.pm | |
parent | 2552669d7f597308a55c1032fcb213f95299682f (diff) | |
download | drakx-eb7b360c998f2c6f610149b9264a1f73cbaf31e7.tar drakx-eb7b360c998f2c6f610149b9264a1f73cbaf31e7.tar.gz drakx-eb7b360c998f2c6f610149b9264a1f73cbaf31e7.tar.bz2 drakx-eb7b360c998f2c6f610149b9264a1f73cbaf31e7.tar.xz drakx-eb7b360c998f2c6f610149b9264a1f73cbaf31e7.zip |
(create_steps_window) fix left panel in 1024x768
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r-- | perl-install/install/gtk.pm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index e363a5e64..ee677005d 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -144,6 +144,23 @@ sub create_steps_window { gtknew('Fixed', widget_name => 'Steps', pixbuf_file => 'left-background', has_window => 1, x => 0, y => 0, height => $height, width => $::stepswidth, # -1 child => gtknew('VBox', spacing => 6, width => ($::stepswidth - $offset), children_tight => \@l)); + + $o->{steps_widget}->put(my $da = gtknew('DrawingArea', width => $::stepswidth-11, widget_name => 'Left_background', + height => 300, # prevent logo to be tiled (do mosazic style rendering) + ), 0, $height); + + my $set_pixmap = sub { + my ($darea) = @_; + return if !$darea->realized; + my $window = $da->window; + my $pixmap = $da->{back_pixmap} ||= Gtk2::Gdk::Pixmap->new($window, 1, 1, $window->get_depth); + my $style = $da->get_style; + $pixmap->draw_points($style->base_gc('normal'), 0, 0); + $window->set_back_pixmap($pixmap); + $darea->queue_draw; + }; + $da->signal_connect(realize => $set_pixmap); + $o->{steps_widget}->put( # FIXME: not RTL compliant (lang::text_direction_rtl() ? ...) gtknew('VBox', height => $::rootheight, |