1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* gtkhtml-color-palette.c
*
* Copyright (C) 2008 Novell, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* 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 Lesser 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.
*/
#include "gtkhtml-color-palette.h"
/* XXX GtkhtmlColorPalette has a minimal API specifically designed for
* use with GtkhtmlColorCombo, but there's plenty of room to grow if
* this proves useful elsewhere. */
#include <string.h>
#include <glib/gi18n-lib.h>
enum {
CHANGED,
LAST_SIGNAL
};
struct _GtkhtmlColorPalettePrivate {
GHashTable *index;
GSList *list;
};
static gpointer parent_class;
static guint signals[LAST_SIGNAL];
static void
color_palette_finalize (GObject *object)
{
GtkhtmlColorPalettePrivate *priv;
priv = GTKHTML_COLOR_PALETTE (object)->priv;
g_hash_table_destroy (priv->index);
g_slist_free (priv->list);
/* Chain up to parent's finalize() method. */
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static void
color_palette_class_init (GtkhtmlColorPaletteClass *class)
{
GObjectClass *object_class;
parent_class = g_type_class_peek_parent (class);
g_type_class_add_private (class, sizeof (GtkhtmlColorPalettePrivate));
object_class = G_OBJECT_CLASS (class);
object_class->finalize = color_palette_finalize;
signals[CHANGED] = g_signal_new (
"changed",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
0, NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
}
static void
color_palette_init (GtkhtmlColorPalette *palette)
{
GHashTable *index;
index = g_hash_table_new_full (
(GHashFunc) gdk_color_hash,
(GEqualFunc) gdk_color_equal,
(GDestroyNotify) gdk_color_free,
(GDestroyNotify) NULL);
palette->priv = G_TYPE_INSTANCE_GET_PRIVATE (
palette, GTKHTML_TYPE_COLOR_PALETTE,
GtkhtmlColorPalettePrivate);
palette->priv->index = index;
}
GType
gtkhtml_color_palette_get_type (void)
{
static GType type = 0;
if (G_UNLIKELY (type == 0)) {
static const GTypeInfo type_info = {
sizeof (GtkhtmlColorPaletteClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) color_palette_class_init,
(GClassFinalizeFunc) NULL,
NULL, /* class_data */
sizeof (GtkhtmlColorPalette),
0, /* n_preallocs */
(GInstanceInitFunc) color_palette_init,
NULL /* value_table */
};
type = g_type_register_static (
G_TYPE_OBJECT, "GtkhtmlColorPalette", &type_info, 0);
}
return type;
}
GtkhtmlColorPalette *
gtkhtml_color_palette_new (void)
{
return g_object_new (GTKHTML_TYPE_COLOR_PALETTE, NULL);
}
void
gtkhtml_color_palette_add_color (GtkhtmlColorPalette *palette,
const GdkColor *color)
{
GSList *list, *link;
g_return_if_fail (GTKHTML_IS_COLOR_PALETTE (palette));
g_return_if_fail (color != NULL);
list = palette->priv->list;
link = g_hash_table_lookup (palette->priv->index, color);
if (link == NULL) {
list = g_slist_prepend (list, gdk_color_copy (color));
g_hash_table_insert (palette->priv->index, list->data, list);
} else {
list = g_slist_remove_link (list, link);
list = g_slist_concat (link, list);
}
palette->priv->list = list;
g_signal_emit (G_OBJECT (palette), signals[CHANGED], 0);
}
GSList *
gtkhtml_color_palette_list_colors (GtkhtmlColorPalette *palette)
{
GSList *list, *iter;
g_return_val_if_fail (GTKHTML_IS_COLOR_PALETTE (palette), NULL);
list = g_slist_copy (palette->priv->list);
for (iter = list; iter != NULL; iter = iter->next)
iter->data = gdk_color_copy (iter->data);
return list;
}
|