The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pod::Peapod::Tkpeapod - POD viewer

SYNOPSIS

        use Tk;
        use Pod::Peapod::Tkpeapod;
        
        my $top = MainWindow->new();

        my $peapod = $top->Peapod-> pack;       
        
        {
                local $/;
                my $string = <>;
                $peapod->podview($string);
        }
        
        MainLoop();
        

ABSTRACT

Pod::Peapod::Tkpeapod is a POD viewing widget that can be used in Perl/Tk.

The tarball also includes a script called 'peapod' which is a POD viewer.

DESCRIPTION

Pod::Peapod::Tkpeapod is a POD viewing widget that can be used in Perl/Tk.

The tarball also includes a script called 'peapod' which is a POD viewer.

EXPORT

None by default.

SEE ALSO

Pod::Peapod : base class for Pod::Peapod::Tkpeapod (included) peapod : perl script using Pod::Peapod::Tkpeapod to create a POD viewer. (included) Pod::Simple (on CPAN)

AUTHOR

Greg London, http://www.greglondon.com

COPYRIGHT AND LICENSE

Copyright 2003 by Greg London

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.