/* GIMP - The GNU Image Manipulation Program * Copyright (C) 1995-2003 Spencer Kimball and Peter Mattis * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /* NOTE: This file is auto-generated by pdbgen.pl. */ #include "config.h" #include #include #include #include "libgimpbase/gimpbase.h" #include "libgimpcolor/gimpcolor.h" #include "libgimpbase/gimpbase.h" #include "pdb-types.h" #include "core/gimpcontext.h" #include "core/gimpdrawable-operation.h" #include "core/gimpdrawable.h" #include "core/gimpimage-crop.h" #include "core/gimpimage-undo.h" #include "core/gimpimage.h" #include "core/gimpparamspecs.h" #include "core/gimppickable-auto-shrink.h" #include "core/gimppickable.h" #include "gegl/gimp-gegl-utils.h" #include "gimppdb.h" #include "gimppdb-utils.h" #include "gimpprocedure.h" #include "internal-procs.h" #include "gimp-intl.h" static GimpValueArray * plug_in_autocrop_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpImage *image; GimpDrawable *drawable; image = gimp_value_get_image (gimp_value_array_index (args, 1), gimp); drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error)) { gint x1, y1, x2, y2; if (gimp_pickable_auto_shrink (GIMP_PICKABLE (drawable), 0, 0, gimp_item_get_width (GIMP_ITEM (drawable)), gimp_item_get_height (GIMP_ITEM (drawable)), &x1, &y1, &x2, &y2)) { gint off_x, off_y; gimp_item_get_offset (GIMP_ITEM (drawable), &off_x, &off_y); x1 += off_x; x2 += off_x; y1 += off_y; y2 += off_y; gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_ITEM_RESIZE, _("Autocrop image")); gimp_image_crop (image, context, x2 - x1, y2 - y1, -x1, -y1, TRUE); gimp_image_undo_group_end (image); } } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_autocrop_layer_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpImage *image; GimpDrawable *drawable; image = gimp_value_get_image (gimp_value_array_index (args, 1), gimp); drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error)) { GimpLayer *layer = gimp_image_get_active_layer (image); gint x1, y1, x2, y2; if (layer && gimp_pickable_auto_shrink (GIMP_PICKABLE (drawable), 0, 0, gimp_item_get_width (GIMP_ITEM (drawable)), gimp_item_get_height (GIMP_ITEM (drawable)), &x1, &y1, &x2, &y2)) { gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_ITEM_RESIZE, _("Autocrop layer")); gimp_item_resize (GIMP_ITEM (layer), context, x2 - x1, y2 - y1, -x1, -y1); gimp_image_undo_group_end (image); } } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_colortoalpha_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; GimpRGB color; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); gimp_value_get_rgb (gimp_value_array_index (args, 3), &color); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error)) { /* XXX: fixme disable for gray, and add alpha when needed */ GeglColor *gegl_color = gimp_gegl_color_new (&color); GeglNode *node = gegl_node_new_child (NULL, "operation", "gegl:color-to-alpha", "color", gegl_color, NULL); g_object_unref (gegl_color); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Color to Alpha"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_pixelize_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; gint32 pixel_width; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); pixel_width = g_value_get_int (gimp_value_array_index (args, 3)); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error)) { GeglNode *node = gegl_node_new_child (NULL, "operation", "gegl:pixelise", "size-x", pixel_width, "size-y", pixel_width, NULL); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Pixelize"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_pixelize2_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; gint32 pixel_width; gint32 pixel_height; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); pixel_width = g_value_get_int (gimp_value_array_index (args, 3)); pixel_height = g_value_get_int (gimp_value_array_index (args, 4)); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error)) { GeglNode *node = gegl_node_new_child (NULL, "operation", "gegl:pixelise", "size-x", pixel_width, "size-y", pixel_height, NULL); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Pixelize"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_polar_coords_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; gdouble circle; gdouble angle; gboolean backwards; gboolean inverse; gboolean polrec; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); circle = g_value_get_double (gimp_value_array_index (args, 3)); angle = g_value_get_double (gimp_value_array_index (args, 4)); backwards = g_value_get_boolean (gimp_value_array_index (args, 5)); inverse = g_value_get_boolean (gimp_value_array_index (args, 6)); polrec = g_value_get_boolean (gimp_value_array_index (args, 7)); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error)) { GeglNode *node = gegl_node_new_child (NULL, "operation", "gegl:polar-coords", "depth", circle, "angle", angle, "bw", backwards, /* XXX name */ "top", inverse, "polar", polrec, NULL); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Polar Coordinates"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_semiflatten_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error) && gimp_drawable_has_alpha (drawable)) { GeglNode *node; GimpRGB color; gimp_context_get_background (context, &color); node = gegl_node_new_child (NULL, "operation", "gimp:semi-flatten", "color", &color, NULL); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Semi-Flatten"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_threshold_alpha_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; gint32 threshold; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); threshold = g_value_get_int (gimp_value_array_index (args, 3)); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error) && gimp_drawable_has_alpha (drawable)) { GeglNode *node = gegl_node_new_child (NULL, "operation", "gimp:threshold-alpha", "value", threshold / 255.0, NULL); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Threshold Alpha"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } static GimpValueArray * plug_in_vinvert_invoker (GimpProcedure *procedure, Gimp *gimp, GimpContext *context, GimpProgress *progress, const GimpValueArray *args, GError **error) { gboolean success = TRUE; GimpDrawable *drawable; drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp); if (success) { if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL, GIMP_PDB_ITEM_CONTENT, error) && gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error)) { GeglNode *node = gegl_node_new_child (NULL, "operation", "gegl:value-invert", NULL); gimp_drawable_apply_operation (drawable, progress, C_("undo-type", "Value Invert"), node); g_object_unref (node); } else success = FALSE; } return gimp_procedure_get_return_values (procedure, success, error ? *error : NULL); } void register_plug_in_compat_procs (GimpPDB *pdb) { GimpProcedure *procedure; /* * gimp-plug-in-autocrop */ procedure = gimp_procedure_new (plug_in_autocrop_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-autocrop"); gimp_procedure_set_static_strings (procedure, "plug-in-autocrop", "Remove empty borders from the image", "Remove empty borders from the image.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-autocrop-layer */ procedure = gimp_procedure_new (plug_in_autocrop_layer_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-autocrop-layer"); gimp_procedure_set_static_strings (procedure, "plug-in-autocrop-layer", "Remove empty borders from the layer", "Remove empty borders from the layer.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-colortoalpha */ procedure = gimp_procedure_new (plug_in_colortoalpha_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-colortoalpha"); gimp_procedure_set_static_strings (procedure, "plug-in-colortoalpha", "Convert a specified color to transparency", "This replaces as much of a given color as possible in each pixel with a corresponding amount of alpha, then readjusts the color accordingly.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1999", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_rgb ("color", "color", "Color to remove", FALSE, NULL, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-pixelize */ procedure = gimp_procedure_new (plug_in_pixelize_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-pixelize"); gimp_procedure_set_static_strings (procedure, "plug-in-pixelize", "Simplify image into an array of solid-colored squares", "Pixelize the contents of the specified drawable with specified pixelizing width.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_int32 ("pixel-width", "pixel width", "Pixel width (the decrease in resolution)", 1, GIMP_MAX_IMAGE_SIZE, 1, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-pixelize2 */ procedure = gimp_procedure_new (plug_in_pixelize2_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-pixelize2"); gimp_procedure_set_static_strings (procedure, "plug-in-pixelize2", "Simplify image into an array of solid-colored rectangles", "Pixelize the contents of the specified drawable with specified pixelizing width and height.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_int32 ("pixel-width", "pixel width", "Pixel width (the decrease in horizontal resolution)", 1, GIMP_MAX_IMAGE_SIZE, 1, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_int32 ("pixel-height", "pixel height", "Pixel height (the decrease in vertical resolution)", 1, GIMP_MAX_IMAGE_SIZE, 1, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-polar-coords */ procedure = gimp_procedure_new (plug_in_polar_coords_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-polar-coords"); gimp_procedure_set_static_strings (procedure, "plug-in-polar-coords", "Convert image to or from polar coordinates", "Remaps and image from rectangular coordinates to polar coordinates or vice versa.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, g_param_spec_double ("circle", "circle", "Circle depth in %", 0.0, 100.0, 0.0, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, g_param_spec_double ("angle", "angle", "Offset angle", 0.0, 360.0, 0.0, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, g_param_spec_boolean ("backwards", "backwards", "Map backwards", FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, g_param_spec_boolean ("inverse", "inverse", "Map from top", FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, g_param_spec_boolean ("polrec", "polrec", "Polar to rectangular", FALSE, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-semiflatten */ procedure = gimp_procedure_new (plug_in_semiflatten_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-semiflatten"); gimp_procedure_set_static_strings (procedure, "plug-in-semiflatten", "Replace partial transparency with the current background color", "This plugin flattens pixels in an RGBA image that aren't completely transparent against the current GIMP background color.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-threshold-alpha */ procedure = gimp_procedure_new (plug_in_threshold_alpha_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-threshold-alpha"); gimp_procedure_set_static_strings (procedure, "plug-in-threshold-alpha", "Make transparency all-or-nothing", "Make transparency all-or-nothing.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_int32 ("threshold", "threshold", "Threshold", 0, 255, 0, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); /* * gimp-plug-in-vinvert */ procedure = gimp_procedure_new (plug_in_vinvert_invoker); gimp_object_set_static_name (GIMP_OBJECT (procedure), "plug-in-vinvert"); gimp_procedure_set_static_strings (procedure, "plug-in-vinvert", "Invert the brightness of each pixel", "This function takes an indexed/RGB image and inverts its 'value' in HSV space. The upshot of this is that the color and saturation at any given point remains the same, but its brightness is effectively inverted. Quite strange. Sometimes produces unpleasant color artifacts on images from lossy sources (ie. JPEG).", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1997", NULL); gimp_procedure_add_argument (procedure, g_param_spec_enum ("run-mode", "run mode", "The run mode", GIMP_TYPE_RUN_MODE, GIMP_RUN_INTERACTIVE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_image_id ("image", "image", "Input image (unused)", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_procedure_add_argument (procedure, gimp_param_spec_drawable_id ("drawable", "drawable", "Input drawable", pdb->gimp, FALSE, GIMP_PARAM_READWRITE)); gimp_pdb_register_procedure (pdb, procedure); g_object_unref (procedure); }