| Gimp documentation | Contained in the Gimp distribution. |
Gimp::Module - run scripts embedded into the Gimp program.
not anything you would expect - and not documented, even!
Gimp.
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;