2023-09-26 00:35:21 +02:00
|
|
|
# PIKA - Photo and Image Kooker Application
|
|
|
|
# Copyright (C) 1995 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
|
|
|
|
|
|
|
|
# The invoke code is compiled on the app side.
|
|
|
|
# The invoke code must assign to each result var
|
|
|
|
|
|
|
|
|
|
|
|
$palette_arg_spec = { name => 'palette', type => 'palette', non_empty => 1,
|
|
|
|
desc => 'The palette' };
|
|
|
|
|
|
|
|
sub palette_new {
|
|
|
|
$blurb = "Creates a new palette";
|
|
|
|
$help = <<'HELP';
|
|
|
|
Creates a new palette.
|
|
|
|
The new palette has no color entries.
|
|
|
|
You must add color entries for a user to choose.
|
|
|
|
The actual name might be different than the requested name,
|
|
|
|
when the requested name is already in use.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
{ name => 'name', type => 'string', non_empty => 1,
|
|
|
|
desc => 'The requested name of the new palette' }
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
${palette_arg_spec}
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
palette = (PikaPalette*) pika_data_factory_data_new (pika->palette_factory,
|
|
|
|
context, name);
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_get_by_name {
|
|
|
|
$blurb = "Returns the palette with the given name.";
|
|
|
|
$help = "Returns the palette with the given name.";
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2023', '3.0');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
{ name => 'name', type => 'string', non_empty => 1,
|
|
|
|
desc => 'The name of the palette' }
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'palette', type => 'palette', non_empty => 1,
|
|
|
|
desc => 'The palette' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
palette = PIKA_PALETTE (pika_pdb_get_resource (pika, PIKA_TYPE_PALETTE, name,
|
|
|
|
PIKA_PDB_DATA_ACCESS_READ, error));
|
|
|
|
|
|
|
|
if (! palette)
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_get_color_count {
|
|
|
|
$blurb = 'Get the count of colors in the palette.';
|
|
|
|
|
|
|
|
$help = 'Returns the number of colors in the palette.';
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec}
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'num_colors', type => 'int32',
|
|
|
|
desc => 'The number of colors in the palette' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
num_colors = pika_palette_get_n_colors (palette);
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_get_colors {
|
|
|
|
$blurb = 'Gets colors in the palette.';
|
|
|
|
|
|
|
|
$help = "Returns an array of colors in the palette.";
|
|
|
|
|
|
|
|
&neo_pdb_misc('2006', '2.6');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec}
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'colors', type => 'colorarray',
|
|
|
|
desc => 'The colors in the palette',
|
|
|
|
array => { name => 'num_colors',
|
|
|
|
desc => 'Length of the colors array' } }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
GList *list = pika_palette_get_colors (palette);
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
num_colors = pika_palette_get_n_colors (palette);
|
|
|
|
colors = g_new (PikaRGB, num_colors);
|
|
|
|
|
|
|
|
for (i = 0; i < num_colors; i++, list = g_list_next (list))
|
|
|
|
{
|
|
|
|
PikaPaletteEntry *entry = list->data;
|
|
|
|
|
|
|
|
colors[i] = entry->color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_get_columns {
|
|
|
|
$blurb = "Gets the number of columns used to display the palette";
|
|
|
|
$help = "Gets the preferred number of columns to display the palette.";
|
|
|
|
|
|
|
|
&neo_pdb_misc('2005', '2.4');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec}
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'num_columns', type => 'int32',
|
|
|
|
desc => "The number of columns used to display this palette" }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
num_columns = pika_palette_get_columns (palette);
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_set_columns {
|
|
|
|
$blurb = "Sets the number of columns used to display the palette";
|
|
|
|
$help = <<'HELP';
|
|
|
|
Set the number of colors shown per row when the palette is displayed.
|
|
|
|
Returns an error when the palette is not editable.
|
|
|
|
The maximum allowed value is 64.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&neo_pdb_misc('2005', '2.4');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'columns', type => '0 <= int32 <= 64',
|
|
|
|
desc => "The new number of columns" }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
if (pika_data_is_writable (PIKA_DATA (palette)))
|
|
|
|
pika_palette_set_columns (palette, columns);
|
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# FIXME null_ok should allow None in Python for name, but fails.
|
|
|
|
|
|
|
|
sub palette_add_entry {
|
|
|
|
$blurb = 'Appends an entry to the palette.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
Appends an entry to the palette.
|
|
|
|
Neither color nor name must be unique within the palette.
|
|
|
|
When name is the empty string, this sets the entry name to "Untitled".
|
|
|
|
Returns the index of the entry.
|
|
|
|
Returns an error when palette is not editable.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'entry_name', type => 'string', null_ok => 1,
|
|
|
|
desc => 'A name for the entry' },
|
|
|
|
{ name => 'color', type => 'color',
|
|
|
|
desc => 'The color for the added entry.' }
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'entry_num', type => 'int32', void_ret => 1,
|
|
|
|
desc => 'The index of the added entry' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
/* Must check writeable here, because add_entry does not fail when not writeable. */
|
|
|
|
if (pika_data_is_writable (PIKA_DATA (palette)))
|
|
|
|
{
|
|
|
|
/* -1 for the index means append. */
|
|
|
|
PikaPaletteEntry *entry = pika_palette_add_entry (palette, -1, entry_name, &color);
|
|
|
|
|
|
|
|
entry_num = pika_palette_get_entry_position (palette, entry);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_delete_entry {
|
|
|
|
$blurb = 'Deletes an entry from the palette.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
2023-10-30 23:55:30 +01:00
|
|
|
This function will fail and return %FALSE if the index is out or range or if the
|
|
|
|
palette is not editable.
|
|
|
|
|
|
|
|
Additionally if the palette belongs to an indexed image, it will only be possible
|
|
|
|
to delete palette colors not in use in the image.
|
2023-09-26 00:35:21 +02:00
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'entry_num', type => 'int32',
|
|
|
|
desc => 'The index of the entry to delete' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
if (pika_data_is_writable (PIKA_DATA (palette)))
|
|
|
|
{
|
|
|
|
PikaPaletteEntry *entry = pika_palette_get_entry (palette, entry_num);
|
|
|
|
|
|
|
|
if (entry)
|
2023-10-30 23:55:30 +01:00
|
|
|
{
|
|
|
|
PikaImage *image = pika_data_get_image (PIKA_DATA (palette));
|
|
|
|
|
|
|
|
if (image != NULL)
|
|
|
|
success = pika_image_delete_colormap_entry (image, entry_num, TRUE);
|
|
|
|
else
|
|
|
|
pika_palette_delete_entry (palette, entry);
|
|
|
|
}
|
2023-09-26 00:35:21 +02:00
|
|
|
else
|
2023-10-30 23:55:30 +01:00
|
|
|
{
|
|
|
|
success = FALSE;
|
|
|
|
}
|
2023-09-26 00:35:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_entry_get_color {
|
|
|
|
$blurb = 'Gets the color of an entry in the palette.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
Returns the color of the entry at the given zero-based index into the palette.
|
|
|
|
Returns an error when the index is out of range.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'entry_num', type => 'int32',
|
|
|
|
desc => 'The index of the entry to get the color of.' }
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'color', type => 'color', void_ret => 1,
|
|
|
|
desc => 'The color at the index.' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
PikaPaletteEntry *entry = pika_palette_get_entry (palette, entry_num);
|
|
|
|
|
|
|
|
if (entry)
|
|
|
|
color = entry->color;
|
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_entry_set_color {
|
|
|
|
$blurb = 'Sets the color of an entry in the palette.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
Sets the color of the entry at the zero-based index into the palette.
|
|
|
|
Returns an error when the index is out of range.
|
|
|
|
Returns an error when the palette is not editable.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'entry_num', type => 'int32',
|
|
|
|
desc => 'The entry to get' },
|
|
|
|
{ name => 'color', type => 'color',
|
|
|
|
desc => 'The new color' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
if (pika_data_is_writable (PIKA_DATA (palette)))
|
2023-10-30 23:55:30 +01:00
|
|
|
success = pika_palette_set_entry_color (palette, entry_num, &color, TRUE);
|
2023-09-26 00:35:21 +02:00
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_entry_get_name {
|
|
|
|
$blurb = 'Gets the name of an entry in the palette.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
Gets the name of the entry at the zero-based index into the palette.
|
|
|
|
Returns an error when the index is out of range.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'entry_num', type => 'int32',
|
|
|
|
desc => 'The entry to get' }
|
|
|
|
);
|
|
|
|
|
|
|
|
@outargs = (
|
|
|
|
{ name => 'entry_name', type => 'string', void_ret => 1,
|
|
|
|
desc => 'The name of the entry.' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
PikaPaletteEntry *entry = pika_palette_get_entry (palette, entry_num);
|
|
|
|
|
|
|
|
if (entry)
|
|
|
|
entry_name = g_strdup (entry->name);
|
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub palette_entry_set_name {
|
|
|
|
$blurb = 'Sets the name of an entry in the palette.';
|
|
|
|
|
|
|
|
$help = <<'HELP';
|
|
|
|
Sets the name of the entry at the zero-based index into the palette.
|
|
|
|
Returns an error if the index is out or range.
|
|
|
|
Returns an error if the palette is not editable.
|
|
|
|
HELP
|
|
|
|
|
|
|
|
&mitch_pdb_misc('2004', '2.2');
|
|
|
|
|
|
|
|
@inargs = (
|
|
|
|
${palette_arg_spec},
|
|
|
|
{ name => 'entry_num', type => 'int32',
|
|
|
|
desc => 'The entry to get' },
|
|
|
|
{ name => 'entry_name', type => 'string', null_ok => 1,
|
|
|
|
desc => 'The new name' }
|
|
|
|
);
|
|
|
|
|
|
|
|
%invoke = (
|
|
|
|
code => <<'CODE'
|
|
|
|
{
|
|
|
|
if (pika_data_is_writable (PIKA_DATA (palette)))
|
|
|
|
success = pika_palette_set_entry_name (palette, entry_num, entry_name);
|
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
CODE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@headers = qw(<string.h>
|
|
|
|
"core/pika.h"
|
|
|
|
"core/pikacontext.h"
|
|
|
|
"core/pikadatafactory.h"
|
2023-10-30 23:55:30 +01:00
|
|
|
"core/pikaimage-colormap.h"
|
2023-09-26 00:35:21 +02:00
|
|
|
"core/pikapalette.h"
|
|
|
|
"pikapdb-utils.h");
|
|
|
|
|
|
|
|
@procs = qw(palette_new
|
|
|
|
palette_get_by_name
|
|
|
|
palette_get_color_count
|
|
|
|
palette_get_colors
|
|
|
|
palette_get_columns palette_set_columns
|
|
|
|
palette_add_entry palette_delete_entry
|
|
|
|
palette_entry_get_color palette_entry_set_color
|
|
|
|
palette_entry_get_name palette_entry_set_name);
|
|
|
|
|
|
|
|
%exports = (app => [@procs], lib => [@procs]);
|
|
|
|
|
|
|
|
$desc = 'Palette';
|
|
|
|
$doc_title = 'pikapalette';
|
|
|
|
$doc_short_desc = 'Installable object, a small set of colors a user can choose from.';
|
|
|
|
$doc_long_desc = 'Installable object, a small set of colors a user can choose from.';
|
|
|
|
|
|
|
|
1;
|