Re: [Gimp-developer] template python plugin

2008-09-30 Thread Greg MacDonald
a seperate procedure to register the menu entry: gimp.menu_register(). Sven #!/usr/bin/env python # 9/14/2008 - Greg MacDonald # This is an example gimp python plugin template. It demonstrates how to # create two different types of plugins; an image plugin, and a toolbox # plugin. The toolbox

Re: [Gimp-developer] template python plugin

2008-09-29 Thread Greg MacDonald
; reminded me of other sorts of plugins I've written. Would you like me to switch it over? -Greg On Mon, Sep 29, 2008 at 2:03 AM, Sven Neumann [EMAIL PROTECTED] wrote: Hi, On Sun, 2008-09-28 at 17:15 -0700, Greg MacDonald wrote: I've been fiddling around with writing gimp-python plugins

[Gimp-developer] template python plugin

2008-09-28 Thread Greg MacDonald
and exceptions don't seem to display in gui mode for some reason) and running a plugin from the console which I've found useful for quick debug iterations. And it also shows how to use a file chooser dialog to prompt the user for a file. Hope you like it. -Greg #!/usr/bin/env python # 9/14/2008 - Greg