document the image_types parameter (bug #326988).

2007-04-26  Sven Neumann  <sven@gimp.org>

	* libgimp/gimp.c: document the image_types parameter (bug #326988).


svn path=/trunk/; revision=22346
This commit is contained in:
Sven Neumann
2007-04-26 14:58:56 +00:00
committed by Sven Neumann
parent 3075f763ad
commit d6b3b9bb98
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-04-26 Sven Neumann <sven@gimp.org>
* libgimp/gimp.c: document the image_types parameter (bug #326988).
2007-04-26 Sven Neumann <sven@gimp.org> 2007-04-26 Sven Neumann <sven@gimp.org>
* app/paint-funcs/paint-funcs.c (gaussian_blur_region) * app/paint-funcs/paint-funcs.c (gaussian_blur_region)

View File

@ -517,6 +517,12 @@ gimp_quit (void)
* this case, the given @menu_label will only be used as the * this case, the given @menu_label will only be used as the
* procedure's user-visible name in the keyboard shortcut editor. * procedure's user-visible name in the keyboard shortcut editor.
* *
* @image_types is a comma separated list of image types, or actually
* drawable types, that this procedure can deal with. Wildcards are
* possible here, so you could say "RGB*" instead of "RGB, RGBA" or
* "*" for all image types. If the procedure doesn't need an image to
* run, use the empty string.
*
* @type must be one of #GIMP_PLUGIN or #GIMP_EXTENSION. Note that * @type must be one of #GIMP_PLUGIN or #GIMP_EXTENSION. Note that
* temporary procedures must be installed using * temporary procedures must be installed using
* gimp_install_temp_proc(). * gimp_install_temp_proc().