2000-06-01 20:20:13 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2003-07-03 08:47:26 +08:00
|
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
2000-06-01 20:20:13 +08:00
|
|
|
*
|
|
|
|
* gimpedit_pdb.c
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2000-06-01 20:20:13 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2000-06-01 20:20:13 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2000-06-01 20:20:13 +08:00
|
|
|
*/
|
|
|
|
|
2007-01-09 18:52:47 +08:00
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
2000-06-01 20:20:13 +08:00
|
|
|
|
2002-05-14 07:30:23 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-06-01 20:20:13 +08:00
|
|
|
#include "gimp.h"
|
|
|
|
|
2010-07-07 17:43:10 +08:00
|
|
|
|
|
|
|
/**
|
2019-07-31 16:04:43 +08:00
|
|
|
* SECTION: gimpedit
|
2010-07-07 17:43:10 +08:00
|
|
|
* @title: gimpedit
|
|
|
|
* @short_description: Edit menu functions (cut, copy, paste, clear, etc.)
|
|
|
|
*
|
|
|
|
* Edit menu functions (cut, copy, paste, clear, etc.)
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_edit_cut:
|
2019-08-13 19:59:33 +08:00
|
|
|
* @drawable: The drawable to cut from.
|
|
|
|
*
|
|
|
|
* Cut from the specified drawable.
|
|
|
|
*
|
|
|
|
* If there is a selection in the image, then the area specified by the
|
|
|
|
* selection is cut from the specified drawable and placed in an
|
|
|
|
* internal GIMP edit buffer. It can subsequently be retrieved using
|
|
|
|
* the gimp_edit_paste() command. If there is no selection, then the
|
|
|
|
* specified drawable will be removed and its contents stored in the
|
|
|
|
* internal GIMP edit buffer. This procedure will fail if the selected
|
|
|
|
* area lies completely outside the bounds of the current drawable and
|
|
|
|
* there is nothing to copy from.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the cut was successful, FALSE if there was nothing to copy from.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gimp_edit_cut (GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gboolean non_empty = FALSE;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
2019-08-13 19:59:33 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-cut",
|
|
|
|
args);
|
|
|
|
else
|
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-cut",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
|
|
|
non_empty = g_value_get_boolean (gimp_value_array_index (return_vals, 1));
|
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return non_empty;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_edit_copy:
|
2019-08-13 19:59:33 +08:00
|
|
|
* @drawable: The drawable to copy from.
|
|
|
|
*
|
|
|
|
* Copy from the specified drawable.
|
|
|
|
*
|
|
|
|
* If there is a selection in the image, then the area specified by the
|
|
|
|
* selection is copied from the specified drawable and placed in an
|
|
|
|
* internal GIMP edit buffer. It can subsequently be retrieved using
|
|
|
|
* the gimp_edit_paste() command. If there is no selection, then the
|
|
|
|
* specified drawable's contents will be stored in the internal GIMP
|
|
|
|
* edit buffer. This procedure will fail if the selected area lies
|
|
|
|
* completely outside the bounds of the current drawable and there is
|
|
|
|
* nothing to copy from.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the cut was successful, FALSE if there was nothing to copy from.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gimp_edit_copy (GimpDrawable *drawable)
|
|
|
|
{
|
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gboolean non_empty = FALSE;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
2019-08-13 19:59:33 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-copy",
|
|
|
|
args);
|
|
|
|
else
|
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-copy",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
|
|
|
non_empty = g_value_get_boolean (gimp_value_array_index (return_vals, 1));
|
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return non_empty;
|
|
|
|
}
|
|
|
|
|
2004-12-12 22:01:08 +08:00
|
|
|
/**
|
|
|
|
* gimp_edit_copy_visible:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image to copy from.
|
2004-12-12 22:01:08 +08:00
|
|
|
*
|
|
|
|
* Copy from the projection.
|
|
|
|
*
|
|
|
|
* If there is a selection in the image, then the area specified by the
|
|
|
|
* selection is copied from the projection and placed in an internal
|
|
|
|
* GIMP edit buffer. It can subsequently be retrieved using the
|
2006-06-14 16:32:08 +08:00
|
|
|
* gimp_edit_paste() command. If there is no selection, then the
|
2004-12-12 22:01:08 +08:00
|
|
|
* projection's contents will be stored in the internal GIMP edit
|
|
|
|
* buffer.
|
|
|
|
*
|
2008-07-15 06:52:14 +08:00
|
|
|
* Returns: TRUE if the copy was successful.
|
2004-12-12 22:01:08 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.2
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2004-12-12 22:01:08 +08:00
|
|
|
gboolean
|
2019-08-11 20:20:05 +08:00
|
|
|
gimp_edit_copy_visible (GimpImage *image)
|
2004-12-12 22:01:08 +08:00
|
|
|
{
|
2019-08-07 03:34:00 +08:00
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2004-12-12 22:01:08 +08:00
|
|
|
gboolean non_empty = FALSE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-08-07 03:34:00 +08:00
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-copy-visible",
|
|
|
|
args);
|
|
|
|
else
|
2019-08-07 03:44:26 +08:00
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-copy-visible",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2004-12-12 22:01:08 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
|
|
|
non_empty = g_value_get_boolean (gimp_value_array_index (return_vals, 1));
|
2004-12-12 22:01:08 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2004-12-12 22:01:08 +08:00
|
|
|
|
|
|
|
return non_empty;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_edit_paste:
|
2019-08-13 19:59:33 +08:00
|
|
|
* @drawable: The drawable to paste to.
|
|
|
|
* @paste_into: Clear selection, or paste behind it?
|
|
|
|
*
|
|
|
|
* Paste buffer to the specified drawable.
|
|
|
|
*
|
|
|
|
* This procedure pastes a copy of the internal GIMP edit buffer to the
|
|
|
|
* specified drawable. The GIMP edit buffer will be empty unless a call
|
|
|
|
* was previously made to either gimp_edit_cut() or gimp_edit_copy().
|
|
|
|
* The \"paste_into\" option specifies whether to clear the current
|
|
|
|
* image selection, or to paste the buffer \"behind\" the selection.
|
|
|
|
* This allows the selection to act as a mask for the pasted buffer.
|
|
|
|
* Anywhere that the selection mask is non-zero, the pasted buffer will
|
|
|
|
* show through. The pasted buffer will be a new layer in the image
|
|
|
|
* which is designated as the image floating selection. If the image
|
|
|
|
* has a floating selection at the time of pasting, the old floating
|
|
|
|
* selection will be anchored to its drawable before the new floating
|
|
|
|
* selection is added. This procedure returns the new floating layer.
|
|
|
|
* The resulting floating selection will already be attached to the
|
|
|
|
* specified drawable, and a subsequent call to floating_sel_attach is
|
|
|
|
* not needed.
|
|
|
|
*
|
2019-08-15 18:12:25 +08:00
|
|
|
* Returns: (transfer none): The new floating selection.
|
2019-08-13 19:59:33 +08:00
|
|
|
**/
|
|
|
|
GimpLayer *
|
|
|
|
gimp_edit_paste (GimpDrawable *drawable,
|
|
|
|
gboolean paste_into)
|
|
|
|
{
|
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
GimpLayer *floating_sel = NULL;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
2019-08-13 19:59:33 +08:00
|
|
|
G_TYPE_BOOLEAN, paste_into,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-paste",
|
|
|
|
args);
|
|
|
|
else
|
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-paste",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
2019-08-29 17:25:35 +08:00
|
|
|
floating_sel = g_value_get_object (gimp_value_array_index (return_vals, 1));
|
2019-08-13 19:59:33 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return floating_sel;
|
|
|
|
}
|
|
|
|
|
2005-09-03 06:50:06 +08:00
|
|
|
/**
|
2016-09-21 02:20:25 +08:00
|
|
|
* gimp_edit_paste_as_new_image:
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
|
|
|
* Paste buffer to a new image.
|
|
|
|
*
|
|
|
|
* This procedure pastes a copy of the internal GIMP edit buffer to a
|
|
|
|
* new image. The GIMP edit buffer will be empty unless a call was
|
2006-06-14 16:32:08 +08:00
|
|
|
* previously made to either gimp_edit_cut() or gimp_edit_copy(). This
|
2007-05-06 12:42:51 +08:00
|
|
|
* procedure returns the new image or -1 if the edit buffer was empty.
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2019-08-15 16:01:08 +08:00
|
|
|
* Returns: (transfer none): The new image.
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2016-09-21 02:20:25 +08:00
|
|
|
* Since: 2.10
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2019-08-11 20:20:05 +08:00
|
|
|
GimpImage *
|
2016-09-21 02:20:25 +08:00
|
|
|
gimp_edit_paste_as_new_image (void)
|
2005-09-03 06:50:06 +08:00
|
|
|
{
|
2019-08-07 03:34:00 +08:00
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-08-11 20:20:05 +08:00
|
|
|
GimpImage *image = NULL;
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
|
|
G_TYPE_NONE);
|
2019-07-30 16:51:16 +08:00
|
|
|
|
2019-08-07 03:34:00 +08:00
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-paste-as-new-image",
|
|
|
|
args);
|
|
|
|
else
|
2019-08-07 03:44:26 +08:00
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-paste-as-new-image",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
2019-08-29 17:25:35 +08:00
|
|
|
image = g_value_get_object (gimp_value_array_index (return_vals, 1));
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-08-11 20:20:05 +08:00
|
|
|
return image;
|
2005-09-03 06:50:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_edit_named_cut:
|
2019-08-13 19:59:33 +08:00
|
|
|
* @drawable: The drawable to cut from.
|
2005-09-03 06:50:06 +08:00
|
|
|
* @buffer_name: The name of the buffer to create.
|
|
|
|
*
|
|
|
|
* Cut into a named buffer.
|
|
|
|
*
|
2006-06-14 16:32:08 +08:00
|
|
|
* This procedure works like gimp_edit_cut(), but additionally stores
|
|
|
|
* the cut buffer into a named buffer that will stay available for
|
|
|
|
* later pasting, regardless of any intermediate copy or cut
|
|
|
|
* operations.
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2019-08-05 04:09:04 +08:00
|
|
|
* Returns: (transfer full):
|
|
|
|
* The real name given to the buffer, or NULL if the cut failed.
|
|
|
|
* The returned value must be freed with g_free().
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-09-03 06:50:06 +08:00
|
|
|
gchar *
|
2019-08-13 19:59:33 +08:00
|
|
|
gimp_edit_named_cut (GimpDrawable *drawable,
|
|
|
|
const gchar *buffer_name)
|
|
|
|
{
|
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gchar *real_name = NULL;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
2019-08-13 19:59:33 +08:00
|
|
|
G_TYPE_STRING, buffer_name,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-named-cut",
|
|
|
|
args);
|
|
|
|
else
|
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-named-cut",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
|
|
|
real_name = g_value_dup_string (gimp_value_array_index (return_vals, 1));
|
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return real_name;
|
|
|
|
}
|
|
|
|
|
2005-09-03 06:50:06 +08:00
|
|
|
/**
|
|
|
|
* gimp_edit_named_copy:
|
2019-08-13 19:59:33 +08:00
|
|
|
* @drawable: The drawable to copy from.
|
2005-09-03 06:50:06 +08:00
|
|
|
* @buffer_name: The name of the buffer to create.
|
|
|
|
*
|
|
|
|
* Copy into a named buffer.
|
|
|
|
*
|
2006-06-14 16:32:08 +08:00
|
|
|
* This procedure works like gimp_edit_copy(), but additionally stores
|
2005-09-03 06:50:06 +08:00
|
|
|
* the copied buffer into a named buffer that will stay available for
|
|
|
|
* later pasting, regardless of any intermediate copy or cut
|
|
|
|
* operations.
|
|
|
|
*
|
2019-08-05 04:09:04 +08:00
|
|
|
* Returns: (transfer full):
|
|
|
|
* The real name given to the buffer, or NULL if the copy failed.
|
|
|
|
* The returned value must be freed with g_free().
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-09-03 06:50:06 +08:00
|
|
|
gchar *
|
2019-08-13 19:59:33 +08:00
|
|
|
gimp_edit_named_copy (GimpDrawable *drawable,
|
|
|
|
const gchar *buffer_name)
|
|
|
|
{
|
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gchar *real_name = NULL;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
2019-08-13 19:59:33 +08:00
|
|
|
G_TYPE_STRING, buffer_name,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-named-copy",
|
|
|
|
args);
|
|
|
|
else
|
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-named-copy",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
|
|
|
real_name = g_value_dup_string (gimp_value_array_index (return_vals, 1));
|
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return real_name;
|
|
|
|
}
|
|
|
|
|
2005-09-03 06:50:06 +08:00
|
|
|
/**
|
|
|
|
* gimp_edit_named_copy_visible:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image to copy from.
|
2005-09-03 06:50:06 +08:00
|
|
|
* @buffer_name: The name of the buffer to create.
|
|
|
|
*
|
|
|
|
* Copy from the projection into a named buffer.
|
|
|
|
*
|
2006-06-14 16:32:08 +08:00
|
|
|
* This procedure works like gimp_edit_copy_visible(), but additionally
|
2005-09-03 06:50:06 +08:00
|
|
|
* stores the copied buffer into a named buffer that will stay
|
|
|
|
* available for later pasting, regardless of any intermediate copy or
|
|
|
|
* cut operations.
|
|
|
|
*
|
2019-08-05 04:09:04 +08:00
|
|
|
* Returns: (transfer full):
|
|
|
|
* The real name given to the buffer, or NULL if the copy failed.
|
|
|
|
* The returned value must be freed with g_free().
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-09-03 06:50:06 +08:00
|
|
|
gchar *
|
2019-08-11 20:20:05 +08:00
|
|
|
gimp_edit_named_copy_visible (GimpImage *image,
|
2006-04-12 18:27:31 +08:00
|
|
|
const gchar *buffer_name)
|
2005-09-03 06:50:06 +08:00
|
|
|
{
|
2019-08-07 03:34:00 +08:00
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2005-09-03 06:50:06 +08:00
|
|
|
gchar *real_name = NULL;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_STRING, buffer_name,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-08-07 03:34:00 +08:00
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-named-copy-visible",
|
|
|
|
args);
|
|
|
|
else
|
2019-08-07 03:44:26 +08:00
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-named-copy-visible",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
|
|
|
real_name = g_value_dup_string (gimp_value_array_index (return_vals, 1));
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2005-09-03 06:50:06 +08:00
|
|
|
|
|
|
|
return real_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_edit_named_paste:
|
2019-08-13 19:59:33 +08:00
|
|
|
* @drawable: The drawable to paste to.
|
|
|
|
* @buffer_name: The name of the buffer to paste.
|
|
|
|
* @paste_into: Clear selection, or paste behind it?
|
|
|
|
*
|
|
|
|
* Paste named buffer to the specified drawable.
|
|
|
|
*
|
|
|
|
* This procedure works like gimp_edit_paste() but pastes a named
|
|
|
|
* buffer instead of the global buffer.
|
|
|
|
*
|
2019-08-15 18:12:25 +08:00
|
|
|
* Returns: (transfer none): The new floating selection.
|
2019-08-13 19:59:33 +08:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
GimpLayer *
|
|
|
|
gimp_edit_named_paste (GimpDrawable *drawable,
|
|
|
|
const gchar *buffer_name,
|
|
|
|
gboolean paste_into)
|
|
|
|
{
|
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
GimpLayer *floating_sel = NULL;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
2019-08-13 19:59:33 +08:00
|
|
|
G_TYPE_STRING, buffer_name,
|
|
|
|
G_TYPE_BOOLEAN, paste_into,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-named-paste",
|
|
|
|
args);
|
|
|
|
else
|
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-named-paste",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
2019-08-29 17:25:35 +08:00
|
|
|
floating_sel = g_value_get_object (gimp_value_array_index (return_vals, 1));
|
2019-08-13 19:59:33 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return floating_sel;
|
|
|
|
}
|
|
|
|
|
2005-09-03 06:50:06 +08:00
|
|
|
/**
|
2016-09-21 02:20:25 +08:00
|
|
|
* gimp_edit_named_paste_as_new_image:
|
2005-09-03 06:50:06 +08:00
|
|
|
* @buffer_name: The name of the buffer to paste.
|
|
|
|
*
|
|
|
|
* Paste named buffer to a new image.
|
|
|
|
*
|
2016-09-21 02:20:25 +08:00
|
|
|
* This procedure works like gimp_edit_paste_as_new_image() but pastes
|
|
|
|
* a named buffer instead of the global buffer.
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2019-08-15 16:01:08 +08:00
|
|
|
* Returns: (transfer none): The new image.
|
2005-09-03 06:50:06 +08:00
|
|
|
*
|
2016-09-21 02:20:25 +08:00
|
|
|
* Since: 2.10
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2019-08-11 20:20:05 +08:00
|
|
|
GimpImage *
|
2016-09-21 02:20:25 +08:00
|
|
|
gimp_edit_named_paste_as_new_image (const gchar *buffer_name)
|
2005-09-03 06:50:06 +08:00
|
|
|
{
|
2019-08-07 03:34:00 +08:00
|
|
|
GimpPDB *pdb = gimp_get_pdb ();
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-08-11 20:20:05 +08:00
|
|
|
GimpImage *image = NULL;
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
|
|
G_TYPE_STRING, buffer_name,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-08-07 03:34:00 +08:00
|
|
|
if (pdb)
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (pdb,
|
|
|
|
"gimp-edit-named-paste-as-new-image",
|
|
|
|
args);
|
|
|
|
else
|
2019-08-07 03:44:26 +08:00
|
|
|
return_vals = gimp_run_procedure_array ("gimp-edit-named-paste-as-new-image",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
if (g_value_get_enum (gimp_value_array_index (return_vals, 0)) == GIMP_PDB_SUCCESS)
|
2019-08-29 17:25:35 +08:00
|
|
|
image = g_value_get_object (gimp_value_array_index (return_vals, 1));
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2005-09-03 06:50:06 +08:00
|
|
|
|
2019-08-11 20:20:05 +08:00
|
|
|
return image;
|
2005-09-03 06:50:06 +08:00
|
|
|
}
|