2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-01-22 03:53:56 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-01-22 03:53:56 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-01-22 03:53:56 +08:00
|
|
|
* (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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2001-01-22 03:53:56 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-04-28 21:50:39 +08:00
|
|
|
#include <cairo.h>
|
2012-03-22 04:58:40 +08:00
|
|
|
#include <gegl.h>
|
2012-05-03 09:36:22 +08:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2003-10-16 20:24:58 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2001-01-24 02:49:44 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "core-types.h"
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2014-08-12 19:57:57 +08:00
|
|
|
#include "gimp-memsize.h"
|
2001-01-22 03:53:56 +08:00
|
|
|
#include "gimppalette.h"
|
2006-10-03 21:22:12 +08:00
|
|
|
#include "gimppalette-load.h"
|
|
|
|
#include "gimppalette-save.h"
|
2008-12-13 19:58:24 +08:00
|
|
|
#include "gimptagged.h"
|
2012-04-09 06:59:20 +08:00
|
|
|
#include "gimptempbuf.h"
|
2001-05-10 06:34:59 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2019-01-02 08:45:41 +08:00
|
|
|
|
|
|
|
#define RGB_EPSILON 1e-6
|
|
|
|
|
2001-01-22 03:53:56 +08:00
|
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
|
2008-12-13 19:58:24 +08:00
|
|
|
static void gimp_palette_tagged_iface_init (GimpTaggedInterface *iface);
|
|
|
|
|
|
|
|
static void gimp_palette_finalize (GObject *object);
|
|
|
|
|
|
|
|
static gint64 gimp_palette_get_memsize (GimpObject *object,
|
|
|
|
gint64 *gui_size);
|
|
|
|
|
|
|
|
static void gimp_palette_get_preview_size (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gboolean popup,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *width,
|
|
|
|
gint *height);
|
|
|
|
static gboolean gimp_palette_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height);
|
2012-04-09 02:25:49 +08:00
|
|
|
static GimpTempBuf * gimp_palette_get_new_preview (GimpViewable *viewable,
|
2008-12-13 19:58:24 +08:00
|
|
|
GimpContext *context,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
static gchar * gimp_palette_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip);
|
|
|
|
static const gchar * gimp_palette_get_extension (GimpData *data);
|
2017-11-05 09:21:12 +08:00
|
|
|
static void gimp_palette_copy (GimpData *data,
|
|
|
|
GimpData *src_data);
|
2008-12-13 19:58:24 +08:00
|
|
|
|
|
|
|
static void gimp_palette_entry_free (GimpPaletteEntry *entry);
|
|
|
|
static gint64 gimp_palette_entry_get_memsize (GimpPaletteEntry *entry,
|
|
|
|
gint64 *gui_size);
|
|
|
|
static gchar * gimp_palette_get_checksum (GimpTagged *tagged);
|
|
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GimpPalette, gimp_palette, GIMP_TYPE_DATA,
|
|
|
|
G_IMPLEMENT_INTERFACE (GIMP_TYPE_TAGGED,
|
|
|
|
gimp_palette_tagged_iface_init))
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2005-12-11 03:24:36 +08:00
|
|
|
#define parent_class gimp_palette_parent_class
|
2001-01-22 03:53:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_palette_class_init (GimpPaletteClass *klass)
|
|
|
|
{
|
2004-06-30 19:09:44 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpObjectClass *gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
GimpViewableClass *viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
|
|
|
GimpDataClass *data_class = GIMP_DATA_CLASS (klass);
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2014-05-07 07:01:56 +08:00
|
|
|
object_class->finalize = gimp_palette_finalize;
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2014-05-07 07:01:56 +08:00
|
|
|
gimp_object_class->get_memsize = gimp_palette_get_memsize;
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2016-09-03 21:28:22 +08:00
|
|
|
viewable_class->default_icon_name = "gtk-select-color";
|
2014-05-07 07:01:56 +08:00
|
|
|
viewable_class->get_preview_size = gimp_palette_get_preview_size;
|
|
|
|
viewable_class->get_popup_size = gimp_palette_get_popup_size;
|
|
|
|
viewable_class->get_new_preview = gimp_palette_get_new_preview;
|
|
|
|
viewable_class->get_description = gimp_palette_get_description;
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2014-05-07 07:01:56 +08:00
|
|
|
data_class->save = gimp_palette_save;
|
|
|
|
data_class->get_extension = gimp_palette_get_extension;
|
2017-11-05 09:21:12 +08:00
|
|
|
data_class->copy = gimp_palette_copy;
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
|
|
|
|
2008-12-13 19:58:24 +08:00
|
|
|
static void
|
|
|
|
gimp_palette_tagged_iface_init (GimpTaggedInterface *iface)
|
|
|
|
{
|
|
|
|
iface->get_checksum = gimp_palette_get_checksum;
|
|
|
|
}
|
|
|
|
|
2001-01-22 03:53:56 +08:00
|
|
|
static void
|
|
|
|
gimp_palette_init (GimpPalette *palette)
|
|
|
|
{
|
|
|
|
palette->colors = NULL;
|
|
|
|
palette->n_colors = 0;
|
2001-02-13 02:05:12 +08:00
|
|
|
palette->n_columns = 0;
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_palette_finalize (GObject *object)
|
2001-01-22 03:53:56 +08:00
|
|
|
{
|
2003-11-17 01:51:36 +08:00
|
|
|
GimpPalette *palette = GIMP_PALETTE (object);
|
2001-01-22 03:53:56 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
if (palette->colors)
|
2001-01-22 03:53:56 +08:00
|
|
|
{
|
2011-03-08 00:10:18 +08:00
|
|
|
g_list_free_full (palette->colors,
|
|
|
|
(GDestroyNotify) gimp_palette_entry_free);
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
palette->colors = NULL;
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
|
|
|
|
2003-11-17 01:51:36 +08:00
|
|
|
static gint64
|
2003-08-25 18:49:33 +08:00
|
|
|
gimp_palette_get_memsize (GimpObject *object,
|
2003-11-17 01:51:36 +08:00
|
|
|
gint64 *gui_size)
|
2002-01-31 00:14:26 +08:00
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
GimpPalette *palette = GIMP_PALETTE (object);
|
2003-11-17 01:51:36 +08:00
|
|
|
gint64 memsize = 0;
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2007-03-06 04:09:46 +08:00
|
|
|
memsize += gimp_g_list_get_memsize_foreach (palette->colors,
|
|
|
|
(GimpMemsizeFunc)
|
|
|
|
gimp_palette_entry_get_memsize,
|
|
|
|
gui_size);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2003-08-25 18:49:33 +08:00
|
|
|
return memsize + GIMP_OBJECT_CLASS (parent_class)->get_memsize (object,
|
|
|
|
gui_size);
|
2002-01-31 00:14:26 +08:00
|
|
|
}
|
|
|
|
|
2003-02-22 03:03:19 +08:00
|
|
|
static void
|
|
|
|
gimp_palette_get_preview_size (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gboolean popup,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
*width = size;
|
2007-11-05 03:46:35 +08:00
|
|
|
*height = 1 + size / 2;
|
2003-02-22 03:03:19 +08:00
|
|
|
}
|
|
|
|
|
2003-02-27 21:59:41 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_palette_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height)
|
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
GimpPalette *palette = GIMP_PALETTE (viewable);
|
2003-02-27 21:59:41 +08:00
|
|
|
gint p_width;
|
|
|
|
gint p_height;
|
|
|
|
|
|
|
|
if (! palette->n_colors)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (palette->n_columns)
|
|
|
|
p_width = palette->n_columns;
|
|
|
|
else
|
|
|
|
p_width = MIN (palette->n_colors, 16);
|
|
|
|
|
|
|
|
p_height = MAX (1, palette->n_colors / p_width);
|
|
|
|
|
|
|
|
if (p_width * 4 > width || p_height * 4 > height)
|
|
|
|
{
|
|
|
|
*popup_width = p_width * 4;
|
|
|
|
*popup_height = p_height * 4;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-04-09 02:25:49 +08:00
|
|
|
static GimpTempBuf *
|
2001-02-12 00:14:25 +08:00
|
|
|
gimp_palette_get_new_preview (GimpViewable *viewable,
|
2006-08-30 05:44:51 +08:00
|
|
|
GimpContext *context,
|
2004-06-30 19:09:44 +08:00
|
|
|
gint width,
|
|
|
|
gint height)
|
2001-02-12 00:14:25 +08:00
|
|
|
{
|
2004-09-28 22:59:55 +08:00
|
|
|
GimpPalette *palette = GIMP_PALETTE (viewable);
|
2012-04-09 02:25:49 +08:00
|
|
|
GimpTempBuf *temp_buf;
|
2004-09-28 22:59:55 +08:00
|
|
|
guchar *buf;
|
|
|
|
guchar *b;
|
|
|
|
GList *list;
|
|
|
|
gint columns;
|
|
|
|
gint rows;
|
|
|
|
gint cell_size;
|
|
|
|
gint x, y;
|
|
|
|
|
2012-04-09 05:56:52 +08:00
|
|
|
temp_buf = gimp_temp_buf_new (width, height, babl_format ("R'G'B' u8"));
|
|
|
|
memset (gimp_temp_buf_get_data (temp_buf), 255, width * height * 3);
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2002-10-09 22:04:25 +08:00
|
|
|
if (palette->n_columns > 1)
|
|
|
|
cell_size = MAX (4, width / palette->n_columns);
|
|
|
|
else
|
|
|
|
cell_size = 4;
|
2001-02-13 02:05:12 +08:00
|
|
|
|
2002-10-09 22:04:25 +08:00
|
|
|
columns = width / cell_size;
|
|
|
|
rows = height / cell_size;
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2012-04-09 05:56:52 +08:00
|
|
|
buf = gimp_temp_buf_get_data (temp_buf);
|
2001-02-12 00:14:25 +08:00
|
|
|
b = g_new (guchar, width * 3);
|
|
|
|
|
|
|
|
list = palette->colors;
|
|
|
|
|
|
|
|
for (y = 0; y < rows && list; y++)
|
|
|
|
{
|
2004-09-28 22:59:55 +08:00
|
|
|
gint i;
|
|
|
|
|
2002-10-09 22:04:25 +08:00
|
|
|
memset (b, 255, width * 3);
|
|
|
|
|
2001-02-12 00:14:25 +08:00
|
|
|
for (x = 0; x < columns && list; x++)
|
2004-06-30 19:09:44 +08:00
|
|
|
{
|
2004-09-28 22:59:55 +08:00
|
|
|
GimpPaletteEntry *entry = list->data;
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2004-06-30 19:09:44 +08:00
|
|
|
list = g_list_next (list);
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2004-06-30 19:09:44 +08:00
|
|
|
gimp_rgb_get_uchar (&entry->color,
|
|
|
|
&b[x * cell_size * 3 + 0],
|
|
|
|
&b[x * cell_size * 3 + 1],
|
|
|
|
&b[x * cell_size * 3 + 2]);
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2004-06-30 19:09:44 +08:00
|
|
|
for (i = 1; i < cell_size; i++)
|
|
|
|
{
|
|
|
|
b[(x * cell_size + i) * 3 + 0] = b[(x * cell_size) * 3 + 0];
|
|
|
|
b[(x * cell_size + i) * 3 + 1] = b[(x * cell_size) * 3 + 1];
|
|
|
|
b[(x * cell_size + i) * 3 + 2] = b[(x * cell_size) * 3 + 2];
|
|
|
|
}
|
|
|
|
}
|
2001-02-12 00:14:25 +08:00
|
|
|
|
2002-10-09 22:04:25 +08:00
|
|
|
for (i = 0; i < cell_size; i++)
|
2004-09-28 22:59:55 +08:00
|
|
|
memcpy (buf + ((y * cell_size + i) * width) * 3, b, width * 3);
|
2001-02-12 00:14:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (b);
|
|
|
|
|
|
|
|
return temp_buf;
|
|
|
|
}
|
|
|
|
|
2003-04-09 00:01:01 +08:00
|
|
|
static gchar *
|
|
|
|
gimp_palette_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip)
|
|
|
|
{
|
2003-11-17 01:51:36 +08:00
|
|
|
GimpPalette *palette = GIMP_PALETTE (viewable);
|
2003-04-09 00:01:01 +08:00
|
|
|
|
|
|
|
return g_strdup_printf ("%s (%d)",
|
2009-08-29 18:40:40 +08:00
|
|
|
gimp_object_get_name (palette),
|
2003-04-09 00:01:01 +08:00
|
|
|
palette->n_colors);
|
|
|
|
}
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
GimpData *
|
2010-04-11 01:55:42 +08:00
|
|
|
gimp_palette_new (GimpContext *context,
|
|
|
|
const gchar *name)
|
2001-01-22 03:53:56 +08:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (*name != '\0', NULL);
|
|
|
|
|
2004-01-30 00:19:57 +08:00
|
|
|
return g_object_new (GIMP_TYPE_PALETTE,
|
|
|
|
"name", name,
|
|
|
|
NULL);
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
|
|
|
|
2001-02-14 22:57:14 +08:00
|
|
|
GimpData *
|
2010-04-05 19:24:54 +08:00
|
|
|
gimp_palette_get_standard (GimpContext *context)
|
2001-02-14 03:53:07 +08:00
|
|
|
{
|
2004-01-30 00:19:57 +08:00
|
|
|
static GimpData *standard_palette = NULL;
|
2001-02-14 03:53:07 +08:00
|
|
|
|
|
|
|
if (! standard_palette)
|
|
|
|
{
|
2010-04-11 01:55:42 +08:00
|
|
|
standard_palette = gimp_palette_new (context, "Standard");
|
2004-01-30 00:19:57 +08:00
|
|
|
|
2009-11-01 01:48:38 +08:00
|
|
|
gimp_data_clean (standard_palette);
|
|
|
|
gimp_data_make_internal (standard_palette, "gimp-palette-standard");
|
2001-02-14 03:53:07 +08:00
|
|
|
|
2010-06-24 18:46:45 +08:00
|
|
|
g_object_add_weak_pointer (G_OBJECT (standard_palette),
|
|
|
|
(gpointer *) &standard_palette);
|
2001-02-14 03:53:07 +08:00
|
|
|
}
|
|
|
|
|
2004-01-30 00:19:57 +08:00
|
|
|
return standard_palette;
|
2001-02-14 03:53:07 +08:00
|
|
|
}
|
|
|
|
|
2008-09-12 18:35:35 +08:00
|
|
|
static const gchar *
|
2001-02-14 03:53:07 +08:00
|
|
|
gimp_palette_get_extension (GimpData *data)
|
|
|
|
{
|
|
|
|
return GIMP_PALETTE_FILE_EXTENSION;
|
|
|
|
}
|
|
|
|
|
2017-11-05 09:21:12 +08:00
|
|
|
static void
|
|
|
|
gimp_palette_copy (GimpData *data,
|
|
|
|
GimpData *src_data)
|
2003-03-11 01:35:42 +08:00
|
|
|
{
|
2017-11-05 09:21:12 +08:00
|
|
|
GimpPalette *palette = GIMP_PALETTE (data);
|
|
|
|
GimpPalette *src_palette = GIMP_PALETTE (src_data);
|
2003-03-11 01:35:42 +08:00
|
|
|
GList *list;
|
|
|
|
|
2017-11-05 09:21:12 +08:00
|
|
|
gimp_data_freeze (data);
|
2003-03-11 01:35:42 +08:00
|
|
|
|
2017-11-05 09:21:12 +08:00
|
|
|
if (palette->colors)
|
|
|
|
{
|
|
|
|
g_list_free_full (palette->colors,
|
|
|
|
(GDestroyNotify) gimp_palette_entry_free);
|
|
|
|
palette->colors = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
palette->n_colors = 0;
|
|
|
|
palette->n_columns = src_palette->n_columns;
|
2003-03-11 01:35:42 +08:00
|
|
|
|
2017-11-05 09:21:12 +08:00
|
|
|
for (list = src_palette->colors; list; list = g_list_next (list))
|
2003-03-11 01:35:42 +08:00
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry = list->data;
|
|
|
|
|
2017-11-05 09:21:12 +08:00
|
|
|
gimp_palette_add_entry (palette, -1, entry->name, &entry->color);
|
2003-03-11 01:35:42 +08:00
|
|
|
}
|
|
|
|
|
2017-11-05 09:21:12 +08:00
|
|
|
gimp_data_thaw (data);
|
2003-03-11 01:35:42 +08:00
|
|
|
}
|
|
|
|
|
2008-12-13 19:58:24 +08:00
|
|
|
static gchar *
|
|
|
|
gimp_palette_get_checksum (GimpTagged *tagged)
|
|
|
|
{
|
|
|
|
GimpPalette *palette = GIMP_PALETTE (tagged);
|
|
|
|
gchar *checksum_string = NULL;
|
|
|
|
|
|
|
|
if (palette->n_colors > 0)
|
|
|
|
{
|
|
|
|
GChecksum *checksum = g_checksum_new (G_CHECKSUM_MD5);
|
|
|
|
GList *color_iterator = palette->colors;
|
|
|
|
|
|
|
|
g_checksum_update (checksum, (const guchar *) &palette->n_colors, sizeof (palette->n_colors));
|
|
|
|
g_checksum_update (checksum, (const guchar *) &palette->n_columns, sizeof (palette->n_columns));
|
|
|
|
|
|
|
|
while (color_iterator)
|
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry = (GimpPaletteEntry *) color_iterator->data;
|
|
|
|
|
|
|
|
g_checksum_update (checksum, (const guchar *) &entry->color, sizeof (entry->color));
|
|
|
|
if (entry->name)
|
|
|
|
g_checksum_update (checksum, (const guchar *) entry->name, strlen (entry->name));
|
|
|
|
|
|
|
|
color_iterator = g_list_next (color_iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
checksum_string = g_strdup (g_checksum_get_string (checksum));
|
|
|
|
|
|
|
|
g_checksum_free (checksum);
|
|
|
|
}
|
|
|
|
|
|
|
|
return checksum_string;
|
|
|
|
}
|
|
|
|
|
2010-10-27 20:36:44 +08:00
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
GList *
|
|
|
|
gimp_palette_get_colors (GimpPalette *palette)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), NULL);
|
|
|
|
|
|
|
|
return palette->colors;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
gimp_palette_get_n_colors (GimpPalette *palette)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), 0);
|
|
|
|
|
|
|
|
return palette->n_colors;
|
|
|
|
}
|
|
|
|
|
2015-09-29 19:43:15 +08:00
|
|
|
void
|
|
|
|
gimp_palette_move_entry (GimpPalette *palette,
|
|
|
|
GimpPaletteEntry *entry,
|
|
|
|
gint position)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
gint pos = 0;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_PALETTE (palette));
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
|
|
|
|
if (g_list_find (palette->colors, entry))
|
|
|
|
{
|
|
|
|
pos = entry->position;
|
|
|
|
|
|
|
|
if (entry->position == position)
|
|
|
|
return;
|
|
|
|
|
|
|
|
entry->position = position;
|
|
|
|
palette->colors = g_list_remove (palette->colors,
|
|
|
|
entry);
|
|
|
|
palette->colors = g_list_insert (palette->colors,
|
|
|
|
entry, position);
|
|
|
|
|
|
|
|
if (pos < position)
|
|
|
|
{
|
|
|
|
for (list = g_list_nth (palette->colors, pos);
|
|
|
|
list && pos < position;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
entry = (GimpPaletteEntry *) list->data;
|
|
|
|
|
|
|
|
entry->position = pos++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (list = g_list_nth (palette->colors, position + 1);
|
|
|
|
list && position < pos;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
entry = (GimpPaletteEntry *) list->data;
|
|
|
|
|
|
|
|
entry->position += 1;
|
|
|
|
pos--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-22 03:53:56 +08:00
|
|
|
GimpPaletteEntry *
|
2005-07-14 01:46:12 +08:00
|
|
|
gimp_palette_add_entry (GimpPalette *palette,
|
|
|
|
gint position,
|
|
|
|
const gchar *name,
|
|
|
|
const GimpRGB *color)
|
2001-01-22 03:53:56 +08:00
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), NULL);
|
|
|
|
g_return_val_if_fail (color != NULL, NULL);
|
|
|
|
|
2007-05-23 05:59:19 +08:00
|
|
|
entry = g_slice_new0 (GimpPaletteEntry);
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2005-07-14 01:46:12 +08:00
|
|
|
entry->color = *color;
|
|
|
|
entry->name = g_strdup (name ? name : _("Untitled"));
|
2004-12-31 22:36:30 +08:00
|
|
|
|
|
|
|
if (position < 0 || position >= palette->n_colors)
|
2005-01-01 01:27:57 +08:00
|
|
|
{
|
|
|
|
entry->position = palette->n_colors;
|
|
|
|
palette->colors = g_list_append (palette->colors, entry);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GList *list;
|
2004-12-31 22:36:30 +08:00
|
|
|
|
2005-01-01 01:27:57 +08:00
|
|
|
entry->position = position;
|
|
|
|
palette->colors = g_list_insert (palette->colors, entry, position);
|
2004-12-31 22:36:30 +08:00
|
|
|
|
2005-01-01 01:27:57 +08:00
|
|
|
/* renumber the displaced entries */
|
|
|
|
for (list = g_list_nth (palette->colors, position + 1);
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
2005-07-14 01:46:12 +08:00
|
|
|
GimpPaletteEntry *entry2 = list->data;
|
|
|
|
|
|
|
|
entry2->position += 1;
|
2005-01-01 01:27:57 +08:00
|
|
|
}
|
|
|
|
}
|
2004-12-31 22:36:30 +08:00
|
|
|
|
|
|
|
palette->n_colors += 1;
|
|
|
|
|
2006-05-23 23:39:45 +08:00
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
2004-12-31 22:36:30 +08:00
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
2001-01-22 03:53:56 +08:00
|
|
|
void
|
|
|
|
gimp_palette_delete_entry (GimpPalette *palette,
|
2004-06-30 19:09:44 +08:00
|
|
|
GimpPaletteEntry *entry)
|
2001-01-22 03:53:56 +08:00
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
gint pos = 0;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_PALETTE (palette));
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
|
|
|
|
if (g_list_find (palette->colors, entry))
|
|
|
|
{
|
|
|
|
pos = entry->position;
|
|
|
|
gimp_palette_entry_free (entry);
|
|
|
|
|
|
|
|
palette->colors = g_list_remove (palette->colors, entry);
|
|
|
|
|
|
|
|
palette->n_colors--;
|
|
|
|
|
|
|
|
for (list = g_list_nth (palette->colors, pos);
|
2004-06-30 19:09:44 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
entry = (GimpPaletteEntry *) list->data;
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2004-06-30 19:09:44 +08:00
|
|
|
entry->position = pos++;
|
|
|
|
}
|
2001-01-22 03:53:56 +08:00
|
|
|
|
2006-05-23 23:39:45 +08:00
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-27 20:36:44 +08:00
|
|
|
gboolean
|
|
|
|
gimp_palette_set_entry (GimpPalette *palette,
|
|
|
|
gint position,
|
|
|
|
const gchar *name,
|
|
|
|
const GimpRGB *color)
|
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), FALSE);
|
|
|
|
g_return_val_if_fail (color != NULL, FALSE);
|
|
|
|
|
|
|
|
entry = gimp_palette_get_entry (palette, position);
|
|
|
|
|
|
|
|
if (! entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
entry->color = *color;
|
|
|
|
|
|
|
|
if (entry->name)
|
|
|
|
g_free (entry->name);
|
|
|
|
|
|
|
|
entry->name = g_strdup (name);
|
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_palette_set_entry_color (GimpPalette *palette,
|
|
|
|
gint position,
|
|
|
|
const GimpRGB *color)
|
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), FALSE);
|
|
|
|
g_return_val_if_fail (color != NULL, FALSE);
|
|
|
|
|
|
|
|
entry = gimp_palette_get_entry (palette, position);
|
|
|
|
|
|
|
|
if (! entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
entry->color = *color;
|
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_palette_set_entry_name (GimpPalette *palette,
|
|
|
|
gint position,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), FALSE);
|
|
|
|
|
|
|
|
entry = gimp_palette_get_entry (palette, position);
|
|
|
|
|
|
|
|
if (! entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (entry->name)
|
|
|
|
g_free (entry->name);
|
|
|
|
|
|
|
|
entry->name = g_strdup (name);
|
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GimpPaletteEntry *
|
|
|
|
gimp_palette_get_entry (GimpPalette *palette,
|
|
|
|
gint position)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), NULL);
|
|
|
|
|
|
|
|
return g_list_nth_data (palette->colors, position);
|
|
|
|
}
|
|
|
|
|
2002-03-09 00:34:42 +08:00
|
|
|
void
|
2005-03-09 08:50:09 +08:00
|
|
|
gimp_palette_set_columns (GimpPalette *palette,
|
|
|
|
gint columns)
|
2002-03-09 00:34:42 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_PALETTE (palette));
|
|
|
|
|
2005-03-08 22:44:29 +08:00
|
|
|
columns = CLAMP (columns, 0, 64);
|
2002-03-09 00:34:42 +08:00
|
|
|
|
2005-03-08 22:44:29 +08:00
|
|
|
if (palette->n_columns != columns)
|
2002-03-09 00:34:42 +08:00
|
|
|
{
|
2005-03-08 22:44:29 +08:00
|
|
|
palette->n_columns = columns;
|
2002-03-09 00:34:42 +08:00
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (palette));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2010-10-27 20:36:44 +08:00
|
|
|
gimp_palette_get_columns (GimpPalette *palette)
|
2002-03-09 00:34:42 +08:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), 0);
|
|
|
|
|
|
|
|
return palette->n_columns;
|
|
|
|
}
|
|
|
|
|
2006-12-14 20:02:05 +08:00
|
|
|
GimpPaletteEntry *
|
|
|
|
gimp_palette_find_entry (GimpPalette *palette,
|
|
|
|
const GimpRGB *color,
|
|
|
|
GimpPaletteEntry *start_from)
|
|
|
|
{
|
|
|
|
GimpPaletteEntry *entry;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_PALETTE (palette), NULL);
|
|
|
|
g_return_val_if_fail (color != NULL, NULL);
|
|
|
|
|
|
|
|
if (! start_from)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
/* search from the start */
|
|
|
|
|
|
|
|
for (list = palette->colors; list; list = g_list_next (list))
|
|
|
|
{
|
|
|
|
entry = (GimpPaletteEntry *) list->data;
|
2019-01-02 08:45:41 +08:00
|
|
|
if (gimp_rgb_distance (&entry->color, color) < RGB_EPSILON)
|
2006-12-14 20:02:05 +08:00
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
}
|
2019-01-02 08:45:41 +08:00
|
|
|
else if (gimp_rgb_distance (&start_from->color, color) < RGB_EPSILON)
|
2006-12-14 20:02:05 +08:00
|
|
|
{
|
|
|
|
return start_from;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GList *old = g_list_find (palette->colors, start_from);
|
|
|
|
GList *next;
|
|
|
|
GList *prev;
|
|
|
|
|
|
|
|
g_return_val_if_fail (old != NULL, NULL);
|
|
|
|
|
|
|
|
next = old->next;
|
|
|
|
prev = old->prev;
|
|
|
|
|
|
|
|
/* proximity-based search */
|
|
|
|
|
|
|
|
while (next || prev)
|
|
|
|
{
|
|
|
|
if (next)
|
|
|
|
{
|
|
|
|
entry = (GimpPaletteEntry *) next->data;
|
2019-01-02 08:45:41 +08:00
|
|
|
if (gimp_rgb_distance (&entry->color, color) < RGB_EPSILON)
|
2006-12-14 20:02:05 +08:00
|
|
|
return entry;
|
|
|
|
|
|
|
|
next = next->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prev)
|
|
|
|
{
|
|
|
|
entry = (GimpPaletteEntry *) prev->data;
|
2019-01-02 08:45:41 +08:00
|
|
|
if (gimp_rgb_distance (&entry->color, color) < RGB_EPSILON)
|
2006-12-14 20:02:05 +08:00
|
|
|
return entry;
|
|
|
|
|
|
|
|
prev = prev->prev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-03-09 00:34:42 +08:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
2001-01-22 03:53:56 +08:00
|
|
|
static void
|
|
|
|
gimp_palette_entry_free (GimpPaletteEntry *entry)
|
|
|
|
{
|
|
|
|
g_return_if_fail (entry != NULL);
|
|
|
|
|
|
|
|
g_free (entry->name);
|
2007-05-23 05:59:19 +08:00
|
|
|
|
|
|
|
g_slice_free (GimpPaletteEntry, entry);
|
2001-01-22 03:53:56 +08:00
|
|
|
}
|
2007-03-06 04:09:46 +08:00
|
|
|
|
|
|
|
static gint64
|
|
|
|
gimp_palette_entry_get_memsize (GimpPaletteEntry *entry,
|
|
|
|
gint64 *gui_size)
|
|
|
|
{
|
|
|
|
gint64 memsize = sizeof (GimpPaletteEntry);
|
|
|
|
|
2007-11-17 02:19:30 +08:00
|
|
|
memsize += gimp_string_get_memsize (entry->name);
|
2007-03-06 04:09:46 +08:00
|
|
|
|
|
|
|
return memsize;
|
|
|
|
}
|