Gtk2::Ex::PodViewer 0.16 review

Download
by rbytes.net on

Gtk2::Ex::PodViewer is a Gtk2 widget for displaying Plain old Documentation (POD)

License: Perl Artistic License
File size: 15K
Developer: Gavin Brown, Torsten Schoenfeld and Scott Arringto
0 stars award from rbytes.net

Gtk2::Ex::PodViewer is a Gtk2 widget for displaying Plain old Documentation (POD). NB: This module used to be called Gtk2::PodViewer. That module is now a stub that points to this module.

SYNOPSIS

use Gtk2 -init;
use Gtk2::Ex::PodViewer;

my $viewer = Gtk2::Ex::PodViewer->new;

$viewer->load('/path/to/file.pod'); # load a file
$viewer->load('IO::Scalar'); # load a module
$viewer->load('perlvar'); # load a perldoc
$viewer->load('bless'); # load a function

$viewer->show; # see, it's a widget!

my $window = Gtk2::Window->new;
$window->add($viewer);

$window->show;

Gtk2->main;

Gtk2::Ex::PodViewer is a widget for rendering Perl POD documents. It is based on the Gtk2::TextView widget and uses Pod::Parser for manipulating POD data.

Requirements:
Perl

Gtk2::Ex::PodViewer 0.16 search tags