gimp/app/channel_cmds.c

841 lines
18 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* NOTE: This file is autogenerated by pdbgen.pl. */
#include "procedural_db.h"
#include "channel.h"
#include "channel_pvt.h"
#include "drawable.h"
#include "gimpimage.h"
static ProcRecord channel_new_proc;
static ProcRecord channel_copy_proc;
static ProcRecord channel_delete_proc;
static ProcRecord channel_get_name_proc;
static ProcRecord channel_set_name_proc;
static ProcRecord channel_get_visible_proc;
static ProcRecord channel_set_visible_proc;
static ProcRecord channel_get_show_masked_proc;
static ProcRecord channel_set_show_masked_proc;
static ProcRecord channel_get_opacity_proc;
static ProcRecord channel_set_opacity_proc;
static ProcRecord channel_get_color_proc;
static ProcRecord channel_set_color_proc;
static ProcRecord channel_get_tattoo_proc;
void
register_channel_procs (void)
{
procedural_db_register (&channel_new_proc);
procedural_db_register (&channel_copy_proc);
procedural_db_register (&channel_delete_proc);
procedural_db_register (&channel_get_name_proc);
procedural_db_register (&channel_set_name_proc);
procedural_db_register (&channel_get_visible_proc);
procedural_db_register (&channel_set_visible_proc);
procedural_db_register (&channel_get_show_masked_proc);
procedural_db_register (&channel_set_show_masked_proc);
procedural_db_register (&channel_get_opacity_proc);
procedural_db_register (&channel_set_opacity_proc);
procedural_db_register (&channel_get_color_proc);
procedural_db_register (&channel_set_color_proc);
procedural_db_register (&channel_get_tattoo_proc);
}
static Argument *
channel_new_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
GimpImage *gimage;
gint32 width;
gint32 height;
gchar *name;
gdouble opacity;
guchar *color;
Channel *channel = NULL;
gimage = pdb_id_to_image (args[0].value.pdb_int);
if (gimage == NULL)
success = FALSE;
width = args[1].value.pdb_int;
if (width <= 0)
success = FALSE;
height = args[2].value.pdb_int;
if (height <= 0)
success = FALSE;
name = (gchar *) args[3].value.pdb_pointer;
if (name == NULL)
success = FALSE;
opacity = args[4].value.pdb_float;
if (opacity < 0.0 || opacity > 100.0)
success = FALSE;
color = (guchar *) args[5].value.pdb_pointer;
if (success)
{
channel = channel_new (gimage, width, height, name, opacity, color);
success = channel != NULL;
}
return_args = procedural_db_return_args (&channel_new_proc, success);
if (success)
return_args[1].value.pdb_int = drawable_ID (GIMP_DRAWABLE (channel));
return return_args;
}
static ProcArg channel_new_inargs[] =
{
{
PDB_IMAGE,
"image",
"The image to which to add the channel"
},
{
PDB_INT32,
"width",
"The channel width: (0 < width)"
},
{
PDB_INT32,
"height",
"The channel height: (0 < height)"
},
{
PDB_STRING,
"name",
"The channel name"
},
{
PDB_FLOAT,
"opacity",
"The channel opacity: (0 <= opacity <= 100)"
},
{
PDB_COLOR,
"color",
"The channel compositing color"
}
};
static ProcArg channel_new_outargs[] =
{
{
PDB_CHANNEL,
"channel",
"The newly created channel"
}
};
static ProcRecord channel_new_proc =
{
"gimp_channel_new",
"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.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
6,
channel_new_inargs,
1,
channel_new_outargs,
{ { channel_new_invoker } }
};
static Argument *
channel_copy_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
Channel *copy = NULL;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
if (success)
success = (copy = channel_copy (channel)) != NULL;
return_args = procedural_db_return_args (&channel_copy_proc, success);
if (success)
return_args[1].value.pdb_int = drawable_ID (GIMP_DRAWABLE (copy));
return return_args;
}
static ProcArg channel_copy_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel to copy"
}
};
static ProcArg channel_copy_outargs[] =
{
{
PDB_CHANNEL,
"channel_copy",
"The newly copied channel"
}
};
static ProcRecord channel_copy_proc =
{
"gimp_channel_copy",
"Copy a channel.",
"This procedure copies the specified channel and returns the copy.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_copy_inargs,
1,
channel_copy_outargs,
{ { channel_copy_invoker } }
};
static Argument *
channel_delete_invoker (Argument *args)
{
gboolean success = TRUE;
Channel *channel;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
if (success)
channel_delete (channel);
return procedural_db_return_args (&channel_delete_proc, success);
}
static ProcArg channel_delete_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel to delete"
}
};
static ProcRecord channel_delete_proc =
{
"gimp_channel_delete",
"Delete a channel.",
"This procedure deletes the specified channel. This does not need to be done if a gimage containing this channel was already deleted.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_delete_inargs,
0,
NULL,
{ { channel_delete_invoker } }
};
static Argument *
channel_get_name_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
return_args = procedural_db_return_args (&channel_get_name_proc, success);
if (success)
return_args[1].value.pdb_pointer = g_strdup (channel_get_name (channel));
return return_args;
}
static ProcArg channel_get_name_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
}
};
static ProcArg channel_get_name_outargs[] =
{
{
PDB_STRING,
"name",
"The channel name"
}
};
static ProcRecord channel_get_name_proc =
{
"gimp_channel_get_name",
"Get the name of the specified channel.",
"This procedure returns the specified channel's name.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_get_name_inargs,
1,
channel_get_name_outargs,
{ { channel_get_name_invoker } }
};
static Argument *
channel_set_name_invoker (Argument *args)
{
gboolean success = TRUE;
Channel *channel;
gchar *name;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
name = (gchar *) args[1].value.pdb_pointer;
if (success)
channel_set_name (channel, name);
return procedural_db_return_args (&channel_set_name_proc, success);
}
static ProcArg channel_set_name_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
},
{
PDB_STRING,
"name",
"The new channel name"
}
};
static ProcRecord channel_set_name_proc =
{
"gimp_channel_set_name",
"Set the name of the specified channel.",
"This procedure sets the specified channel's name.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
2,
channel_set_name_inargs,
0,
NULL,
{ { channel_set_name_invoker } }
};
static Argument *
channel_get_visible_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
return_args = procedural_db_return_args (&channel_get_visible_proc, success);
if (success)
return_args[1].value.pdb_int = GIMP_DRAWABLE (channel)->visible;
return return_args;
}
static ProcArg channel_get_visible_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
}
};
static ProcArg channel_get_visible_outargs[] =
{
{
PDB_INT32,
"visible",
"The channel visibility"
}
};
static ProcRecord channel_get_visible_proc =
{
"gimp_channel_get_visible",
"Get the visibility of the specified channel.",
"This procedure returns the specified channel's visibility.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_get_visible_inargs,
1,
channel_get_visible_outargs,
{ { channel_get_visible_invoker } }
};
static Argument *
channel_set_visible_invoker (Argument *args)
{
gboolean success = TRUE;
Channel *channel;
gboolean visible;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
visible = args[1].value.pdb_int ? TRUE : FALSE;
if (success)
GIMP_DRAWABLE (channel)->visible = visible;
return procedural_db_return_args (&channel_set_visible_proc, success);
}
static ProcArg channel_set_visible_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
},
{
PDB_INT32,
"visible",
"The new channel visibility"
}
};
static ProcRecord channel_set_visible_proc =
{
"gimp_channel_set_visible",
"Set the visibility of the specified channel.",
"This procedure sets the specified channel's visibility.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
2,
channel_set_visible_inargs,
0,
NULL,
{ { channel_set_visible_invoker } }
};
static Argument *
channel_get_show_masked_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
return_args = procedural_db_return_args (&channel_get_show_masked_proc, success);
if (success)
return_args[1].value.pdb_int = channel->show_masked;
return return_args;
}
static ProcArg channel_get_show_masked_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
}
};
static ProcArg channel_get_show_masked_outargs[] =
{
{
PDB_INT32,
"show_masked",
"The channel composite method"
}
};
static ProcRecord channel_get_show_masked_proc =
{
"gimp_channel_get_show_masked",
"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.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_get_show_masked_inargs,
1,
channel_get_show_masked_outargs,
{ { channel_get_show_masked_invoker } }
};
static Argument *
channel_set_show_masked_invoker (Argument *args)
{
gboolean success = TRUE;
Channel *channel;
gboolean show_masked;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
show_masked = args[1].value.pdb_int ? TRUE : FALSE;
if (success)
channel->show_masked = show_masked;
return procedural_db_return_args (&channel_set_show_masked_proc, success);
}
static ProcArg channel_set_show_masked_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
},
{
PDB_INT32,
"show_masked",
"The new channel composite method"
}
};
static ProcRecord channel_set_show_masked_proc =
{
"gimp_channel_set_show_masked",
"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.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
2,
channel_set_show_masked_inargs,
0,
NULL,
{ { channel_set_show_masked_invoker } }
};
static Argument *
channel_get_opacity_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
return_args = procedural_db_return_args (&channel_get_opacity_proc, success);
if (success)
return_args[1].value.pdb_float = (channel->opacity * 100.0) / 255.0;
return return_args;
}
static ProcArg channel_get_opacity_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
}
};
static ProcArg channel_get_opacity_outargs[] =
{
{
PDB_FLOAT,
"opacity",
"The channel opacity"
}
};
static ProcRecord channel_get_opacity_proc =
{
"gimp_channel_get_opacity",
"Get the opacity of the specified channel.",
"This procedure returns the specified channel's opacity.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_get_opacity_inargs,
1,
channel_get_opacity_outargs,
{ { channel_get_opacity_invoker } }
};
static Argument *
channel_set_opacity_invoker (Argument *args)
{
gboolean success = TRUE;
Channel *channel;
gdouble opacity;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
opacity = args[1].value.pdb_float;
if (opacity < 0.0 || opacity > 100.0)
success = FALSE;
if (success)
channel->opacity = (int) ((opacity * 255) / 100);
return procedural_db_return_args (&channel_set_opacity_proc, success);
}
static ProcArg channel_set_opacity_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
},
{
PDB_FLOAT,
"opacity",
"The new channel opacity (0 <= opacity <= 100)"
}
};
static ProcRecord channel_set_opacity_proc =
{
"gimp_channel_set_opacity",
"Set the opacity of the specified channel.",
"This procedure sets the specified channel's opacity.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
2,
channel_set_opacity_inargs,
0,
NULL,
{ { channel_set_opacity_invoker } }
};
static Argument *
channel_get_color_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
guchar *color = NULL;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
if (success)
{
color = g_new (guchar, 3);
color[RED_PIX] = channel->col[RED_PIX];
color[GREEN_PIX] = channel->col[GREEN_PIX];
color[BLUE_PIX] = channel->col[BLUE_PIX];
}
return_args = procedural_db_return_args (&channel_get_color_proc, success);
if (success)
return_args[1].value.pdb_pointer = color;
return return_args;
}
static ProcArg channel_get_color_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
}
};
static ProcArg channel_get_color_outargs[] =
{
{
PDB_COLOR,
"color",
"The channel compositing color"
}
};
static ProcRecord channel_get_color_proc =
{
"gimp_channel_get_color",
"Get the compositing color of the specified channel.",
"This procedure returns the specified channel's compositing color.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
1,
channel_get_color_inargs,
1,
channel_get_color_outargs,
{ { channel_get_color_invoker } }
};
static Argument *
channel_set_color_invoker (Argument *args)
{
gboolean success = TRUE;
Channel *channel;
guchar *color;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
color = (guchar *) args[1].value.pdb_pointer;
if (success)
channel_set_color(channel, color);
return procedural_db_return_args (&channel_set_color_proc, success);
}
static ProcArg channel_set_color_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
},
{
PDB_COLOR,
"color",
"The new channel compositing color"
}
};
static ProcRecord channel_set_color_proc =
{
"gimp_channel_set_color",
"Set the compositing color of the specified channel.",
"This procedure sets the specified channel's compositing color.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
PDB_INTERNAL,
2,
channel_set_color_inargs,
0,
NULL,
{ { channel_set_color_invoker } }
};
static Argument *
channel_get_tattoo_invoker (Argument *args)
{
gboolean success = TRUE;
Argument *return_args;
Channel *channel;
channel = channel_get_ID (args[0].value.pdb_int);
if (channel == NULL)
success = FALSE;
return_args = procedural_db_return_args (&channel_get_tattoo_proc, success);
if (success)
return_args[1].value.pdb_int = channel_get_tattoo (channel);
return return_args;
}
static ProcArg channel_get_tattoo_inargs[] =
{
{
PDB_CHANNEL,
"channel",
"The channel"
}
};
static ProcArg channel_get_tattoo_outargs[] =
{
{
PDB_INT32,
"tattoo",
"The channel tattoo"
}
};
static ProcRecord channel_get_tattoo_proc =
{
"gimp_channel_get_tattoo",
"Returns the tattoo associated with the specified channel.",
"This procedure returns the tattoo associated with the specified channel. 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",
"Jay Cox",
"Jay Cox",
"1998",
PDB_INTERNAL,
1,
channel_get_tattoo_inargs,
1,
channel_get_tattoo_outargs,
{ { channel_get_tattoo_invoker } }
};