2000-05-31 21:24:14 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2000-06-02 01:34:56 +08:00
|
|
|
* Copyright (C) 1995-2000 Peter Mattis and Spencer Kimball
|
2000-05-31 21:24:14 +08:00
|
|
|
*
|
|
|
|
* gimpchannel_pdb.c
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-01-25 18:26:47 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2000-05-31 21:24:14 +08:00
|
|
|
* version 2 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
|
2000-06-02 01:34:56 +08:00
|
|
|
* Lesser General Public License for more details.
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 13:44:11 +08:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
2000-05-31 21:24:14 +08:00
|
|
|
*/
|
2000-05-31 14:15:06 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
/* NOTE: This file is autogenerated by pdbgen.pl */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
#include "gimp.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* _gimp_channel_new:
|
|
|
|
* @image_ID: The image to which to add the channel.
|
|
|
|
* @width: The channel width.
|
|
|
|
* @height: The channel height.
|
|
|
|
* @name: The channel name.
|
|
|
|
* @opacity: The channel opacity.
|
2001-01-25 09:20:05 +08:00
|
|
|
* @color: The channel compositing color.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Create a new channel.
|
|
|
|
*
|
|
|
|
* This procedure creates a new channel with the specified width and
|
|
|
|
* height. Name, opacity, and color are also supplied parameters. The
|
|
|
|
* new channel still needs to be added to the image, as this is not
|
|
|
|
* automatic. Add the new channel with the 'gimp_image_add_channel'
|
|
|
|
* command. Other attributes such as channel show masked, should be set
|
|
|
|
* with explicit procedure calls. The channel's contents are undefined
|
|
|
|
* initially.
|
|
|
|
*
|
|
|
|
* Returns: The newly created channel.
|
|
|
|
*/
|
1997-11-25 06:05:25 +08:00
|
|
|
gint32
|
2000-06-02 01:34:56 +08:00
|
|
|
_gimp_channel_new (gint32 image_ID,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gchar *name,
|
|
|
|
gdouble opacity,
|
2001-01-25 09:20:05 +08:00
|
|
|
GimpRGB *color)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gint32 channel_ID = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_new",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_INT32, width,
|
|
|
|
GIMP_PDB_INT32, height,
|
|
|
|
GIMP_PDB_STRING, name,
|
|
|
|
GIMP_PDB_FLOAT, opacity,
|
|
|
|
GIMP_PDB_COLOR, color,
|
|
|
|
GIMP_PDB_END);
|
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
channel_ID = return_vals[1].data.d_channel;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return channel_ID;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_copy:
|
|
|
|
* @channel_ID: The channel to copy.
|
|
|
|
*
|
|
|
|
* Copy a channel.
|
|
|
|
*
|
|
|
|
* This procedure copies the specified channel and returns the copy.
|
|
|
|
*
|
|
|
|
* Returns: The newly copied channel.
|
|
|
|
*/
|
1997-11-25 06:05:25 +08:00
|
|
|
gint32
|
|
|
|
gimp_channel_copy (gint32 channel_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gint32 channel_copy_ID = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_copy",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-02 01:34:56 +08:00
|
|
|
channel_copy_ID = return_vals[1].data.d_channel;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return channel_copy_ID;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_delete:
|
|
|
|
* @channel_ID: The channel to delete.
|
|
|
|
*
|
|
|
|
* Delete a channel.
|
|
|
|
*
|
2000-12-28 07:49:17 +08:00
|
|
|
* This procedure deletes the specified channel. This must not be done
|
|
|
|
* if the gimage containing this channel was already deleted or if the
|
|
|
|
* channel was already removed from the image. The only case in which
|
|
|
|
* this procedure is useful is if you want to get rid of a channel
|
|
|
|
* which has not yet been added to an image.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_channel_delete (gint32 channel_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_delete",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_get_name:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
*
|
|
|
|
* Get the name of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified channel's name.
|
|
|
|
*
|
|
|
|
* Returns: The channel name.
|
|
|
|
*/
|
2000-06-02 01:34:56 +08:00
|
|
|
gchar *
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_channel_get_name (gint32 channel_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gchar *name = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_get_name",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
name = g_strdup (return_vals[1].data.d_string);
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_set_name:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
* @name: The new channel name.
|
|
|
|
*
|
|
|
|
* Set the name of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified channel's name.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_channel_set_name (gint32 channel_ID,
|
|
|
|
gchar *name)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_set_name",
|
1997-11-25 06:05:25 +08:00
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_STRING, name,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_get_visible:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
*
|
|
|
|
* Get the visibility of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified channel's visibility.
|
|
|
|
*
|
|
|
|
* Returns: The channel visibility.
|
|
|
|
*/
|
2000-03-26 02:49:05 +08:00
|
|
|
gboolean
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_channel_get_visible (gint32 channel_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean visible = FALSE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_get_visible",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
visible = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return visible;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_set_visible:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
* @visible: The new channel visibility.
|
|
|
|
*
|
|
|
|
* Set the visibility of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified channel's visibility.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_channel_set_visible (gint32 channel_ID,
|
|
|
|
gboolean visible)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_set_visible",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_INT32, visible,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
2000-06-02 01:34:56 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_get_show_masked:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
*
|
|
|
|
* Get the composite method of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified channel's composite method. If
|
|
|
|
* it is non-zero, then the channel is composited with the image so
|
|
|
|
* that masked regions are shown. Otherwise, selected regions are
|
|
|
|
* shown.
|
|
|
|
*
|
|
|
|
* Returns: The channel composite method.
|
|
|
|
*/
|
2000-06-02 01:34:56 +08:00
|
|
|
gboolean
|
|
|
|
gimp_channel_get_show_masked (gint32 channel_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean show_masked = FALSE;
|
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_get_show_masked",
|
1997-11-25 06:05:25 +08:00
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-02 01:34:56 +08:00
|
|
|
show_masked = return_vals[1].data.d_int32;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-06-02 01:34:56 +08:00
|
|
|
|
|
|
|
return show_masked;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_set_show_masked:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
* @show_masked: The new channel composite method.
|
|
|
|
*
|
|
|
|
* Set the composite method of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified channel's composite method. If it
|
|
|
|
* is non-zero, then the channel is composited with the image so that
|
|
|
|
* masked regions are shown. Otherwise, selected regions are shown.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_channel_set_show_masked (gint32 channel_ID,
|
|
|
|
gboolean show_masked)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_set_show_masked",
|
1997-11-25 06:05:25 +08:00
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_INT32, show_masked,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_get_opacity:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
*
|
|
|
|
* Get the opacity of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified channel's opacity.
|
|
|
|
*
|
|
|
|
* Returns: The channel opacity.
|
|
|
|
*/
|
2000-06-02 01:34:56 +08:00
|
|
|
gdouble
|
|
|
|
gimp_channel_get_opacity (gint32 channel_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gdouble opacity = 0;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_get_opacity",
|
1997-11-25 06:05:25 +08:00
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-02 01:34:56 +08:00
|
|
|
opacity = return_vals[1].data.d_float;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-06-02 01:34:56 +08:00
|
|
|
|
|
|
|
return opacity;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_set_opacity:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
* @opacity: The new channel opacity.
|
|
|
|
*
|
|
|
|
* Set the opacity of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified channel's opacity.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_channel_set_opacity (gint32 channel_ID,
|
|
|
|
gdouble opacity)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_set_opacity",
|
1997-11-25 06:05:25 +08:00
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_FLOAT, opacity,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1998-05-26 16:46:37 +08:00
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_get_color:
|
|
|
|
* @channel_ID: The channel.
|
2001-01-25 09:20:05 +08:00
|
|
|
* @color: The channel compositing color.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Get the compositing color of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified channel's compositing color.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2001-01-25 09:20:05 +08:00
|
|
|
gimp_channel_get_color (gint32 channel_ID,
|
|
|
|
GimpRGB *color)
|
1998-05-26 16:46:37 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1998-05-26 16:46:37 +08:00
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_get_color",
|
1998-05-26 16:46:37 +08:00
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1998-05-26 16:46:37 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
if (success)
|
2001-01-25 09:20:05 +08:00
|
|
|
*color = return_vals[1].data.d_color;
|
2000-08-23 09:44:59 +08:00
|
|
|
|
1998-05-26 16:46:37 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1998-05-26 16:46:37 +08:00
|
|
|
}
|
1998-11-08 07:02:14 +08:00
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_get_tattoo:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
*
|
|
|
|
* Get the tattoo of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified channel's tattoo. A tattoo is a
|
|
|
|
* unique and permanent identifier attached to a channel that can be
|
|
|
|
* used to uniquely identify a channel within an image even between
|
|
|
|
* sessions.
|
|
|
|
*
|
|
|
|
* Returns: The channel tattoo.
|
|
|
|
*/
|
2000-06-02 01:34:56 +08:00
|
|
|
gint
|
1998-11-08 07:02:14 +08:00
|
|
|
gimp_channel_get_tattoo (gint32 channel_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-03-26 02:49:05 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gint tattoo = 0;
|
1998-11-08 07:02:14 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_get_tattoo",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_END);
|
1998-11-08 07:02:14 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-02 01:34:56 +08:00
|
|
|
tattoo = return_vals[1].data.d_tattoo;
|
1998-11-08 07:02:14 +08:00
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return tattoo;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_set_tattoo:
|
|
|
|
* @channel_ID: The channel.
|
|
|
|
* @tattoo: The new channel tattoo.
|
|
|
|
*
|
|
|
|
* Set the tattoo of the specified channel.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified channel's tattoo. A tattoo is a
|
|
|
|
* unique and permanent identifier attached to a channel that can be
|
|
|
|
* used to uniquely identify a channel within an image even between
|
|
|
|
* sessions.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_channel_set_tattoo (gint32 channel_ID,
|
|
|
|
gint tattoo)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-06-02 01:34:56 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
2000-06-02 01:34:56 +08:00
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp_channel_set_tattoo",
|
|
|
|
&nreturn_vals,
|
2000-08-03 09:35:28 +08:00
|
|
|
GIMP_PDB_CHANNEL, channel_ID,
|
|
|
|
GIMP_PDB_INT32, tattoo,
|
|
|
|
GIMP_PDB_END);
|
2000-06-02 01:34:56 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
2000-06-02 01:34:56 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
2000-06-02 01:34:56 +08:00
|
|
|
}
|