pdbgen: Regenerate C code

This commit is contained in:
Mukund Sivaraman 2012-12-05 08:48:42 +05:30
parent 914f04dcac
commit b1dbfd2567
15 changed files with 61 additions and 31 deletions

View File

@ -720,7 +720,7 @@ register_paths_procs (GimpPDB *pdb)
gimp_procedure_add_return_value (procedure,
gimp_param_spec_string_array ("path-list",
"path list",
"List of the paths belonging to this image.",
"List of the paths belonging to this image",
GIMP_PARAM_READWRITE));
gimp_pdb_register_procedure (pdb, procedure);
g_object_unref (procedure);

View File

@ -196,7 +196,8 @@ gimp_get_parasite (const gchar *name)
*
* Returns a list of all currently attached global parasites.
*
* Returns: The names of currently attached parasites The returned value must be freed with g_strfreev().
* Returns: The names of currently attached parasites. The returned
* value must be freed with g_strfreev().
*
* Since: GIMP 2.8
**/

View File

@ -75,7 +75,8 @@ gimp_brushes_refresh (void)
* Each name returned can be used as input to the
* gimp_context_set_brush() procedure.
*
* Returns: The list of brush names The returned value must be freed with g_strfreev().
* Returns: The list of brush names. The returned value must be freed
* with g_strfreev().
**/
gchar **
gimp_brushes_get_list (const gchar *filter,

View File

@ -44,7 +44,8 @@
* This procedure returns a complete listing of available named
* buffers.
*
* Returns: The list of buffer names The returned value must be freed with g_strfreev().
* Returns: The list of buffer names. The returned value must be freed
* with g_strfreev().
*
* Since: GIMP 2.4
**/

View File

@ -75,7 +75,8 @@ gimp_dynamics_refresh (void)
* This procedure returns a list of the paint dynamics that are
* currently available.
*
* Returns: The list of paint dynamics names The returned value must be freed with g_strfreev().
* Returns: The list of paint dynamics names. The returned value must
* be freed with g_strfreev().
*
* Since: GIMP 2.8
**/

View File

@ -49,7 +49,8 @@
* area lies completely outside the bounds of the current drawable and
* there is nothing to copy from.
*
* Returns: TRUE if the cut was successful, FALSE if there was nothing to copy from.
* Returns: TRUE if the cut was successful, FALSE if there was nothing
* to copy from.
**/
gboolean
gimp_edit_cut (gint32 drawable_ID)
@ -86,7 +87,8 @@ gimp_edit_cut (gint32 drawable_ID)
* completely outside the bounds of the current drawable and there is
* nothing to copy from.
*
* Returns: TRUE if the cut was successful, FALSE if there was nothing to copy from.
* Returns: TRUE if the cut was successful, FALSE if there was nothing
* to copy from.
**/
gboolean
gimp_edit_copy (gint32 drawable_ID)
@ -237,7 +239,8 @@ gimp_edit_paste_as_new (void)
* later pasting, regardless of any intermediate copy or cut
* operations.
*
* Returns: The real name given to the buffer, or NULL if the cut failed.
* Returns: The real name given to the buffer, or NULL if the cut
* failed.
*
* Since: GIMP 2.4
**/
@ -275,7 +278,8 @@ gimp_edit_named_cut (gint32 drawable_ID,
* later pasting, regardless of any intermediate copy or cut
* operations.
*
* Returns: The real name given to the buffer, or NULL if the copy failed.
* Returns: The real name given to the buffer, or NULL if the copy
* failed.
*
* Since: GIMP 2.4
**/
@ -313,7 +317,8 @@ gimp_edit_named_copy (gint32 drawable_ID,
* available for later pasting, regardless of any intermediate copy or
* cut operations.
*
* Returns: The real name given to the buffer, or NULL if the copy failed.
* Returns: The real name given to the buffer, or NULL if the copy
* failed.
*
* Since: GIMP 2.4
**/

View File

@ -72,7 +72,8 @@ gimp_fonts_refresh (void)
* This procedure returns a list of the fonts that are currently
* available.
*
* Returns: The list of font names The returned value must be freed with g_strfreev().
* Returns: The list of font names. The returned value must be freed
* with g_strfreev().
**/
gchar **
gimp_fonts_get_list (const gchar *filter,

View File

@ -75,7 +75,8 @@ gimp_gradients_refresh (void)
* loaded. You can later use the gimp_context_set_gradient() function
* to set the active gradient.
*
* Returns: The list of gradient names The returned value must be freed with g_strfreev().
* Returns: The list of gradient names. The returned value must be
* freed with g_strfreev().
**/
gchar **
gimp_gradients_get_list (const gchar *filter,

View File

@ -78,7 +78,8 @@ gimp_image_is_valid (gint32 image_ID)
*
* This procedure returns the list of images currently open in GIMP.
*
* Returns: The list of images currently open. The returned value must be freed with g_free().
* Returns: The list of images currently open. The returned value must
* be freed with g_free().
**/
gint *
gimp_image_list (gint *num_images)
@ -688,7 +689,8 @@ gimp_image_rotate (gint32 image_ID,
* This procedure returns the list of layers contained in the specified
* image. The order of layers is from topmost to bottommost.
*
* Returns: The list of layers contained in the image. The returned value must be freed with g_free().
* Returns: The list of layers contained in the image. The returned
* value must be freed with g_free().
**/
gint *
gimp_image_get_layers (gint32 image_ID,
@ -730,7 +732,8 @@ gimp_image_get_layers (gint32 image_ID,
* specified image. This does not include the selection mask, or layer
* masks. The order is from topmost to bottommost.
*
* Returns: The list of channels contained in the image. The returned value must be freed with g_free().
* Returns: The list of channels contained in the image. The returned
* value must be freed with g_free().
**/
gint *
gimp_image_get_channels (gint32 image_ID,
@ -771,7 +774,8 @@ gimp_image_get_channels (gint32 image_ID,
* This procedure returns the list of vectors contained in the
* specified image.
*
* Returns: The list of vectors contained in the image. The returned value must be freed with g_free().
* Returns: The list of vectors contained in the image. The returned
* value must be freed with g_free().
*
* Since: GIMP 2.4
**/
@ -1718,7 +1722,8 @@ gimp_image_merge_down (gint32 image_ID,
* 3. If the image is not in Indexed color mode, no colormap is
* returned.
*
* Returns: The image's colormap. The returned value must be freed with g_free().
* Returns: The image's colormap. The returned value must be freed with
* g_free().
**/
guint8 *
_gimp_image_get_colormap (gint32 image_ID,
@ -2308,7 +2313,8 @@ gimp_image_set_component_visible (gint32 image_ID,
* Otherwise, this function returns %NULL. See also
* gimp_image_get_uri().
*
* Returns: The filename. The returned value must be freed with g_free().
* Returns: The filename. The returned value must be freed with
* g_free().
**/
gchar *
gimp_image_get_filename (gint32 image_ID)
@ -2410,7 +2416,8 @@ gimp_image_get_uri (gint32 image_ID)
* This procedure returns the XCF URI associated with the image. If
* there is no such URI, this procedure returns %NULL.
*
* Returns: The imported URI. The returned value must be freed with g_free().
* Returns: The imported URI. The returned value must be freed with
* g_free().
*
* Since: GIMP 2.8
**/
@ -2445,7 +2452,8 @@ gimp_image_get_xcf_uri (gint32 image_ID)
* image was not imported, or has since been saved in the native Gimp
* format, this procedure returns %NULL.
*
* Returns: The imported URI. The returned value must be freed with g_free().
* Returns: The imported URI. The returned value must be freed with
* g_free().
*
* Since: GIMP 2.8
**/
@ -2479,7 +2487,8 @@ gimp_image_get_imported_uri (gint32 image_ID)
* if the image was exported a non-native GIMP format. If the image was
* not exported, this procedure returns %NULL.
*
* Returns: The exported URI. The returned value must be freed with g_free().
* Returns: The exported URI. The returned value must be freed with
* g_free().
*
* Since: GIMP 2.8
**/
@ -3086,7 +3095,8 @@ gimp_image_get_parasite (gint32 image_ID,
*
* Returns a list of all currently attached parasites.
*
* Returns: The names of currently attached parasites The returned value must be freed with g_strfreev().
* Returns: The names of currently attached parasites. The returned
* value must be freed with g_strfreev().
*
* Since: GIMP 2.8
**/

View File

@ -982,7 +982,8 @@ gimp_item_get_parasite (gint32 item_ID,
*
* Returns a list of all parasites currently attached the an item.
*
* Returns: The names of currently attached parasites The returned value must be freed with g_strfreev().
* Returns: The names of currently attached parasites. The returned
* value must be freed with g_strfreev().
*
* Since: GIMP 2.8
**/

View File

@ -73,7 +73,8 @@ gimp_palettes_refresh (void)
* Each name returned can be used as input to the command
* gimp_context_set_palette().
*
* Returns: The list of palette names The returned value must be freed with g_strfreev().
* Returns: The list of palette names. The returned value must be freed
* with g_strfreev().
**/
gchar **
gimp_palettes_get_list (const gchar *filter,

View File

@ -43,7 +43,8 @@
*
* Deprecated: Use gimp_image_get_vectors() instead.
*
* Returns: List of the paths belonging to this image. The returned value must be freed with g_strfreev().
* Returns: List of the paths belonging to this image. The returned
* value must be freed with g_strfreev().
**/
gchar **
gimp_path_list (gint32 image_ID,
@ -173,7 +174,8 @@ gimp_path_delete (gint32 image_ID,
*
* Deprecated: Use gimp_vectors_stroke_get_points() instead.
*
* Returns: The type of the path. Currently only one type (1 = Bezier) is supported.
* Returns: The type of the path. Currently only one type (1 = Bezier)
* is supported.
**/
gint
gimp_path_get_points (gint32 image_ID,

View File

@ -75,7 +75,8 @@ gimp_patterns_refresh (void)
* patterns. Each name returned can be used as input to the
* gimp_context_set_pattern().
*
* Returns: The list of pattern names The returned value must be freed with g_strfreev().
* Returns: The list of pattern names. The returned value must be freed
* with g_strfreev().
**/
gchar **
gimp_patterns_get_list (const gchar *filter,

View File

@ -161,7 +161,8 @@ gimp_text_layer_set_text (gint32 layer_ID,
* markup. Note: Setting the markup of a text layer using Pango's
* markup is not supported for now.
*
* Returns: The markup which represents the style of the specified text layer.
* Returns: The markup which represents the style of the specified text
* layer.
*
* Since: GIMP 2.8
**/
@ -337,7 +338,8 @@ gimp_text_layer_set_font_size (gint32 layer_ID,
* This procedure checks if antialiasing is enabled in the specified
* text layer.
*
* Returns: A flag which is true if antialiasing is used for rendering the font in the text layer.
* Returns: A flag which is true if antialiasing is used for rendering
* the font in the text layer.
*
* Since: GIMP 2.6
**/

View File

@ -46,7 +46,8 @@
* Creates a new empty vectors object. The vectors object needs to be
* added to the image using gimp_image_insert_vectors().
*
* Returns: the current vector object, 0 if no vector exists in the image.
* Returns: the current vector object, 0 if no vector exists in the
* image.
*
* Since: GIMP 2.4
**/
@ -582,7 +583,8 @@ gimp_vectors_stroke_flip_free (gint32 vectors_ID,
* this is always a bezier stroke, where the coordinates are the
* control points.
*
* Returns: type of the stroke (always GIMP_VECTORS_STROKE_TYPE_BEZIER for now).
* Returns: type of the stroke (always GIMP_VECTORS_STROKE_TYPE_BEZIER
* for now).
*
* Since: GIMP 2.4
**/