/* GIMP - The GNU Image Manipulation Program * Copyright (C) 1995 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "config.h" #include #include #include "libgimpbase/gimpbase.h" #include "core-types.h" #include "base/pixel-region.h" #include "base/temp-buf.h" #include "base/tile-manager.h" #include "base/tile-manager-crop.h" #include "paint-funcs/paint-funcs.h" #include "gimp.h" #include "gimp-edit.h" #include "gimpbuffer.h" #include "gimpchannel.h" #include "gimpcontext.h" #include "gimpdrawableundo.h" #include "gimpimage.h" #include "gimpimage-undo.h" #include "gimplayer.h" #include "gimplayer-floating-sel.h" #include "gimplist.h" #include "gimppattern.h" #include "gimppickable.h" #include "gimpselection.h" #include "gimp-intl.h" /* local function protypes */ static GimpBuffer * gimp_edit_extract (GimpImage *image, GimpDrawable *drawable, GimpContext *context, gboolean cut_pixels); static GimpBuffer * gimp_edit_extract_visible (GimpImage *image, GimpContext *context); static GimpBuffer * gimp_edit_make_buffer (Gimp *gimp, TileManager *tiles); static gboolean gimp_edit_fill_internal (GimpImage *image, GimpDrawable *drawable, GimpContext *context, GimpFillType fill_type, gdouble opacity, GimpLayerModeEffects paint_mode, const gchar *undo_desc); /* public functions */ const GimpBuffer * gimp_edit_cut (GimpImage *image, GimpDrawable *drawable, GimpContext *context) { GimpBuffer *buffer; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL); g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); buffer = gimp_edit_extract (image, drawable, context, TRUE); if (buffer) { gimp_set_global_buffer (image->gimp, buffer); g_object_unref (buffer); return image->gimp->global_buffer; } return NULL; } const GimpBuffer * gimp_edit_copy (GimpImage *image, GimpDrawable *drawable, GimpContext *context) { GimpBuffer *buffer; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL); g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); buffer = gimp_edit_extract (image, drawable, context, FALSE); if (buffer) { gimp_set_global_buffer (image->gimp, buffer); g_object_unref (buffer); return image->gimp->global_buffer; } return NULL; } const GimpBuffer * gimp_edit_copy_visible (GimpImage *image, GimpContext *context) { GimpBuffer *buffer; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); buffer = gimp_edit_extract_visible (image, context); if (buffer) { gimp_set_global_buffer (image->gimp, buffer); g_object_unref (buffer); return image->gimp->global_buffer; } return NULL; } GimpLayer * gimp_edit_paste (GimpImage *image, GimpDrawable *drawable, GimpBuffer *paste, gboolean paste_into, gint viewport_x, gint viewport_y, gint viewport_width, gint viewport_height) { GimpLayer *layer; GimpImageType type; gint center_x; gint center_y; gint offset_x; gint offset_y; gint width; gint height; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (drawable == NULL || GIMP_IS_DRAWABLE (drawable), NULL); g_return_val_if_fail (drawable == NULL || gimp_item_is_attached (GIMP_ITEM (drawable)), NULL); g_return_val_if_fail (GIMP_IS_BUFFER (paste), NULL); /* Make a new layer: if drawable == NULL, * user is pasting into an empty image. */ if (drawable) type = gimp_drawable_type_with_alpha (drawable); else type = gimp_image_base_type_with_alpha (image); layer = gimp_layer_new_from_tiles (paste->tiles, image, type, _("Pasted Layer"), GIMP_OPACITY_OPAQUE, GIMP_NORMAL_MODE); if (! layer) return NULL; if (drawable) { /* if pasting to a drawable */ gint off_x, off_y; gint x1, y1, x2, y2; gint paste_x, paste_y; gint paste_width, paste_height; gboolean have_mask; gimp_item_offsets (GIMP_ITEM (drawable), &off_x, &off_y); have_mask = gimp_drawable_mask_bounds (drawable, &x1, &y1, &x2, &y2); if (! have_mask && viewport_width > 0 && viewport_height > 0 && gimp_rectangle_intersect (viewport_x, viewport_y, viewport_width, viewport_height, off_x, off_y, x2 - x1, y2 - y1, &paste_x, &paste_y, &paste_width, &paste_height)) { center_x = paste_x + paste_width / 2; center_y = paste_y + paste_height / 2; } else { center_x = off_x + (x1 + x2) / 2; center_y = off_y + (y1 + y2) / 2; } } else if (viewport_width > 0 && viewport_height > 0) { /* if we got a viewport set the offsets to the center of the viewport */ center_x = viewport_x + viewport_width / 2; center_y = viewport_y + viewport_height / 2; } else { /* otherwise the offsets to the center of the image */ center_x = image->width / 2; center_y = image->height / 2; } width = gimp_item_width (GIMP_ITEM (layer)); height = gimp_item_height (GIMP_ITEM (layer)); offset_x = center_x - width / 2; offset_y = center_y - height / 2; /* Ensure that the pasted layer is always within the image, if it * fits and aligned at top left if it doesn't. (See bug #142944). */ offset_x = MIN (offset_x, image->width - width); offset_y = MIN (offset_y, image->height - height); offset_x = MAX (offset_x, 0); offset_y = MAX (offset_y, 0); GIMP_ITEM (layer)->offset_x = offset_x; GIMP_ITEM (layer)->offset_y = offset_y; /* Start a group undo */ gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_EDIT_PASTE, _("Paste")); /* If there is a selection mask clear it-- * this might not always be desired, but in general, * it seems like the correct behavior. */ if (! gimp_channel_is_empty (gimp_image_get_mask (image)) && ! paste_into) gimp_channel_clear (gimp_image_get_mask (image), NULL, TRUE); /* if there's a drawable, add a new floating selection */ if (drawable) floating_sel_attach (layer, drawable); else gimp_image_add_layer (image, layer, 0); /* end the group undo */ gimp_image_undo_group_end (image); return layer; } GimpImage * gimp_edit_paste_as_new (Gimp *gimp, GimpImage *invoke, GimpBuffer *paste) { GimpImage *image; GimpLayer *layer; GimpImageType type; g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL); g_return_val_if_fail (invoke == NULL || GIMP_IS_IMAGE (invoke), NULL); g_return_val_if_fail (GIMP_IS_BUFFER (paste), NULL); switch (tile_manager_bpp (paste->tiles)) { case 1: type = GIMP_GRAY_IMAGE; break; case 2: type = GIMP_GRAYA_IMAGE; break; case 3: type = GIMP_RGB_IMAGE; break; case 4: type = GIMP_RGBA_IMAGE; break; default: g_return_val_if_reached (NULL); break; } /* create a new image (always of type GIMP_RGB) */ image = gimp_create_image (gimp, gimp_buffer_get_width (paste), gimp_buffer_get_height (paste), GIMP_IMAGE_TYPE_BASE_TYPE (type), TRUE); gimp_image_undo_disable (image); if (invoke) { gimp_image_set_resolution (image, invoke->xresolution, invoke->yresolution); gimp_image_set_unit (image, gimp_image_get_unit (invoke)); } layer = gimp_layer_new_from_tiles (paste->tiles, image, type, _("Pasted Layer"), GIMP_OPACITY_OPAQUE, GIMP_NORMAL_MODE); if (! layer) { g_object_unref (image); return NULL; } gimp_image_add_layer (image, layer, 0); gimp_image_undo_enable (image); return image; } const gchar * gimp_edit_named_cut (GimpImage *image, const gchar *name, GimpDrawable *drawable, GimpContext *context) { GimpBuffer *buffer; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL); g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); buffer = gimp_edit_extract (image, drawable, context, TRUE); if (buffer) { gimp_object_set_name (GIMP_OBJECT (buffer), name); gimp_container_add (image->gimp->named_buffers, GIMP_OBJECT (buffer)); g_object_unref (buffer); return gimp_object_get_name (GIMP_OBJECT (buffer)); } return NULL; } const gchar * gimp_edit_named_copy (GimpImage *image, const gchar *name, GimpDrawable *drawable, GimpContext *context) { GimpBuffer *buffer; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL); g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); buffer = gimp_edit_extract (image, drawable, context, FALSE); if (buffer) { gimp_object_set_name (GIMP_OBJECT (buffer), name); gimp_container_add (image->gimp->named_buffers, GIMP_OBJECT (buffer)); g_object_unref (buffer); return gimp_object_get_name (GIMP_OBJECT (buffer)); } return NULL; } const gchar * gimp_edit_named_copy_visible (GimpImage *image, const gchar *name, GimpContext *context) { GimpBuffer *buffer; g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL); g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL); buffer = gimp_edit_extract_visible (image, context); if (buffer) { gimp_object_set_name (GIMP_OBJECT (buffer), name); gimp_container_add (image->gimp->named_buffers, GIMP_OBJECT (buffer)); g_object_unref (buffer); return gimp_object_get_name (GIMP_OBJECT (buffer)); } return NULL; } gboolean gimp_edit_clear (GimpImage *image, GimpDrawable *drawable, GimpContext *context) { g_return_val_if_fail (GIMP_IS_IMAGE (image), FALSE); g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE); g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), FALSE); g_return_val_if_fail (GIMP_IS_CONTEXT (context), FALSE); return gimp_edit_fill_internal (image, drawable, context, GIMP_TRANSPARENT_FILL, GIMP_OPACITY_OPAQUE, GIMP_ERASE_MODE, _("Clear")); } gboolean gimp_edit_fill (GimpImage *image, GimpDrawable *drawable, GimpContext *context, GimpFillType fill_type) { const gchar *undo_desc; g_return_val_if_fail (GIMP_IS_IMAGE (image), FALSE); g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), FALSE); g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (drawable)), FALSE); g_return_val_if_fail (GIMP_IS_CONTEXT (context), FALSE); switch (fill_type) { case GIMP_FOREGROUND_FILL: undo_desc = _("Fill with Foreground Color"); break; case GIMP_BACKGROUND_FILL: undo_desc = _("Fill with Background Color"); break; case GIMP_WHITE_FILL: undo_desc = _("Fill with White"); break; case GIMP_TRANSPARENT_FILL: undo_desc = _("Fill with Transparency"); break; case GIMP_PATTERN_FILL: undo_desc = _("Fill with Pattern"); break; case GIMP_NO_FILL: return TRUE; /* nothing to do, but the fill succeded */ default: g_warning ("%s: unknown fill type", G_STRFUNC); return gimp_edit_fill (image, drawable, context, GIMP_BACKGROUND_FILL); } return gimp_edit_fill_internal (image, drawable, context, fill_type, GIMP_OPACITY_OPAQUE, GIMP_NORMAL_MODE, undo_desc); } gboolean gimp_edit_fade (GimpImage *image, GimpContext *context) { GimpDrawableUndo *undo; g_return_val_if_fail (GIMP_IS_IMAGE (image), FALSE); g_return_val_if_fail (GIMP_IS_CONTEXT (context), FALSE); undo = GIMP_DRAWABLE_UNDO (gimp_image_undo_get_fadeable (image)); if (undo && undo->src2_tiles) { GimpDrawable *drawable; TileManager *src2_tiles; PixelRegion src2PR; drawable = GIMP_DRAWABLE (GIMP_ITEM_UNDO (undo)->item); g_object_ref (undo); src2_tiles = tile_manager_ref (undo->src2_tiles); gimp_image_undo (image); pixel_region_init (&src2PR, src2_tiles, 0, 0, undo->width, undo->height, FALSE); gimp_drawable_apply_region (drawable, &src2PR, TRUE, gimp_object_get_name (GIMP_OBJECT (undo)), gimp_context_get_opacity (context), gimp_context_get_paint_mode (context), NULL, undo->x, undo->y); tile_manager_unref (src2_tiles); g_object_unref (undo); return TRUE; } return FALSE; } /* private functions */ static GimpBuffer * gimp_edit_extract (GimpImage *image, GimpDrawable *drawable, GimpContext *context, gboolean cut_pixels) { TileManager *tiles; if (cut_pixels) gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_EDIT_CUT, _("Cut")); /* Cut/copy the mask portion from the image */ tiles = gimp_selection_extract (gimp_image_get_mask (image), drawable, context, cut_pixels, FALSE, FALSE); if (cut_pixels) gimp_image_undo_group_end (image); return gimp_edit_make_buffer (image->gimp, tiles); } static GimpBuffer * gimp_edit_extract_visible (GimpImage *image, GimpContext *context) { GimpPickable *pickable; TileManager *tiles; PixelRegion srcPR, destPR; gint x1, y1, x2, y2; gimp_channel_bounds (gimp_image_get_mask (image), &x1, &y1, &x2, &y2); if ((x1 == x2) || (y1 == y2)) { gimp_message (image->gimp, NULL, GIMP_MESSAGE_WARNING, _("Unable to cut or copy because the " "selected region is empty.")); return NULL; } pickable = GIMP_PICKABLE (image->projection); gimp_pickable_flush (pickable); tiles = tile_manager_new (x2 - x1, y2 - y1, gimp_pickable_get_bytes (pickable)); tile_manager_set_offsets (tiles, x1, y1); pixel_region_init (&srcPR, gimp_pickable_get_tiles (pickable), x1, y1, x2 - x1, y2 - y1, FALSE); pixel_region_init (&destPR, tiles, 0, 0, x2 - x1, y2 - y1, TRUE); /* use EEKy no-COW copying because sharing tiles with the projection * is buggy as hell, probably because tile_invalidate() doesn't * do what it should --mitch */ copy_region_nocow (&srcPR, &destPR); return gimp_edit_make_buffer (image->gimp, tiles); } static GimpBuffer * gimp_edit_make_buffer (Gimp *gimp, TileManager *tiles) { return tiles ? gimp_buffer_new (tiles, _("Global Buffer"), FALSE) : NULL; } static gboolean gimp_edit_fill_internal (GimpImage *image, GimpDrawable *drawable, GimpContext *context, GimpFillType fill_type, gdouble opacity, GimpLayerModeEffects paint_mode, const gchar *undo_desc) { TileManager *buf_tiles; PixelRegion bufPR; gint x, y, width, height; GimpImageType drawable_type; gint tiles_bytes; guchar col[MAX_CHANNELS]; TempBuf *pat_buf = NULL; gboolean new_buf; if (! gimp_drawable_mask_intersect (drawable, &x, &y, &width, &height)) return TRUE; /* nothing to do, but the fill succeded */ drawable_type = gimp_drawable_type (drawable); tiles_bytes = gimp_drawable_bytes (drawable); switch (fill_type) { case GIMP_FOREGROUND_FILL: gimp_image_get_foreground (image, context, drawable_type, col); break; case GIMP_BACKGROUND_FILL: case GIMP_TRANSPARENT_FILL: gimp_image_get_background (image, context, drawable_type, col); break; case GIMP_WHITE_FILL: { guchar tmp_col[MAX_CHANNELS]; tmp_col[RED_PIX] = 255; tmp_col[GREEN_PIX] = 255; tmp_col[BLUE_PIX] = 255; gimp_image_transform_color (image, drawable_type, col, GIMP_RGB, tmp_col); } break; case GIMP_PATTERN_FILL: { GimpPattern *pattern = gimp_context_get_pattern (context); pat_buf = gimp_image_transform_temp_buf (image, drawable_type, pattern->mask, &new_buf); if (! gimp_drawable_has_alpha (drawable) && (pat_buf->bytes == 2 || pat_buf->bytes == 4)) tiles_bytes++; } break; case GIMP_NO_FILL: return TRUE; /* nothing to do, but the fill succeded */ } buf_tiles = tile_manager_new (width, height, tiles_bytes); pixel_region_init (&bufPR, buf_tiles, 0, 0, width, height, TRUE); if (pat_buf) { pattern_region (&bufPR, NULL, pat_buf, 0, 0); if (new_buf) temp_buf_free (pat_buf); } else { if (gimp_drawable_has_alpha (drawable)) col[gimp_drawable_bytes (drawable) - 1] = OPAQUE_OPACITY; color_region (&bufPR, col); } pixel_region_init (&bufPR, buf_tiles, 0, 0, width, height, FALSE); gimp_drawable_apply_region (drawable, &bufPR, TRUE, undo_desc, opacity, paint_mode, NULL, x, y); tile_manager_unref (buf_tiles); gimp_drawable_update (drawable, x, y, width, height); return TRUE; }