#
# $Header: /home/scott/lib/cvsroot/Gtk2-Html2/Html2.pm,v 1.4 2004/04/06 18:47:05 scott Exp $
#
package Gtk2::Html2;
use 5.008;
use strict;
use warnings;
use Gtk2;
require DynaLoader;
our @ISA = qw(DynaLoader);
our $VERSION = '0.03';
sub dl_load_flags { 0x01 }
bootstrap Gtk2::Html2 $VERSION;
# Preloaded methods go here.
1;
__END__
=head1 NAME
Gtk2::Html2 - HTML Viewer widget for Gtk2-Perl
=head1 SYNOPSIS
use Gtk2;
use Gtk2::Html2;
my $view = new Gtk2::Html2::View;
my $document = new Gtk2::Html2::Document;
$document->signal_connect (request_url => \&request_url);
$document->signal_connect (link_clicked => \&link_clicked);
$view->set_document ($document);
...
=head1 DESCRIPTION
The Gtk2::Html2 extension allows a perl developer to use the gtkhtml2 html
display widget with Gtk2-Perl.
gtkhtml2 is tuned for html display; for html editing, you want gtkhtml3.
There appears to be very little documentation about gtkhtml2 on the web.
Take what you can get, and add to this module's documentation if you can.
To discuss gtk2-perl, ask questions and flame/praise the authors,
join gtk-perl-list@gnome.org at lists.gnome.org.
Also have a look at the gtk2-perl website and sourceforge project page,
http://gtk2-perl.sourceforge.net
=head1 SEE ALSO
L lists the perl API reference pods.
L
L, L, L.
You will probably also want libraries for fetching and otherwise manipulating
urls; Gnome provides L in addition to the venerable native perl
L.
=head1 BUGS
This is very alpha, and very incomplete.
=head1 AUTHOR
muppet. if you would like to own this project, please drop me a line.
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2004 by muppet
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307 USA.
=cut