Gimp::Module - run scripts embedded into the Gimp program.


Gimp documentation Contained in the Gimp distribution.

Index


Code Index:

NAME

Top

 Gimp::Module - run scripts embedded into the Gimp program.

SYNOPSIS

Top

 not anything you would expect - and not documented, even!

DESCRIPTION

Top

FUNCTIONS

Top

SEE ALSO

Top

Gimp.

AUTHOR

Top

Marc Lehmann <pcg@goof.com>


Gimp documentation Contained in the Gimp distribution.

package Gimp::Module;

use base qw(DynaLoader);
require DynaLoader;

$VERSION=1.211;

bootstrap Gimp::Module;

#use Gtk;
#init Gtk;

sub _init {
#   my $w = new Gtk::Window;
#   my $l = new Gtk::Label "Test";
#   $w->add($l);
#
#   $w->show_all;
#   Gtk->main_iteration while Gtk::Gdk->events_pending;
#   Gtk::Gdk->flush;
#   $w->destroy;

   &GIMP_MODULE_OK;
}

sub _deinit {
}

1;