Changeset 516 for plgtkimageview
- Timestamp:
- 03/14/08 17:29:26 (5 years ago)
- Files:
-
- plgtkimageview/ImageView.pm (modified) (1 diff)
- plgtkimageview/README (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plgtkimageview/ImageView.pm
r501 r516 9 9 __END__ 10 10 11 This is not the POD you're looking for. 11 =head1 NAME 12 12 13 The documentation for this module is generated from the XS source, and is stored in separate .pod files. 13 Gtk2::ImageView - Perl bindings to the GtkImageView image viewer widget 14 14 15 =cut 15 =head1 SYNOPSIS 16 17 use Gtk2::ImageView; 18 Gtk2->init; 19 20 $window = Gtk2::Window->new(); 21 22 $view = Gtk2::ImageView->new; 23 $view->set_pixbuf($pixbuf, TRUE); 24 $window->add($view); 25 26 $window->show_all; 27 28 =head1 ABSTRACT 29 30 Perl bindings to the GtkImageView image viewer widget 31 Find out more about GtkImageView at http://trac.bjourne.webfactional.com/. 32 33 The Perl bindings follow the C API very closely, and the C reference 34 should be considered the canonical documentation. 35 36 Be sure to check out the example programs in the "examples" directory. 37 38 =head1 DESCRIPTION 39 40 The Gtk2::ImageView module allows a Perl developer to use the GtkImageView 41 image viewer widget. Find out more about GtkImageView at 42 http://trac.bjourne.webfactional.com/. 43 44 To discuss Gtk2::ImageView or gtk2-perl, ask questions and flame/praise the 45 authors, join gtk-perl-list@gnome.org at lists.gnome.org. 46 plgtkimageview/README
r501 r516 2 2 =============== 3 3 4 Gtk2::ImageView provides Perl bindings Gtk+ widget gtkimageview. 5 Find out more about gtkimageview at http://trac.bjourne.webfactional.com/.4 Perl bindings to the GtkImageView image viewer widget 5 Find out more about GtkImageView at http://trac.bjourne.webfactional.com/. 6 6 7 Be sure to check out the example program in the "examples" directory. 7 The Perl bindings follow the C API very closely, and the C reference 8 should be considered the canonical documentation. 8 9 9 To discuss gtk2-perl, ask questions and flame/praise the authors, 10 join gtk-perl-list@gnome.org at lists.gnome.org. 10 Be sure to check out the example programs in the "examples" directory. 11 11 12 Also have a look at the gtk2-perl website and sourceforge project page, 13 http://gtk2-perl.sourceforge.net 12 To discuss Gtk2::ImageView or gtk2-perl, ask questions and flame/praise the 13 authors, join gtk-perl-list@gnome.org at lists.gnome.org. 14 14 15 15 … … 46 46 use lib '/some/other/place/lib/perl5/site_perl'; 47 47 48 To build the documentation , enter the ./docs directory andrun:48 To build the documentation as html, run: 49 49 50 ./makedocs.sh50 make html 51 51 52 52 Note that the bindings must first have been built and that the
