From 38ae44f66206176f7f7ca33874de04dc95428ccc Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 29 Sep 2008 09:59:23 +0000 Subject: (_gtk__Image_using_pixbuf) simplify using pixbuf storage (which brings in optimized refresh on expose event as side effect) (needed for next commit) --- perl-install/mygtk2.pm | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'perl-install/mygtk2.pm') diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index f218778bf..8f5ea596f 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -330,17 +330,7 @@ sub _gtk__Image { } : $class =~ /using_pixbuf/ ? sub { my ($w, $file) = @_; my $pixbuf = _pixbuf_render_alpha(gtknew('Pixbuf', file => $file, %{$w->{options}}), 255); - my ($width, $height) = ($pixbuf->get_width, $pixbuf->get_height); - $w->set_size_request($width, $height); - $w->signal_connect(expose_event => sub { - if (!$w->{x}) { - my $alloc = $w->allocation; - $w->{x} = $alloc->x; - $w->{y} = $alloc->y; - } - $pixbuf->render_to_drawable($w->window, $w->style->fg_gc('normal'), - 0, 0, $w->{x}, $w->{y}, $width, $height, 'max', 0, 0); - }); + $w->set_from_pixbuf($pixbuf); } : sub { my ($w, $file, $o_size) = @_; my $pixbuf = gtknew('Pixbuf', file => $file, if_($o_size, size => $o_size), %{$w->{options}}); -- cgit v1.2.1