Wx::Mozilla - Use the embedded Mozilla HTML rendering engine in WxPerl programs.


Wx-Mozilla documentation Contained in the Wx-Mozilla distribution.

Index


Code Index:

NAME

Top

Wx::Mozilla - Use the embedded Mozilla HTML rendering engine in WxPerl programs.

SYNOPSIS

Top

  use Wx::Mozilla;

DESCRIPTION

Top

This is an alpha version of the module. It works on a current stable debian system, but past that you're somewhat on your own.

The module API is the same as the basic WxMozilla API, which is generally the same as the basic Mozilla embedding API. In other words, look elsewhere for documentation for right now.

EXPORT

None by default.

SEE ALSO

Top

Wx

AUTHOR

Top

Dan Sugalski, <dan@sidhe.org>

COPYRIGHT AND LICENSE

Top


Wx-Mozilla documentation Contained in the Wx-Mozilla distribution.

package Wx::Mozilla;

use 5.008;
use strict;
use warnings;
use Carp;
use Wx;
use base 'Wx::Window';

require Exporter;
use AutoLoader;

our @ISA = qw(Exporter);

# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.

# This allows declaration	use Wx::Mozilla ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
) ] );

our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );

our @EXPORT = qw(
);

our $VERSION = '0.05';

require XSLoader;
XSLoader::load('Wx::Mozilla', $VERSION);

# Preloaded methods go here.

# Autoload methods go after =cut, and are processed by the autosplit program.

1;
__END__
# Below is stub documentation for your module. You'd better edit it!