2006-12-09 21:33:38 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-24 22:05:25 +00:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-24 22:05:25 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-24 22:05:25 +00:00
|
|
|
* (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
|
2018-07-11 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1997-11-24 22:05:25 +00:00
|
|
|
*/
|
2000-12-16 21:37:03 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2012-03-16 00:02:27 +01:00
|
|
|
#include <cairo.h>
|
2008-10-09 20:24:04 +00:00
|
|
|
#include <gegl.h>
|
2012-05-03 03:36:22 +02:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2001-01-24 22:36:18 +00:00
|
|
|
|
2006-08-29 14:46:32 +00:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2012-03-16 00:02:27 +01:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2006-08-29 14:46:32 +00:00
|
|
|
|
2001-07-04 19:31:35 +00:00
|
|
|
#include "core-types.h"
|
2000-12-16 21:37:03 +00:00
|
|
|
|
2001-07-04 19:31:35 +00:00
|
|
|
#include "gimp.h"
|
2003-09-15 17:26:28 +00:00
|
|
|
#include "gimp-edit.h"
|
2001-07-03 18:38:56 +00:00
|
|
|
#include "gimpbuffer.h"
|
|
|
|
#include "gimpcontext.h"
|
2019-01-02 00:14:35 +01:00
|
|
|
#include "gimpgrouplayer.h"
|
2001-07-03 18:38:56 +00:00
|
|
|
#include "gimpimage.h"
|
2017-05-01 19:10:52 +02:00
|
|
|
#include "gimpimage-duplicate.h"
|
2016-09-19 23:53:40 +02:00
|
|
|
#include "gimpimage-new.h"
|
2003-02-13 11:23:50 +00:00
|
|
|
#include "gimpimage-undo.h"
|
2016-05-20 16:46:26 +02:00
|
|
|
#include "gimplayer-floating-selection.h"
|
2015-06-17 13:21:01 +02:00
|
|
|
#include "gimplayer-new.h"
|
2022-10-29 18:53:44 +00:00
|
|
|
#include "gimplayermask.h"
|
2001-07-03 18:38:56 +00:00
|
|
|
#include "gimplist.h"
|
2006-03-02 19:30:59 +00:00
|
|
|
#include "gimppickable.h"
|
2003-10-06 12:17:11 +00:00
|
|
|
#include "gimpselection.h"
|
2001-07-03 18:38:56 +00:00
|
|
|
|
2003-03-25 16:38:19 +00:00
|
|
|
#include "gimp-intl.h"
|
1998-11-23 14:47:09 +00:00
|
|
|
|
1998-01-22 07:02:57 +00:00
|
|
|
|
2003-10-08 17:20:06 +00:00
|
|
|
/* local function protypes */
|
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
static GimpBuffer * gimp_edit_extract (GimpImage *image,
|
|
|
|
GList *pickables,
|
|
|
|
GimpContext *context,
|
|
|
|
gboolean cut_pixels,
|
|
|
|
GError **error);
|
|
|
|
static GimpDrawable * gimp_edit_paste_get_top_item (GList *drawables);
|
2003-10-08 17:20:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
2016-09-19 23:53:40 +02:00
|
|
|
GimpObject *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_cut (GimpImage *image,
|
2020-05-26 16:15:15 +02:00
|
|
|
GList *drawables,
|
2007-12-14 13:58:10 +00:00
|
|
|
GimpContext *context,
|
|
|
|
GError **error)
|
1997-11-24 22:05:25 +00:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *iter;
|
|
|
|
gboolean cut_layers = FALSE;
|
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
2004-04-14 23:37:34 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2007-12-14 13:58:10 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
1997-11-24 22:05:25 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
if (gimp_channel_is_empty (gimp_image_get_mask (image)))
|
|
|
|
{
|
|
|
|
cut_layers = TRUE;
|
|
|
|
|
|
|
|
for (iter = drawables; iter; iter = iter->next)
|
|
|
|
if (! GIMP_IS_LAYER (iter->data))
|
|
|
|
{
|
|
|
|
cut_layers = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cut_layers)
|
2016-09-19 23:53:40 +02:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *remove = NULL;
|
2016-09-19 23:53:40 +02:00
|
|
|
GimpImage *clip_image;
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
gchar *undo_label;
|
2017-11-12 18:41:05 +01:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
/* Let's work on a copy because we will edit the list to remove
|
|
|
|
* layers whose ancestor is also cut.
|
|
|
|
*/
|
|
|
|
drawables = g_list_copy (drawables);
|
|
|
|
for (iter = drawables; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
GList *iter2;
|
2005-09-05 18:21:51 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
for (iter2 = drawables; iter2; iter2 = iter2->next)
|
|
|
|
{
|
|
|
|
if (iter2 == iter)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (gimp_viewable_is_ancestor (iter2->data, iter->data))
|
|
|
|
{
|
|
|
|
/* When cutting a layer group, all its children come
|
|
|
|
* with anyway.
|
|
|
|
*/
|
|
|
|
remove = g_list_prepend (remove, iter);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (iter = remove; iter; iter = iter->next)
|
|
|
|
drawables = g_list_delete_link (drawables, iter->data);
|
|
|
|
|
|
|
|
g_list_free (remove);
|
|
|
|
|
|
|
|
/* Now copy all layers into the clipboard image. */
|
|
|
|
clip_image = gimp_image_new_from_drawables (image->gimp, drawables, FALSE);
|
2016-09-19 23:53:40 +02:00
|
|
|
gimp_container_remove (image->gimp->images, GIMP_OBJECT (clip_image));
|
|
|
|
gimp_set_clipboard_image (image->gimp, clip_image);
|
|
|
|
g_object_unref (clip_image);
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
undo_label = g_strdup_printf (ngettext ("Cut Layer", "Cut %d Layers",
|
|
|
|
g_list_length (drawables)),
|
|
|
|
g_list_length (drawables));
|
2016-09-19 23:53:40 +02:00
|
|
|
gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_EDIT_CUT,
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
undo_label);
|
|
|
|
g_free (undo_label);
|
2016-09-19 23:53:40 +02:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
/* Remove layers from source image. */
|
|
|
|
for (iter = drawables; iter; iter = iter->next)
|
|
|
|
gimp_image_remove_layer (image, GIMP_LAYER (iter->data),
|
|
|
|
TRUE, NULL);
|
2016-09-19 23:53:40 +02:00
|
|
|
|
|
|
|
gimp_image_undo_group_end (image);
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
g_list_free (drawables);
|
2016-09-19 23:53:40 +02:00
|
|
|
|
|
|
|
return GIMP_OBJECT (gimp_get_clipboard_image (image->gimp));
|
|
|
|
}
|
|
|
|
else
|
2005-09-05 18:21:51 +00:00
|
|
|
{
|
2016-09-19 23:53:40 +02:00
|
|
|
GimpBuffer *buffer;
|
2005-09-05 18:21:51 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
buffer = gimp_edit_extract (image, drawables, context, TRUE, error);
|
2016-09-19 23:53:40 +02:00
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
|
|
|
gimp_set_clipboard_buffer (image->gimp, buffer);
|
|
|
|
g_object_unref (buffer);
|
|
|
|
|
|
|
|
return GIMP_OBJECT (gimp_get_clipboard_buffer (image->gimp));
|
|
|
|
}
|
2005-09-05 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
1997-11-24 22:05:25 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:53:40 +02:00
|
|
|
GimpObject *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_copy (GimpImage *image,
|
2020-05-06 15:46:51 +02:00
|
|
|
GList *drawables,
|
2007-12-14 13:58:10 +00:00
|
|
|
GimpContext *context,
|
|
|
|
GError **error)
|
1997-11-24 22:05:25 +00:00
|
|
|
{
|
2020-05-06 15:46:51 +02:00
|
|
|
GList *iter;
|
|
|
|
gboolean drawables_are_layers = TRUE;
|
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
2020-05-06 15:46:51 +02:00
|
|
|
g_return_val_if_fail (drawables != NULL, NULL);
|
2004-04-14 23:37:34 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2007-12-14 13:58:10 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
1997-11-24 22:05:25 +00:00
|
|
|
|
2020-05-06 15:46:51 +02:00
|
|
|
for (iter = drawables; iter; iter = iter->next)
|
2016-09-19 23:53:40 +02:00
|
|
|
{
|
2020-05-06 15:46:51 +02:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (iter->data), NULL);
|
|
|
|
g_return_val_if_fail (gimp_item_is_attached (iter->data), NULL);
|
|
|
|
|
|
|
|
if (! GIMP_IS_LAYER (iter->data))
|
|
|
|
drawables_are_layers = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only accept multiple drawables for layers. */
|
|
|
|
g_return_val_if_fail (g_list_length (drawables) == 1 || drawables_are_layers, NULL);
|
|
|
|
|
|
|
|
if (drawables_are_layers &&
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
gimp_channel_is_empty (gimp_image_get_mask (image)))
|
2020-05-06 15:46:51 +02:00
|
|
|
{
|
|
|
|
/* Special-casing the 1 layer with no selection case.
|
|
|
|
* It allows us to save the whole layer with all pixels as stored,
|
|
|
|
* not the rendered version of it.
|
|
|
|
*/
|
2016-09-19 23:53:40 +02:00
|
|
|
GimpImage *clip_image;
|
2005-09-05 18:21:51 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
clip_image = gimp_image_new_from_drawables (image->gimp, drawables, FALSE);
|
2016-09-19 23:53:40 +02:00
|
|
|
gimp_container_remove (image->gimp->images, GIMP_OBJECT (clip_image));
|
|
|
|
gimp_set_clipboard_image (image->gimp, clip_image);
|
|
|
|
g_object_unref (clip_image);
|
|
|
|
|
|
|
|
return GIMP_OBJECT (gimp_get_clipboard_image (image->gimp));
|
|
|
|
}
|
2020-05-06 15:46:51 +02:00
|
|
|
else if (drawables_are_layers)
|
|
|
|
{
|
|
|
|
/* Copying multiple layers or specific selection, we copy the
|
|
|
|
* composited pixels as rendered.
|
|
|
|
*/
|
|
|
|
GimpImage *clip_image;
|
|
|
|
GimpBuffer *buffer;
|
|
|
|
|
|
|
|
clip_image = gimp_image_new_from_drawables (image->gimp, drawables, TRUE);
|
|
|
|
gimp_container_remove (image->gimp->images, GIMP_OBJECT (clip_image));
|
|
|
|
buffer = gimp_edit_copy_visible (clip_image, context, error);
|
|
|
|
|
|
|
|
g_object_unref (clip_image);
|
|
|
|
|
|
|
|
return buffer ? GIMP_OBJECT (buffer) : NULL;
|
|
|
|
}
|
2016-09-19 23:53:40 +02:00
|
|
|
else
|
2005-09-05 18:21:51 +00:00
|
|
|
{
|
2016-09-19 23:53:40 +02:00
|
|
|
GimpBuffer *buffer;
|
2005-09-05 18:21:51 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
buffer = gimp_edit_extract (image, drawables, context, FALSE, error);
|
2016-09-19 23:53:40 +02:00
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
|
|
|
gimp_set_clipboard_buffer (image->gimp, buffer);
|
|
|
|
g_object_unref (buffer);
|
|
|
|
|
|
|
|
return GIMP_OBJECT (gimp_get_clipboard_buffer (image->gimp));
|
|
|
|
}
|
2005-09-05 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
1997-11-24 22:05:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-19 23:51:44 +02:00
|
|
|
GimpBuffer *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_copy_visible (GimpImage *image,
|
|
|
|
GimpContext *context,
|
|
|
|
GError **error)
|
2004-12-12 14:01:08 +00:00
|
|
|
{
|
2013-09-13 23:29:06 +02:00
|
|
|
GimpBuffer *buffer;
|
2020-05-26 16:15:15 +02:00
|
|
|
GList *pickables;
|
2004-12-12 14:01:08 +00:00
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
2004-12-12 14:01:08 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2007-12-14 13:58:10 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
2004-12-12 14:01:08 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
pickables = g_list_prepend (NULL, image);
|
|
|
|
buffer = gimp_edit_extract (image, pickables, context, FALSE, error);
|
|
|
|
g_list_free (pickables);
|
2004-12-12 14:01:08 +00:00
|
|
|
|
2005-09-05 18:21:51 +00:00
|
|
|
if (buffer)
|
|
|
|
{
|
2016-09-17 17:39:54 +02:00
|
|
|
gimp_set_clipboard_buffer (image->gimp, buffer);
|
2005-09-05 18:21:51 +00:00
|
|
|
g_object_unref (buffer);
|
2004-12-12 14:01:08 +00:00
|
|
|
|
2016-09-17 17:39:54 +02:00
|
|
|
return gimp_get_clipboard_buffer (image->gimp);
|
2005-09-05 18:21:51 +00:00
|
|
|
}
|
2004-12-12 14:01:08 +00:00
|
|
|
|
2005-09-05 18:21:51 +00:00
|
|
|
return NULL;
|
2004-12-12 14:01:08 +00:00
|
|
|
}
|
|
|
|
|
2018-03-24 12:43:30 -04:00
|
|
|
static gboolean
|
|
|
|
gimp_edit_paste_is_in_place (GimpPasteType paste_type)
|
|
|
|
{
|
|
|
|
switch (paste_type)
|
|
|
|
{
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER:
|
2022-10-29 18:53:44 +00:00
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_OR_FLOATING:
|
2018-03-24 12:43:30 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_IN_PLACE:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO_IN_PLACE:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_IN_PLACE:
|
2022-10-29 18:53:44 +00:00
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_OR_FLOATING_IN_PLACE:
|
2018-03-24 12:43:30 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_return_val_if_reached (FALSE);
|
|
|
|
}
|
|
|
|
|
2019-05-25 17:05:49 +02:00
|
|
|
static gboolean
|
2022-10-29 18:53:44 +00:00
|
|
|
gimp_edit_paste_is_floating (GimpPasteType paste_type,
|
|
|
|
GimpDrawable *drawable)
|
2019-05-25 17:05:49 +02:00
|
|
|
{
|
|
|
|
switch (paste_type)
|
|
|
|
{
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_IN_PLACE:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO_IN_PLACE:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_IN_PLACE:
|
|
|
|
return FALSE;
|
2022-10-29 18:53:44 +00:00
|
|
|
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_OR_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_OR_FLOATING_IN_PLACE:
|
|
|
|
if (GIMP_IS_LAYER_MASK (drawable))
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
2019-05-25 17:05:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g_return_val_if_reached (FALSE);
|
|
|
|
}
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
static GList *
|
|
|
|
gimp_edit_paste_get_layers (GimpImage *image,
|
2022-11-09 17:01:44 +01:00
|
|
|
GList *drawables,
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GimpObject *paste,
|
|
|
|
GimpPasteType *paste_type)
|
2017-11-12 18:41:05 +01:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *layers = NULL;
|
2017-11-12 18:41:05 +01:00
|
|
|
const Babl *floating_format;
|
|
|
|
|
|
|
|
/* change paste type to NEW_LAYER for cases where we can't attach a
|
|
|
|
* floating selection
|
|
|
|
*/
|
2022-11-09 17:01:44 +01:00
|
|
|
if (g_list_length (drawables) != 1 ||
|
|
|
|
gimp_viewable_get_children (drawables->data) ||
|
|
|
|
gimp_item_is_content_locked (drawables->data, NULL))
|
2017-11-12 18:41:05 +01:00
|
|
|
{
|
2018-03-24 12:43:30 -04:00
|
|
|
if (gimp_edit_paste_is_in_place (*paste_type))
|
|
|
|
*paste_type = GIMP_PASTE_TYPE_NEW_LAYER_IN_PLACE;
|
|
|
|
else
|
|
|
|
*paste_type = GIMP_PASTE_TYPE_NEW_LAYER;
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* floating pastes always have the pasted-to drawable's format with
|
|
|
|
* alpha; if drawable == NULL, user is pasting into an empty image
|
|
|
|
*/
|
2022-11-09 17:01:44 +01:00
|
|
|
if (drawables && gimp_edit_paste_is_floating (*paste_type, drawables->data))
|
|
|
|
floating_format = gimp_drawable_get_format_with_alpha (drawables->data);
|
2017-11-12 18:41:05 +01:00
|
|
|
else
|
|
|
|
floating_format = gimp_image_get_layer_format (image, TRUE);
|
|
|
|
|
|
|
|
if (GIMP_IS_IMAGE (paste))
|
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *iter;
|
2017-11-12 18:41:05 +01:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
layers = g_list_copy (gimp_image_get_layer_iter (GIMP_IMAGE (paste)));
|
2017-11-12 18:41:05 +01:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
if (g_list_length (layers) > 1)
|
2017-11-12 18:41:05 +01:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
if (gimp_edit_paste_is_in_place (*paste_type))
|
|
|
|
*paste_type = GIMP_PASTE_TYPE_NEW_LAYER_IN_PLACE;
|
2019-01-02 00:14:35 +01:00
|
|
|
else
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
*paste_type = GIMP_PASTE_TYPE_NEW_LAYER;
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
for (iter = layers; iter; iter = iter->next)
|
2017-11-12 18:41:05 +01:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GType layer_type;
|
2017-11-12 18:41:05 +01:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
switch (*paste_type)
|
2017-11-12 18:41:05 +01:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
case GIMP_PASTE_TYPE_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_IN_PLACE:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO_IN_PLACE:
|
|
|
|
/* when pasting as floating make sure gimp_item_convert()
|
|
|
|
* will turn group layers into normal layers, otherwise use
|
|
|
|
* the same layer type so e.g. text information gets
|
|
|
|
* preserved. See issue #2667.
|
|
|
|
*/
|
|
|
|
if (GIMP_IS_GROUP_LAYER (iter->data))
|
|
|
|
layer_type = GIMP_TYPE_LAYER;
|
|
|
|
else
|
|
|
|
layer_type = G_TYPE_FROM_INSTANCE (iter->data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_IN_PLACE:
|
|
|
|
layer_type = G_TYPE_FROM_INSTANCE (iter->data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_return_val_if_reached (NULL);
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
iter->data = GIMP_LAYER (gimp_item_convert (GIMP_ITEM (iter->data),
|
|
|
|
image, layer_type));
|
|
|
|
|
|
|
|
switch (*paste_type)
|
|
|
|
{
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_IN_PLACE:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO_IN_PLACE:
|
|
|
|
/* when pasting as floating selection, get rid of the layer mask,
|
|
|
|
* and make sure the layer has the right format
|
|
|
|
*/
|
|
|
|
if (gimp_layer_get_mask (iter->data))
|
|
|
|
gimp_layer_apply_mask (iter->data, GIMP_MASK_DISCARD, FALSE);
|
|
|
|
|
|
|
|
if (gimp_drawable_get_format (GIMP_DRAWABLE (iter->data)) !=
|
|
|
|
floating_format)
|
|
|
|
{
|
|
|
|
gimp_drawable_convert_type (GIMP_DRAWABLE (iter->data), image,
|
2022-11-09 17:01:44 +01:00
|
|
|
gimp_drawable_get_base_type (drawables->data),
|
|
|
|
gimp_drawable_get_precision (drawables->data),
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
TRUE,
|
|
|
|
NULL, NULL,
|
|
|
|
GEGL_DITHER_NONE, GEGL_DITHER_NONE,
|
|
|
|
FALSE, NULL);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (GIMP_IS_BUFFER (paste))
|
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GimpLayer *layer;
|
|
|
|
|
2017-11-12 18:41:05 +01:00
|
|
|
layer = gimp_layer_new_from_buffer (GIMP_BUFFER (paste), image,
|
|
|
|
floating_format,
|
|
|
|
_("Pasted Layer"),
|
|
|
|
GIMP_OPACITY_OPAQUE,
|
|
|
|
gimp_image_get_default_new_layer_mode (image));
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
|
|
|
|
layers = g_list_prepend (layers, layer);
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
return layers;
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_edit_paste_get_viewport_offset (GimpImage *image,
|
2022-11-09 17:01:44 +01:00
|
|
|
GList *drawables,
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *pasted_layers,
|
2017-11-12 18:41:05 +01:00
|
|
|
gint viewport_x,
|
|
|
|
gint viewport_y,
|
|
|
|
gint viewport_width,
|
|
|
|
gint viewport_height,
|
|
|
|
gint *offset_x,
|
|
|
|
gint *offset_y)
|
1997-11-24 22:05:25 +00:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *iter;
|
2016-09-19 17:30:41 +02:00
|
|
|
gint image_width;
|
|
|
|
gint image_height;
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
gint width = 0;
|
|
|
|
gint height = 0;
|
2016-09-19 17:30:41 +02:00
|
|
|
gboolean clamp_to_image = TRUE;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (image));
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
g_return_if_fail (pasted_layers != NULL);
|
2016-09-19 17:30:41 +02:00
|
|
|
g_return_if_fail (offset_x != NULL);
|
|
|
|
g_return_if_fail (offset_y != NULL);
|
1997-11-24 22:05:25 +00:00
|
|
|
|
2012-07-30 16:20:11 +02:00
|
|
|
image_width = gimp_image_get_width (image);
|
|
|
|
image_height = gimp_image_get_height (image);
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
for (iter = pasted_layers; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
gint layer_width;
|
|
|
|
gint layer_height;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_VIEWABLE (iter->data));
|
|
|
|
gimp_viewable_get_size (iter->data, &layer_width, &layer_height);
|
|
|
|
|
|
|
|
width = MAX (width, layer_width);
|
|
|
|
height = MAX (height, layer_height);
|
|
|
|
}
|
2012-07-30 16:20:11 +02:00
|
|
|
|
|
|
|
if (viewport_width == image_width &&
|
|
|
|
viewport_height == image_height)
|
|
|
|
{
|
|
|
|
/* if the whole image is visible, act as if there was no viewport */
|
|
|
|
|
|
|
|
viewport_x = 0;
|
|
|
|
viewport_y = 0;
|
|
|
|
viewport_width = 0;
|
|
|
|
viewport_height = 0;
|
|
|
|
}
|
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
if (drawables)
|
2001-06-26 12:09:43 +00:00
|
|
|
{
|
2004-01-15 14:36:43 +00:00
|
|
|
/* if pasting to a drawable */
|
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
GimpDrawable *drawable;
|
2016-09-21 09:22:30 +02:00
|
|
|
GimpContainer *children;
|
|
|
|
gint off_x, off_y;
|
|
|
|
gint target_x, target_y;
|
|
|
|
gint target_width, target_height;
|
|
|
|
gint paste_x, paste_y;
|
|
|
|
gint paste_width, paste_height;
|
|
|
|
gboolean have_mask;
|
2004-01-15 14:36:43 +00:00
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
/* We paste to the top drawable. */
|
|
|
|
drawable = gimp_edit_paste_get_top_item (drawables);
|
|
|
|
|
2016-09-21 00:53:42 +02:00
|
|
|
have_mask = ! gimp_channel_is_empty (gimp_image_get_mask (image));
|
|
|
|
|
2008-11-02 23:03:29 +00:00
|
|
|
gimp_item_get_offset (GIMP_ITEM (drawable), &off_x, &off_y);
|
2016-09-21 09:22:30 +02:00
|
|
|
|
|
|
|
children = gimp_viewable_get_children (GIMP_VIEWABLE (drawable));
|
|
|
|
|
|
|
|
if (children && gimp_container_get_n_children (children) == 0)
|
|
|
|
{
|
|
|
|
/* treat empty layer groups as image-sized, use the selection
|
|
|
|
* as target
|
|
|
|
*/
|
|
|
|
gimp_item_bounds (GIMP_ITEM (gimp_image_get_mask (image)),
|
|
|
|
&target_x, &target_y,
|
|
|
|
&target_width, &target_height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_item_mask_intersect (GIMP_ITEM (drawable),
|
|
|
|
&target_x, &target_y,
|
|
|
|
&target_width, &target_height);
|
|
|
|
}
|
2004-01-15 14:36:43 +00:00
|
|
|
|
2016-09-21 00:53:42 +02:00
|
|
|
if (! have_mask && /* if we have no mask */
|
|
|
|
viewport_width > 0 && /* and we have a viewport */
|
2004-01-15 14:36:43 +00:00
|
|
|
viewport_height > 0 &&
|
2016-09-21 00:53:42 +02:00
|
|
|
(width < target_width || /* and the paste is smaller than the target */
|
|
|
|
height < target_height) &&
|
2012-07-30 16:20:11 +02:00
|
|
|
|
|
|
|
/* and the viewport intersects with the target */
|
2004-01-15 14:36:43 +00:00
|
|
|
gimp_rectangle_intersect (viewport_x, viewport_y,
|
|
|
|
viewport_width, viewport_height,
|
2016-09-21 00:53:42 +02:00
|
|
|
off_x, off_y, /* target_x,y are 0 */
|
|
|
|
target_width, target_height,
|
2004-01-15 14:36:43 +00:00
|
|
|
&paste_x, &paste_y,
|
|
|
|
&paste_width, &paste_height))
|
|
|
|
{
|
2012-07-30 16:20:11 +02:00
|
|
|
/* center on the viewport */
|
|
|
|
|
2016-09-19 17:30:41 +02:00
|
|
|
*offset_x = paste_x + (paste_width - width) / 2;
|
|
|
|
*offset_y = paste_y + (paste_height- height) / 2;
|
2004-01-15 14:36:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-07-30 16:20:11 +02:00
|
|
|
/* otherwise center on the target */
|
|
|
|
|
2016-09-21 00:53:42 +02:00
|
|
|
*offset_x = off_x + target_x + (target_width - width) / 2;
|
|
|
|
*offset_y = off_y + target_y + (target_height - height) / 2;
|
2012-07-30 16:20:11 +02:00
|
|
|
|
|
|
|
/* and keep it that way */
|
|
|
|
clamp_to_image = FALSE;
|
2004-01-15 14:36:43 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-30 16:20:11 +02:00
|
|
|
else if (viewport_width > 0 && /* if we have a viewport */
|
|
|
|
viewport_height > 0 &&
|
|
|
|
(width < image_width || /* and the paste is */
|
|
|
|
height < image_height)) /* smaller than the image */
|
2004-01-15 14:36:43 +00:00
|
|
|
{
|
2012-07-30 16:20:11 +02:00
|
|
|
/* center on the viewport */
|
2004-01-15 14:36:43 +00:00
|
|
|
|
2016-09-19 17:30:41 +02:00
|
|
|
*offset_x = viewport_x + (viewport_width - width) / 2;
|
|
|
|
*offset_y = viewport_y + (viewport_height - height) / 2;
|
2001-06-26 12:09:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-07-30 16:20:11 +02:00
|
|
|
/* otherwise center on the image */
|
1997-11-24 22:05:25 +00:00
|
|
|
|
2016-09-19 17:30:41 +02:00
|
|
|
*offset_x = (image_width - width) / 2;
|
|
|
|
*offset_y = (image_height - height) / 2;
|
2004-09-17 09:14:02 +00:00
|
|
|
|
2012-07-30 16:20:11 +02:00
|
|
|
/* and keep it that way */
|
|
|
|
clamp_to_image = FALSE;
|
|
|
|
}
|
2004-09-17 09:14:02 +00:00
|
|
|
|
2012-07-30 16:20:11 +02:00
|
|
|
if (clamp_to_image)
|
|
|
|
{
|
|
|
|
/* 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).
|
|
|
|
*/
|
2016-09-19 17:30:41 +02:00
|
|
|
*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);
|
2012-07-30 16:20:11 +02:00
|
|
|
}
|
2016-09-19 17:30:41 +02:00
|
|
|
}
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
static GList *
|
2017-11-12 18:41:05 +01:00
|
|
|
gimp_edit_paste_paste (GimpImage *image,
|
2022-11-09 17:01:44 +01:00
|
|
|
GList *drawables,
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *layers,
|
2017-11-12 18:41:05 +01:00
|
|
|
GimpPasteType paste_type,
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
gboolean use_offset,
|
2017-11-12 18:41:05 +01:00
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *iter;
|
2001-03-30 11:16:05 +00:00
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
g_return_val_if_fail (paste_type > GIMP_PASTE_TYPE_FLOATING_INTO_IN_PLACE ||
|
|
|
|
g_list_length (drawables) == 1, NULL);
|
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_EDIT_PASTE,
|
2010-06-08 14:24:11 +03:00
|
|
|
C_("undo-type", "Paste"));
|
2004-10-19 22:52:04 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
for (iter = layers; iter; iter = iter->next)
|
2016-09-19 23:53:40 +02:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
/* Layers for in-place paste are already translated. */
|
|
|
|
if (use_offset)
|
|
|
|
gimp_item_translate (GIMP_ITEM (iter->data), offset_x, offset_y, FALSE);
|
1997-11-24 22:05:25 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
switch (paste_type)
|
|
|
|
{
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_IN_PLACE:
|
|
|
|
/* 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)))
|
|
|
|
gimp_channel_clear (gimp_image_get_mask (image), NULL, TRUE);
|
2016-09-19 23:53:40 +02:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
/* fall thru */
|
2016-09-19 23:53:40 +02:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO:
|
|
|
|
case GIMP_PASTE_TYPE_FLOATING_INTO_IN_PLACE:
|
2022-11-09 17:01:44 +01:00
|
|
|
floating_sel_attach (iter->data, drawables->data);
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
break;
|
2016-09-21 11:15:34 +02:00
|
|
|
|
2022-10-29 18:53:44 +00:00
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_OR_FLOATING:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_OR_FLOATING_IN_PLACE:
|
2022-11-09 17:01:44 +01:00
|
|
|
if (g_list_length (drawables) == 1 && GIMP_IS_LAYER_MASK (drawables->data))
|
2022-10-29 18:53:44 +00:00
|
|
|
{
|
|
|
|
if (! gimp_channel_is_empty (gimp_image_get_mask (image)))
|
|
|
|
gimp_channel_clear (gimp_image_get_mask (image), NULL, TRUE);
|
2022-11-09 17:01:44 +01:00
|
|
|
floating_sel_attach (iter->data, drawables->data);
|
2022-10-29 18:53:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fall thru if not a layer mask */
|
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER:
|
|
|
|
case GIMP_PASTE_TYPE_NEW_LAYER_IN_PLACE:
|
|
|
|
{
|
|
|
|
GimpLayer *parent = NULL;
|
|
|
|
gint position = 0;
|
|
|
|
|
|
|
|
/* always add on top of a passed layer, where we would attach
|
|
|
|
* a floating selection
|
|
|
|
*/
|
2022-11-09 17:01:44 +01:00
|
|
|
if (g_list_length (drawables) > 0 && GIMP_IS_LAYER (drawables->data))
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
{
|
2022-11-09 17:01:44 +01:00
|
|
|
GimpDrawable *top_drawable;
|
|
|
|
|
|
|
|
top_drawable = gimp_edit_paste_get_top_item (drawables);
|
|
|
|
parent = gimp_layer_get_parent (GIMP_LAYER (top_drawable));
|
|
|
|
position = gimp_item_get_index (GIMP_ITEM (top_drawable));
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gimp_image_add_layer (image, iter->data, parent, position, TRUE);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-09-19 23:53:40 +02:00
|
|
|
}
|
2000-02-10 21:54:12 +00:00
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
gimp_image_undo_group_end (image);
|
2001-06-26 12:09:43 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
return layers;
|
1997-11-24 22:05:25 +00:00
|
|
|
}
|
2000-01-16 09:34:45 +00:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *
|
2017-11-12 18:41:05 +01:00
|
|
|
gimp_edit_paste (GimpImage *image,
|
2022-11-09 17:01:44 +01:00
|
|
|
GList *drawables,
|
2017-11-12 18:41:05 +01:00
|
|
|
GimpObject *paste,
|
|
|
|
GimpPasteType paste_type,
|
|
|
|
gint viewport_x,
|
|
|
|
gint viewport_y,
|
|
|
|
gint viewport_width,
|
|
|
|
gint viewport_height)
|
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
GList *layers;
|
|
|
|
gboolean use_offset = FALSE;
|
|
|
|
gint offset_x = 0;
|
|
|
|
gint offset_y = 0;
|
2017-11-12 18:41:05 +01:00
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (paste) || GIMP_IS_BUFFER (paste), NULL);
|
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
for (GList *iter = drawables; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (iter->data), NULL);
|
|
|
|
g_return_val_if_fail (gimp_item_is_attached (GIMP_ITEM (iter->data)), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
layers = gimp_edit_paste_get_layers (image, drawables, paste, &paste_type);
|
2017-11-12 18:41:05 +01:00
|
|
|
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
if (! layers)
|
2017-11-12 18:41:05 +01:00
|
|
|
return NULL;
|
|
|
|
|
2018-03-24 12:43:30 -04:00
|
|
|
if (gimp_edit_paste_is_in_place (paste_type))
|
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
if (GIMP_IS_BUFFER (paste))
|
|
|
|
{
|
|
|
|
GimpBuffer *buffer = GIMP_BUFFER (paste);
|
|
|
|
|
|
|
|
use_offset = TRUE;
|
|
|
|
offset_x = buffer->offset_x;
|
|
|
|
offset_y = buffer->offset_y;
|
|
|
|
}
|
2018-03-24 12:43:30 -04:00
|
|
|
}
|
|
|
|
else
|
2017-11-12 18:41:05 +01:00
|
|
|
{
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
use_offset = TRUE;
|
2022-11-09 17:01:44 +01:00
|
|
|
gimp_edit_paste_get_viewport_offset (image, drawables, layers,
|
2017-11-12 18:41:05 +01:00
|
|
|
viewport_x,
|
|
|
|
viewport_y,
|
|
|
|
viewport_width,
|
|
|
|
viewport_height,
|
|
|
|
&offset_x,
|
|
|
|
&offset_y);
|
|
|
|
}
|
|
|
|
|
2022-11-09 17:01:44 +01:00
|
|
|
return gimp_edit_paste_paste (image, drawables, layers, paste_type,
|
app, libgimp, pdb, plug-ins: allow pasting multiple full layers.
When a selection exists, we are copying then pasting the selection
contents. In particular, with multi-layer selection, it means pasting a
merged result of the selected layers (like a sample merged but limited
to selected layers).
Yet when no selection exists, with a single layer selected, a cut in
particular would remove the layer fully, then a paste would copy it
elsewhere (in the same image or even on a different image). This was
still working, but not with multiple layers. This is now fixed and we
can now copy/cut then paste several layers (without merge), which is
sometimes a very practical way to move layers (sometimes simpler than
drag'n drop, especially between images).
As a consequence, the PDB function gimp_edit_paste() now also returns an
array of layers (not a single layer).
2021-04-24 22:45:09 +02:00
|
|
|
use_offset, offset_x, offset_y);
|
2017-11-12 18:41:05 +01:00
|
|
|
}
|
|
|
|
|
2017-05-01 19:10:52 +02:00
|
|
|
GimpImage *
|
|
|
|
gimp_edit_paste_as_new_image (Gimp *gimp,
|
|
|
|
GimpObject *paste)
|
|
|
|
{
|
|
|
|
GimpImage *image = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (paste) || GIMP_IS_BUFFER (paste), NULL);
|
|
|
|
|
|
|
|
if (GIMP_IS_IMAGE (paste))
|
|
|
|
{
|
|
|
|
image = gimp_image_duplicate (GIMP_IMAGE (paste));
|
|
|
|
}
|
|
|
|
else if (GIMP_IS_BUFFER (paste))
|
|
|
|
{
|
|
|
|
image = gimp_image_new_from_buffer (gimp, GIMP_BUFFER (paste));
|
|
|
|
}
|
|
|
|
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
2005-09-02 22:50:06 +00:00
|
|
|
const gchar *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_named_cut (GimpImage *image,
|
|
|
|
const gchar *name,
|
2020-05-26 16:15:15 +02:00
|
|
|
GList *drawables,
|
2007-12-14 13:58:10 +00:00
|
|
|
GimpContext *context,
|
|
|
|
GError **error)
|
2005-09-02 22:50:06 +00:00
|
|
|
{
|
2005-09-05 18:21:51 +00:00
|
|
|
GimpBuffer *buffer;
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
2005-09-02 22:50:06 +00:00
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2007-12-14 13:58:10 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
buffer = gimp_edit_extract (image, drawables, context, TRUE, error);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
2005-09-05 18:21:51 +00:00
|
|
|
gimp_object_set_name (GIMP_OBJECT (buffer), name);
|
2006-03-28 17:08:36 +00:00
|
|
|
gimp_container_add (image->gimp->named_buffers, GIMP_OBJECT (buffer));
|
2005-09-05 18:21:51 +00:00
|
|
|
g_object_unref (buffer);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2009-08-31 22:47:18 +02:00
|
|
|
return gimp_object_get_name (buffer);
|
2005-09-02 22:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const gchar *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_named_copy (GimpImage *image,
|
|
|
|
const gchar *name,
|
2020-05-26 16:15:15 +02:00
|
|
|
GList *drawables,
|
2007-12-14 13:58:10 +00:00
|
|
|
GimpContext *context,
|
|
|
|
GError **error)
|
2005-09-02 22:50:06 +00:00
|
|
|
{
|
2005-09-05 18:21:51 +00:00
|
|
|
GimpBuffer *buffer;
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
2005-09-02 22:50:06 +00:00
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2007-12-14 13:58:10 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
buffer = gimp_edit_extract (image, drawables, context, FALSE, error);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
2005-09-05 18:21:51 +00:00
|
|
|
gimp_object_set_name (GIMP_OBJECT (buffer), name);
|
2006-03-28 17:08:36 +00:00
|
|
|
gimp_container_add (image->gimp->named_buffers, GIMP_OBJECT (buffer));
|
2005-09-05 18:21:51 +00:00
|
|
|
g_object_unref (buffer);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2009-08-31 22:47:18 +02:00
|
|
|
return gimp_object_get_name (buffer);
|
2005-09-02 22:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const gchar *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_named_copy_visible (GimpImage *image,
|
|
|
|
const gchar *name,
|
|
|
|
GimpContext *context,
|
|
|
|
GError **error)
|
2005-09-02 22:50:06 +00:00
|
|
|
{
|
2013-09-13 23:29:06 +02:00
|
|
|
GimpBuffer *buffer;
|
2020-05-26 16:15:15 +02:00
|
|
|
GList *pickables;
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
|
2005-09-02 22:50:06 +00:00
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2007-12-14 13:58:10 +00:00
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
pickables = g_list_prepend (NULL, image);
|
|
|
|
buffer = gimp_edit_extract (image, pickables, context, FALSE, error);
|
|
|
|
g_list_free (pickables);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
|
|
|
if (buffer)
|
|
|
|
{
|
2005-09-05 18:21:51 +00:00
|
|
|
gimp_object_set_name (GIMP_OBJECT (buffer), name);
|
2006-03-28 17:08:36 +00:00
|
|
|
gimp_container_add (image->gimp->named_buffers, GIMP_OBJECT (buffer));
|
2005-09-05 18:21:51 +00:00
|
|
|
g_object_unref (buffer);
|
2005-09-02 22:50:06 +00:00
|
|
|
|
2009-08-31 22:47:18 +02:00
|
|
|
return gimp_object_get_name (buffer);
|
2005-09-02 22:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-10-08 17:20:06 +00:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
/**
|
|
|
|
* gimp_edit_extract:
|
|
|
|
* @image:
|
|
|
|
* @pickables:
|
|
|
|
* @context:
|
|
|
|
* @cut_pixels:
|
|
|
|
* @error:
|
|
|
|
*
|
|
|
|
* Extracts the selected part of @image from the list of @pickables.
|
|
|
|
* If @cut_pixels is %TRUE, and there is only one pickable input, and if
|
|
|
|
* this pickable is a #GimpDrawable, then the selected pixels will be
|
|
|
|
* effectively erased from the input pickable.
|
|
|
|
* Otherwise @cut_pixels has no additional effect.
|
|
|
|
* Note that all @pickables must belong to the same @image.
|
|
|
|
*
|
|
|
|
* Returns: a #GimpBuffer of the selected part of @image as if only the
|
|
|
|
* selected @pickables were present (composited according to their
|
|
|
|
* properties, unless there is only one pickable, in which case direct
|
|
|
|
* pixel information is used without composition).
|
|
|
|
*/
|
2005-09-05 18:21:51 +00:00
|
|
|
static GimpBuffer *
|
2007-12-14 13:58:10 +00:00
|
|
|
gimp_edit_extract (GimpImage *image,
|
2020-05-26 16:15:15 +02:00
|
|
|
GList *pickables,
|
2007-12-14 13:58:10 +00:00
|
|
|
GimpContext *context,
|
|
|
|
gboolean cut_pixels,
|
|
|
|
GError **error)
|
2003-12-09 16:20:31 +00:00
|
|
|
{
|
2012-03-21 14:38:19 +01:00
|
|
|
GeglBuffer *buffer;
|
|
|
|
gint offset_x;
|
|
|
|
gint offset_y;
|
2003-12-09 16:20:31 +00:00
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
g_return_val_if_fail (g_list_length (pickables) > 0, NULL);
|
|
|
|
|
|
|
|
if (g_list_length (pickables) > 1 ||
|
|
|
|
! GIMP_IS_DRAWABLE (pickables->data))
|
|
|
|
cut_pixels = FALSE;
|
|
|
|
|
2003-12-09 16:20:31 +00:00
|
|
|
if (cut_pixels)
|
2015-06-16 23:16:54 +02:00
|
|
|
gimp_image_undo_group_start (image, GIMP_UNDO_GROUP_EDIT_CUT,
|
|
|
|
C_("undo-type", "Cut"));
|
2003-12-09 16:20:31 +00:00
|
|
|
|
2006-03-28 17:08:36 +00:00
|
|
|
/* Cut/copy the mask portion from the image */
|
2012-03-21 14:43:38 +01:00
|
|
|
buffer = gimp_selection_extract (GIMP_SELECTION (gimp_image_get_mask (image)),
|
2020-05-26 16:15:15 +02:00
|
|
|
pickables, context,
|
2012-03-21 14:43:38 +01:00
|
|
|
cut_pixels, FALSE, FALSE,
|
|
|
|
&offset_x, &offset_y, error);
|
2003-12-09 16:20:31 +00:00
|
|
|
|
|
|
|
if (cut_pixels)
|
2006-03-28 17:08:36 +00:00
|
|
|
gimp_image_undo_group_end (image);
|
2003-12-09 16:20:31 +00:00
|
|
|
|
2012-03-21 14:38:19 +01:00
|
|
|
if (buffer)
|
2010-03-19 09:52:29 +01:00
|
|
|
{
|
2017-05-01 18:36:33 +02:00
|
|
|
GimpBuffer *gimp_buffer;
|
|
|
|
gdouble res_x;
|
|
|
|
gdouble res_y;
|
|
|
|
|
|
|
|
gimp_buffer = gimp_buffer_new (buffer, _("Global Buffer"),
|
|
|
|
offset_x, offset_y, FALSE);
|
2012-03-21 14:38:19 +01:00
|
|
|
g_object_unref (buffer);
|
2012-03-14 23:09:36 +01:00
|
|
|
|
2017-05-01 18:36:33 +02:00
|
|
|
gimp_image_get_resolution (image, &res_x, &res_y);
|
|
|
|
gimp_buffer_set_resolution (gimp_buffer, res_x, res_y);
|
|
|
|
gimp_buffer_set_unit (gimp_buffer, gimp_image_get_unit (image));
|
|
|
|
|
2020-05-26 16:15:15 +02:00
|
|
|
if (GIMP_IS_COLOR_MANAGED (pickables->data))
|
2015-06-16 23:16:54 +02:00
|
|
|
{
|
2015-08-16 13:14:56 +02:00
|
|
|
GimpColorProfile *profile =
|
2020-05-26 16:15:15 +02:00
|
|
|
gimp_color_managed_get_color_profile (GIMP_COLOR_MANAGED (pickables->data));
|
2015-06-16 23:16:54 +02:00
|
|
|
|
2015-09-03 01:36:02 +02:00
|
|
|
if (profile)
|
|
|
|
gimp_buffer_set_color_profile (gimp_buffer, profile);
|
2015-06-16 23:16:54 +02:00
|
|
|
}
|
|
|
|
|
2012-03-21 14:38:19 +01:00
|
|
|
return gimp_buffer;
|
2010-03-19 09:52:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2022-11-09 17:01:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the visually top item. */
|
|
|
|
static GimpDrawable *
|
|
|
|
gimp_edit_paste_get_top_item (GList *drawables)
|
|
|
|
{
|
|
|
|
GList *iter;
|
|
|
|
GimpDrawable *top = NULL;
|
|
|
|
GList *top_path = NULL;
|
|
|
|
|
|
|
|
for (iter = drawables; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
if (top == NULL)
|
|
|
|
{
|
|
|
|
top = iter->data;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GList *path = gimp_item_get_path (iter->data);
|
|
|
|
GList *p_iter;
|
|
|
|
GList *tp_iter;
|
|
|
|
|
|
|
|
for (p_iter = path, tp_iter = top_path; p_iter || tp_iter; p_iter = p_iter->next, tp_iter = tp_iter->next)
|
|
|
|
{
|
|
|
|
if (tp_iter == NULL)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (p_iter == NULL ||
|
|
|
|
GPOINTER_TO_UINT (p_iter->data) < GPOINTER_TO_UINT (tp_iter->data))
|
|
|
|
{
|
|
|
|
g_list_free (top_path);
|
|
|
|
top_path = path;
|
|
|
|
path = NULL;
|
|
|
|
top = iter->data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (GPOINTER_TO_UINT (p_iter->data) > GPOINTER_TO_UINT (tp_iter->data))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_list_free (path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free (top_path);
|
|
|
|
return top;
|
|
|
|
}
|