mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00

Not sure what I had in mind with the class method copy() in libgimp GimpLayer. The core duplicate code already takes care of returning an object of the right type. Also the GimpTextLayer implementation was not a perfect copy (only text, font and font size were copied). Now it is because, again, core has all the duplication code necessary. Finally this makes this function visible to PDB, hence Script-Fu, again.
1371 lines
41 KiB
C
1371 lines
41 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
|
*
|
|
* gimplayer_pdb.c
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* License along with this library. If not, see
|
|
* <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
|
|
|
#include "config.h"
|
|
|
|
#include "stamp-pdbgen.h"
|
|
|
|
#include "gimp.h"
|
|
|
|
|
|
/**
|
|
* SECTION: gimplayer
|
|
* @title: gimplayer
|
|
* @short_description: Operations on a single layer.
|
|
*
|
|
* Operations on a single layer.
|
|
**/
|
|
|
|
|
|
/**
|
|
* gimp_layer_new:
|
|
* @image: The image to which to add the layer.
|
|
* @name: (nullable): The layer name.
|
|
* @width: The layer width.
|
|
* @height: The layer height.
|
|
* @type: The layer type.
|
|
* @opacity: The layer opacity.
|
|
* @mode: The layer combination mode.
|
|
*
|
|
* Create a new layer.
|
|
*
|
|
* This procedure creates a new layer with the specified @width,
|
|
* @height and @type. If @name is %NULL, a default layer name will be
|
|
* used. @opacity and @mode are also supplied parameters.
|
|
*
|
|
* The new layer still needs to be added to the image as this is not
|
|
* automatic. Add the new layer with the [method@Image.insert_layer]
|
|
* method.
|
|
*
|
|
* Other attributes such as layer mask modes and offsets should be set
|
|
* with explicit procedure calls.
|
|
*
|
|
* Returns: (transfer none):
|
|
* The newly created layer. The object belongs to libgimp and you should not free it.
|
|
**/
|
|
GimpLayer *
|
|
gimp_layer_new (GimpImage *image,
|
|
const gchar *name,
|
|
gint width,
|
|
gint height,
|
|
GimpImageType type,
|
|
gdouble opacity,
|
|
GimpLayerMode mode)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayer *layer = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_IMAGE, image,
|
|
G_TYPE_STRING, name,
|
|
G_TYPE_INT, width,
|
|
G_TYPE_INT, height,
|
|
GIMP_TYPE_IMAGE_TYPE, type,
|
|
G_TYPE_DOUBLE, opacity,
|
|
GIMP_TYPE_LAYER_MODE, mode,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-new",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
layer = GIMP_VALUES_GET_LAYER (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return layer;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_new_from_visible:
|
|
* @image: The source image from where the content is copied.
|
|
* @dest_image: The destination image to which to add the layer.
|
|
* @name: (nullable): The layer name.
|
|
*
|
|
* Create a new layer from what is visible in an image.
|
|
*
|
|
* This procedure creates a new layer from what is visible in the given
|
|
* image. The new layer still needs to be added to the destination
|
|
* image, as this is not automatic. Add the new layer with the
|
|
* gimp_image_insert_layer() command. Other attributes such as layer
|
|
* mask modes, and offsets should be set with explicit procedure calls.
|
|
*
|
|
* Returns: (transfer none): The newly created layer.
|
|
*
|
|
* Since: 2.6
|
|
**/
|
|
GimpLayer *
|
|
gimp_layer_new_from_visible (GimpImage *image,
|
|
GimpImage *dest_image,
|
|
const gchar *name)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayer *layer = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_IMAGE, image,
|
|
GIMP_TYPE_IMAGE, dest_image,
|
|
G_TYPE_STRING, name,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-new-from-visible",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
layer = GIMP_VALUES_GET_LAYER (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return layer;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_new_from_drawable:
|
|
* @drawable: The source drawable from where the new layer is copied.
|
|
* @dest_image: The destination image to which to add the layer.
|
|
*
|
|
* Create a new layer by copying an existing drawable.
|
|
*
|
|
* This procedure creates a new layer as a copy of the specified
|
|
* drawable. The new layer still needs to be added to the image, as
|
|
* this is not automatic. Add the new layer with the
|
|
* gimp_image_insert_layer() command. Other attributes such as layer
|
|
* mask modes, and offsets should be set with explicit procedure calls.
|
|
*
|
|
* Returns: (transfer none): The newly copied layer.
|
|
**/
|
|
GimpLayer *
|
|
gimp_layer_new_from_drawable (GimpDrawable *drawable,
|
|
GimpImage *dest_image)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayer *layer_copy = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_DRAWABLE, drawable,
|
|
GIMP_TYPE_IMAGE, dest_image,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-new-from-drawable",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
layer_copy = GIMP_VALUES_GET_LAYER (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return layer_copy;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_copy:
|
|
* @layer: The layer to copy.
|
|
*
|
|
* Copy a layer.
|
|
*
|
|
* This procedure copies the specified layer and returns the copy. The
|
|
* newly copied layer is for use within the original layer's image. It
|
|
* should not be subsequently added to any other image.
|
|
*
|
|
* Returns: (transfer none):
|
|
* The newly copied layer. The object belongs to libgimp and you should not free it.
|
|
**/
|
|
GimpLayer *
|
|
gimp_layer_copy (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayer *layer_copy = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-copy",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
layer_copy = GIMP_VALUES_GET_LAYER (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return layer_copy;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_add_alpha:
|
|
* @layer: The layer.
|
|
*
|
|
* Add an alpha channel to the layer if it doesn't already have one.
|
|
*
|
|
* This procedure adds an additional component to the specified layer
|
|
* if it does not already possess an alpha channel. An alpha channel
|
|
* makes it possible to clear and erase to transparency, instead of the
|
|
* background color. This transforms layers of type RGB to RGBA, GRAY
|
|
* to GRAYA, and INDEXED to INDEXEDA.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_add_alpha (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-add-alpha",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_flatten:
|
|
* @layer: The layer.
|
|
*
|
|
* Remove the alpha channel from the layer if it has one.
|
|
*
|
|
* This procedure removes the alpha channel from a layer, blending all
|
|
* (partially) transparent pixels in the layer against the background
|
|
* color. This transforms layers of type RGBA to RGB, GRAYA to GRAY,
|
|
* and INDEXEDA to INDEXED.
|
|
*
|
|
* Returns: TRUE on success.
|
|
*
|
|
* Since: 2.4
|
|
**/
|
|
gboolean
|
|
gimp_layer_flatten (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-flatten",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_scale:
|
|
* @layer: The layer.
|
|
* @new_width: New layer width.
|
|
* @new_height: New layer height.
|
|
* @local_origin: Use a local origin (as opposed to the image origin).
|
|
*
|
|
* Scale the layer using the default interpolation method.
|
|
*
|
|
* This procedure scales the layer so that its new width and height are
|
|
* equal to the supplied parameters. The 'local-origin' parameter
|
|
* specifies whether to scale from the center of the layer, or from the
|
|
* image origin. This operation only works if the layer has been added
|
|
* to an image. The interpolation method used can be set with
|
|
* gimp_context_set_interpolation().
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_scale (GimpLayer *layer,
|
|
gint new_width,
|
|
gint new_height,
|
|
gboolean local_origin)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_INT, new_width,
|
|
G_TYPE_INT, new_height,
|
|
G_TYPE_BOOLEAN, local_origin,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-scale",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_resize:
|
|
* @layer: The layer.
|
|
* @new_width: New layer width.
|
|
* @new_height: New layer height.
|
|
* @offx: x offset between upper left corner of old and new layers: (old - new).
|
|
* @offy: y offset between upper left corner of old and new layers: (old - new).
|
|
*
|
|
* Resize the layer to the specified extents.
|
|
*
|
|
* This procedure resizes the layer so that its new width and height
|
|
* are equal to the supplied parameters. Offsets are also provided
|
|
* which describe the position of the previous layer's content. This
|
|
* operation only works if the layer has been added to an image.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_resize (GimpLayer *layer,
|
|
gint new_width,
|
|
gint new_height,
|
|
gint offx,
|
|
gint offy)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_INT, new_width,
|
|
G_TYPE_INT, new_height,
|
|
G_TYPE_INT, offx,
|
|
G_TYPE_INT, offy,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-resize",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_resize_to_image_size:
|
|
* @layer: The layer to resize.
|
|
*
|
|
* Resize a layer to the image size.
|
|
*
|
|
* This procedure resizes the layer so that it's new width and height
|
|
* are equal to the width and height of its image container.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_resize_to_image_size (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-resize-to-image-size",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_offsets:
|
|
* @layer: The layer.
|
|
* @offx: Offset in x direction.
|
|
* @offy: Offset in y direction.
|
|
*
|
|
* Set the layer offsets.
|
|
*
|
|
* This procedure sets the offsets for the specified layer. The offsets
|
|
* are relative to the image origin and can be any values. This
|
|
* operation is valid only on layers which have been added to an image.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_offsets (GimpLayer *layer,
|
|
gint offx,
|
|
gint offy)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_INT, offx,
|
|
G_TYPE_INT, offy,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-offsets",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_create_mask:
|
|
* @layer: The layer to which to add the mask.
|
|
* @mask_type: The type of mask.
|
|
*
|
|
* Create a layer mask for the specified layer.
|
|
*
|
|
* This procedure creates a layer mask for the specified layer.
|
|
* Layer masks serve as an additional alpha channel for a layer.
|
|
* Different types of masks are allowed for initialisation:
|
|
* - white mask (leaves the layer fully visible);
|
|
* - black mask (gives the layer complete transparency);
|
|
* - the layer's alpha channel (either a copy, or a transfer, which
|
|
* leaves the layer fully visible, but which may be more useful than a
|
|
* white mask);
|
|
* - the current selection;
|
|
* - a grayscale copy of the layer;
|
|
* - or a copy of the active channel.
|
|
*
|
|
* The layer mask still needs to be added to the layer. This can be
|
|
* done with a call to gimp_layer_add_mask().
|
|
*
|
|
* gimp_layer_create_mask() will fail if there are no active channels
|
|
* on the image, when called with 'ADD-CHANNEL-MASK'. It will return a
|
|
* black mask when called with 'ADD-ALPHA-MASK' or
|
|
* 'ADD-ALPHA-TRANSFER-MASK' on a layer with no alpha channels, or with
|
|
* 'ADD-SELECTION-MASK' when there is no selection on the image.
|
|
*
|
|
* Returns: (transfer none): The newly created mask.
|
|
**/
|
|
GimpLayerMask *
|
|
gimp_layer_create_mask (GimpLayer *layer,
|
|
GimpAddMaskType mask_type)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayerMask *mask = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_ADD_MASK_TYPE, mask_type,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-create-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
mask = GIMP_VALUES_GET_LAYER_MASK (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return mask;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_mask:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the specified layer's mask if it exists.
|
|
*
|
|
* This procedure returns the specified layer's mask, or -1 if none
|
|
* exists.
|
|
*
|
|
* Returns: (transfer none): The layer mask.
|
|
**/
|
|
GimpLayerMask *
|
|
gimp_layer_get_mask (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayerMask *mask = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
mask = GIMP_VALUES_GET_LAYER_MASK (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return mask;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_from_mask:
|
|
* @mask: Mask for which to return the layer.
|
|
*
|
|
* Get the specified mask's layer.
|
|
*
|
|
* This procedure returns the specified mask's layer , or -1 if none
|
|
* exists.
|
|
*
|
|
* Returns: (transfer none): The mask's layer.
|
|
*
|
|
* Since: 2.2
|
|
**/
|
|
GimpLayer *
|
|
gimp_layer_from_mask (GimpLayerMask *mask)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayer *layer = NULL;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER_MASK, mask,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-from-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
layer = GIMP_VALUES_GET_LAYER (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return layer;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_add_mask:
|
|
* @layer: The layer to receive the mask.
|
|
* @mask: The mask to add to the layer.
|
|
*
|
|
* Add a layer mask to the specified layer.
|
|
*
|
|
* This procedure adds a layer mask to the specified layer. Layer masks
|
|
* serve as an additional alpha channel for a layer. This procedure
|
|
* will fail if a number of prerequisites aren't met. The layer cannot
|
|
* already have a layer mask. The specified mask must exist and have
|
|
* the same dimensions as the layer. The layer must have been created
|
|
* for use with the specified image and the mask must have been created
|
|
* with the procedure 'gimp-layer-create-mask'.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_add_mask (GimpLayer *layer,
|
|
GimpLayerMask *mask)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_LAYER_MASK, mask,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-add-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_remove_mask:
|
|
* @layer: The layer from which to remove mask.
|
|
* @mode: Removal mode.
|
|
*
|
|
* Remove the specified layer mask from the layer.
|
|
*
|
|
* This procedure removes the specified layer mask from the layer. If
|
|
* the mask doesn't exist, an error is returned.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_remove_mask (GimpLayer *layer,
|
|
GimpMaskApplyMode mode)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_MASK_APPLY_MODE, mode,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-remove-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_is_floating_sel:
|
|
* @layer: The layer.
|
|
*
|
|
* Is the specified layer a floating selection?
|
|
*
|
|
* This procedure returns whether the layer is a floating selection.
|
|
* Floating selections are special cases of layers which are attached
|
|
* to a specific drawable.
|
|
*
|
|
* Returns: TRUE if the layer is a floating selection.
|
|
**/
|
|
gboolean
|
|
gimp_layer_is_floating_sel (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean is_floating_sel = FALSE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-is-floating-sel",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
is_floating_sel = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return is_floating_sel;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_lock_alpha:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the lock alpha channel setting of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's lock alpha channel
|
|
* setting.
|
|
*
|
|
* Returns: The layer's lock alpha channel setting.
|
|
**/
|
|
gboolean
|
|
gimp_layer_get_lock_alpha (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean lock_alpha = FALSE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-lock-alpha",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
lock_alpha = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return lock_alpha;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_lock_alpha:
|
|
* @layer: The layer.
|
|
* @lock_alpha: The new layer's lock alpha channel setting.
|
|
*
|
|
* Set the lock alpha channel setting of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's lock alpha channel
|
|
* setting.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_lock_alpha (GimpLayer *layer,
|
|
gboolean lock_alpha)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_BOOLEAN, lock_alpha,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-lock-alpha",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_apply_mask:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the apply mask setting of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's apply mask setting. If
|
|
* the value is TRUE, then the layer mask for this layer is currently
|
|
* being composited with the layer's alpha channel.
|
|
*
|
|
* Returns: The layer's apply mask setting.
|
|
**/
|
|
gboolean
|
|
gimp_layer_get_apply_mask (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean apply_mask = FALSE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-apply-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
apply_mask = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return apply_mask;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_apply_mask:
|
|
* @layer: The layer.
|
|
* @apply_mask: The new layer's apply mask setting.
|
|
*
|
|
* Set the apply mask setting of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's apply mask setting. This
|
|
* controls whether the layer's mask is currently affecting the alpha
|
|
* channel. If there is no layer mask, this function will return an
|
|
* error.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_apply_mask (GimpLayer *layer,
|
|
gboolean apply_mask)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_BOOLEAN, apply_mask,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-apply-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_show_mask:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the show mask setting of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's show mask setting. This
|
|
* controls whether the layer or its mask is visible. TRUE indicates
|
|
* that the mask should be visible. If the layer has no mask, then this
|
|
* function returns an error.
|
|
*
|
|
* Returns: The layer's show mask setting.
|
|
**/
|
|
gboolean
|
|
gimp_layer_get_show_mask (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean show_mask = FALSE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-show-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
show_mask = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return show_mask;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_show_mask:
|
|
* @layer: The layer.
|
|
* @show_mask: The new layer's show mask setting.
|
|
*
|
|
* Set the show mask setting of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's show mask setting. This
|
|
* controls whether the layer or its mask is visible. TRUE indicates
|
|
* that the mask should be visible. If there is no layer mask, this
|
|
* function will return an error.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_show_mask (GimpLayer *layer,
|
|
gboolean show_mask)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_BOOLEAN, show_mask,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-show-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_edit_mask:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the edit mask setting of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's edit mask setting. If
|
|
* the value is TRUE, then the layer mask for this layer is currently
|
|
* active, and not the layer.
|
|
*
|
|
* Returns: The layer's edit mask setting.
|
|
**/
|
|
gboolean
|
|
gimp_layer_get_edit_mask (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean edit_mask = FALSE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-edit-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
edit_mask = GIMP_VALUES_GET_BOOLEAN (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return edit_mask;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_edit_mask:
|
|
* @layer: The layer.
|
|
* @edit_mask: The new layer's edit mask setting.
|
|
*
|
|
* Set the edit mask setting of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's edit mask setting. This
|
|
* controls whether the layer or it's mask is currently active for
|
|
* editing. If the specified layer has no layer mask, then this
|
|
* procedure will return an error.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_edit_mask (GimpLayer *layer,
|
|
gboolean edit_mask)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_BOOLEAN, edit_mask,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-edit-mask",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_opacity:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the opacity of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's opacity.
|
|
*
|
|
* Returns: The layer opacity.
|
|
**/
|
|
gdouble
|
|
gimp_layer_get_opacity (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gdouble opacity = 0.0;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-opacity",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
opacity = GIMP_VALUES_GET_DOUBLE (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return opacity;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_opacity:
|
|
* @layer: The layer.
|
|
* @opacity: The new layer opacity.
|
|
*
|
|
* Set the opacity of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's opacity.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_opacity (GimpLayer *layer,
|
|
gdouble opacity)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_DOUBLE, opacity,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-opacity",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_mode:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the combination mode of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's combination mode.
|
|
*
|
|
* Returns: The layer combination mode.
|
|
**/
|
|
GimpLayerMode
|
|
gimp_layer_get_mode (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayerMode mode = 0;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-mode",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
mode = GIMP_VALUES_GET_ENUM (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return mode;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_mode:
|
|
* @layer: The layer.
|
|
* @mode: The new layer combination mode.
|
|
*
|
|
* Set the combination mode of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's combination mode.
|
|
*
|
|
* Returns: TRUE on success.
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_mode (GimpLayer *layer,
|
|
GimpLayerMode mode)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_LAYER_MODE, mode,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-mode",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_blend_space:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the blend space of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's blend space.
|
|
*
|
|
* Returns: The layer blend space.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
GimpLayerColorSpace
|
|
gimp_layer_get_blend_space (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayerColorSpace blend_space = 0;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-blend-space",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
blend_space = GIMP_VALUES_GET_ENUM (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return blend_space;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_blend_space:
|
|
* @layer: The layer.
|
|
* @blend_space: The new layer blend space.
|
|
*
|
|
* Set the blend space of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's blend space.
|
|
*
|
|
* Returns: TRUE on success.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_blend_space (GimpLayer *layer,
|
|
GimpLayerColorSpace blend_space)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_LAYER_COLOR_SPACE, blend_space,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-blend-space",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_composite_space:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the composite space of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's composite space.
|
|
*
|
|
* Returns: The layer composite space.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
GimpLayerColorSpace
|
|
gimp_layer_get_composite_space (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayerColorSpace composite_space = 0;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-composite-space",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
composite_space = GIMP_VALUES_GET_ENUM (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return composite_space;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_composite_space:
|
|
* @layer: The layer.
|
|
* @composite_space: The new layer composite space.
|
|
*
|
|
* Set the composite space of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's composite space.
|
|
*
|
|
* Returns: TRUE on success.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_composite_space (GimpLayer *layer,
|
|
GimpLayerColorSpace composite_space)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_LAYER_COLOR_SPACE, composite_space,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-composite-space",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_get_composite_mode:
|
|
* @layer: The layer.
|
|
*
|
|
* Get the composite mode of the specified layer.
|
|
*
|
|
* This procedure returns the specified layer's composite mode.
|
|
*
|
|
* Returns: The layer composite mode.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
GimpLayerCompositeMode
|
|
gimp_layer_get_composite_mode (GimpLayer *layer)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
GimpLayerCompositeMode composite_mode = 0;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-get-composite-mode",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
|
composite_mode = GIMP_VALUES_GET_ENUM (return_vals, 1);
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return composite_mode;
|
|
}
|
|
|
|
/**
|
|
* gimp_layer_set_composite_mode:
|
|
* @layer: The layer.
|
|
* @composite_mode: The new layer composite mode.
|
|
*
|
|
* Set the composite mode of the specified layer.
|
|
*
|
|
* This procedure sets the specified layer's composite mode.
|
|
*
|
|
* Returns: TRUE on success.
|
|
*
|
|
* Since: 2.10
|
|
**/
|
|
gboolean
|
|
gimp_layer_set_composite_mode (GimpLayer *layer,
|
|
GimpLayerCompositeMode composite_mode)
|
|
{
|
|
GimpValueArray *args;
|
|
GimpValueArray *return_vals;
|
|
gboolean success = TRUE;
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
GIMP_TYPE_LAYER, layer,
|
|
GIMP_TYPE_LAYER_COMPOSITE_MODE, composite_mode,
|
|
G_TYPE_NONE);
|
|
|
|
return_vals = _gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
"gimp-layer-set-composite-mode",
|
|
args);
|
|
gimp_value_array_unref (args);
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
return success;
|
|
}
|