/usr/lib/perl5/Gtk2/ImageView.pm is in libgtk2-imageview-perl 0.05-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | package Gtk2::ImageView;
use Gtk2;
require DynaLoader;
our @ISA = qw(DynaLoader);
our $VERSION = '0.05';
sub dl_load_flags {0x01};
bootstrap Gtk2::ImageView $VERSION;
1;
__END__
=head1 NAME
Gtk2::ImageView - Perl bindings to the GtkImageView image viewer widget
=head1 SYNOPSIS
use Gtk2::ImageView;
Gtk2->init;
$window = Gtk2::Window->new();
$view = Gtk2::ImageView->new;
$view->set_pixbuf($pixbuf, TRUE);
$window->add($view);
$window->show_all;
=head1 ABSTRACT
Perl bindings to the GtkImageView image viewer widget
Find out more about GtkImageView at http://trac.bjourne.webfactional.com/.
The Perl bindings follow the C API very closely, and the C reference
should be considered the canonical documentation.
Be sure to check out the example programs in the "examples" directory.
=head1 DESCRIPTION
The Gtk2::ImageView module allows a Perl developer to use the GtkImageView
image viewer widget. Find out more about GtkImageView at
http://trac.bjourne.webfactional.com/.
To discuss Gtk2::ImageView or gtk2-perl, ask questions and flame/praise the
authors, join gtk-perl-list@gnome.org at lists.gnome.org.
|