Imported Upstream version 2.3.18
This commit is contained in:
@ -247,7 +247,7 @@ This procedure returns the process ID of the currently running GIMP.</para>
|
||||
/* called when the gimp application exits */
|
||||
GimpQuitProc quit_proc;
|
||||
|
||||
/* called by the gimp so that the plug-in can inform the
|
||||
/* called by gimp so that the plug-in can inform the
|
||||
* gimp of what it does. (ie. installing a procedure database
|
||||
* procedure).
|
||||
*/
|
||||
@ -424,6 +424,13 @@ this case, the given <parameter>menu_label</parameter> will only be used as the
|
||||
procedure's user-visible name in the keyboard shortcut editor.
|
||||
</para>
|
||||
<para>
|
||||
<parameter>image_types</parameter> 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.
|
||||
</para>
|
||||
<para>
|
||||
<parameter>type</parameter> must be one of <link linkend="GIMP-PLUGIN:CAPS"><type>GIMP_PLUGIN</type></link> or <link linkend="GIMP-EXTENSION:CAPS"><type>GIMP_EXTENSION</type></link>. Note that
|
||||
temporary procedures must be installed using
|
||||
<link linkend="gimp-install-temp-proc"><function>gimp_install_temp_proc()</function></link>.
|
||||
@ -633,7 +640,7 @@ information.</para>
|
||||
This function calls a GIMP procedure and returns its return values.
|
||||
To get more information about the available procedures and the
|
||||
parameters they expect, please have a look at the Procedure Browser
|
||||
as found in the Xtns menu in the GIMP's toolbox.
|
||||
as found in the Xtns menu in GIMP's toolbox.
|
||||
</para>
|
||||
<para>
|
||||
As soon as you don't need the return values any longer, you should
|
||||
|
||||
@ -59,9 +59,9 @@ Create a new display for the specified image.
|
||||
<para>
|
||||
Creates a new display for the specified image. If the image already
|
||||
has a display, another is added. Multiple displays are handled
|
||||
transparently by the GIMP. The newly created display is returned and
|
||||
can be subsequently destroyed with a call to <link linkend="gimp-display-delete"><function>gimp_display_delete()</function></link>.
|
||||
This procedure only makes sense for use with the GIMP UI.</para>
|
||||
transparently by GIMP. The newly created display is returned and can
|
||||
be subsequently destroyed with a call to <link linkend="gimp-display-delete"><function>gimp_display_delete()</function></link>. This
|
||||
procedure only makes sense for use with the GIMP UI.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
|
||||
@ -1257,7 +1257,7 @@ values.</para>
|
||||
<link linkend="gconstpointer">gconstpointer</link> data);</programlisting>
|
||||
<para>
|
||||
Convenience function that creates a parasite and attaches it
|
||||
to the GIMP.</para>
|
||||
to GIMP.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
|
||||
@ -202,7 +202,7 @@ Paste buffer to a new image.
|
||||
This procedure pastes a copy of the internal GIMP edit buffer to a
|
||||
new image. The GIMP edit buffer will be empty unless a call was
|
||||
previously made to either <link linkend="gimp-edit-cut"><function>gimp_edit_cut()</function></link> or <link linkend="gimp-edit-copy"><function>gimp_edit_copy()</function></link>. This
|
||||
procedure returns the new image.</para>
|
||||
procedure returns the new image or -1 if the edit buffer was empty.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
|
||||
@ -43,7 +43,7 @@ enum <link linkend="GimpExportReturn">GimpExportReturn</link>;
|
||||
<title role="desc.title">Description</title>
|
||||
<para>
|
||||
This function should be called by all save_plugins unless they are
|
||||
able to save all image formats the GIMP knows about. It takes care
|
||||
able to save all image formats GIMP knows about. It takes care
|
||||
of asking the user if she wishes to export the image to a format the
|
||||
save_plugin can handle. It then performs the necessary conversions
|
||||
(e.g. Flatten) on a copy of the image so that the image can be saved
|
||||
|
||||
@ -61,7 +61,7 @@ Queries the gimprc file parser for information on a specified token.
|
||||
</para>
|
||||
<para>
|
||||
This procedure is used to locate additional information contained in
|
||||
the gimprc file considered extraneous to the operation of the GIMP.
|
||||
the gimprc file considered extraneous to the operation of GIMP.
|
||||
Plug-ins that need configuration information can expect it will be
|
||||
stored in the user gimprc file and can use this procedure to
|
||||
retrieve it. This query procedure will return the value associated
|
||||
@ -88,7 +88,7 @@ Sets a gimprc token to a value and saves it in the gimprc.
|
||||
<para>
|
||||
This procedure is used to add or change additional information in
|
||||
the gimprc file that is considered extraneous to the operation of
|
||||
the GIMP. Plug-ins that need configuration information can use this
|
||||
GIMP. Plug-ins that need configuration information can use this
|
||||
function to store it, and <link linkend="gimp-gimprc-query"><function>gimp_gimprc_query()</function></link> to retrieve it. This
|
||||
will accept _only_ string values in UTF-8 encoding.</para>
|
||||
<para>
|
||||
|
||||
@ -218,8 +218,7 @@ and operations involving multiple layers.
|
||||
Returns the list of images currently open.
|
||||
</para>
|
||||
<para>
|
||||
This procedure returns the list of images currently open in the
|
||||
GIMP.</para>
|
||||
This procedure returns the list of images currently open in GIMP.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
@ -1886,7 +1885,7 @@ values.</para>
|
||||
<link linkend="gconstpointer">gconstpointer</link> data);</programlisting>
|
||||
<para>
|
||||
Convenience function that creates a parasite and attaches it
|
||||
to the GIMP.</para>
|
||||
to GIMP.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
|
||||
@ -232,7 +232,8 @@ using a pre-defined function pointer per pixel.
|
||||
<link linkend="GimpRunMode">GimpRunMode</link> unused);</programlisting>
|
||||
<para>
|
||||
Creates a new <link linkend="GimpRgnIterator"><type>GimpRgnIterator</type></link> for <parameter>drawable</parameter>. The <link linkend="GimpRunMode"><type>GimpRunMode</type></link>
|
||||
parameter is ignored.</para>
|
||||
parameter is ignored. Use <link linkend="gimp-rgn-iterator-free"><function>gimp_rgn_iterator_free()</function></link> to free thsi
|
||||
iterator.</para>
|
||||
<para>
|
||||
|
||||
</para><variablelist role="params">
|
||||
|
||||
@ -63,7 +63,7 @@ image rendering subsystem (GdkRGB) to follow the GIMP main program's
|
||||
colormap allocation/installation policy.
|
||||
</para>
|
||||
<para>
|
||||
The GIMP's colormap policy can be determinded by the user with the
|
||||
GIMP's colormap policy can be determinded by the user with the
|
||||
gimprc variables <parameter>min_colors</parameter> and <parameter>install_cmap</parameter>.</para>
|
||||
<para>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user