1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
25 #include "gthemedicon.h"
33 * @short_description: Icon theming support
35 * @see_also: #GIcon, #GLoadableIcon
37 * #GThemedIcon is an implementation of #GIcon that supports icon themes.
38 * #GThemedIcon contains a list of all of the icons present in an icon
39 * theme, so that icons can be looked up quickly. #GThemedIcon does
40 * not provide actual pixmaps for icons, just the icon names.
41 * Ideally something like gtk_icon_theme_choose_icon() should be used to
42 * resolve the list of names so that fallback icons work nicely with
43 * themes that inherit other themes.
46 static void g_themed_icon_icon_iface_init (GIconIface *iface);
50 GObject parent_instance;
53 gboolean use_default_fallbacks;
56 struct _GThemedIconClass
58 GObjectClass parent_class;
66 PROP_USE_DEFAULT_FALLBACKS
69 G_DEFINE_TYPE_WITH_CODE (GThemedIcon, g_themed_icon, G_TYPE_OBJECT,
70 G_IMPLEMENT_INTERFACE (G_TYPE_ICON,
71 g_themed_icon_icon_iface_init))
74 g_themed_icon_get_property (GObject *object,
79 GThemedIcon *icon = G_THEMED_ICON (object);
84 g_value_set_boxed (value, icon->names);
87 case PROP_USE_DEFAULT_FALLBACKS:
88 g_value_set_boolean (value, icon->use_default_fallbacks);
92 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
97 g_themed_icon_set_property (GObject *object,
102 GThemedIcon *icon = G_THEMED_ICON (object);
109 name = g_value_get_string (value);
115 g_strfreev (icon->names);
117 icon->names = g_new (char *, 2);
118 icon->names[0] = g_strdup (name);
119 icon->names[1] = NULL;
123 names = g_value_dup_boxed (value);
129 g_strfreev (icon->names);
134 case PROP_USE_DEFAULT_FALLBACKS:
135 icon->use_default_fallbacks = g_value_get_boolean (value);
139 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
144 g_themed_icon_constructed (GObject *object)
146 GThemedIcon *themed = G_THEMED_ICON (object);
148 g_return_if_fail (themed->names != NULL && themed->names[0] != NULL);
150 if (themed->use_default_fallbacks)
152 int i = 0, dashes = 0;
156 gboolean is_symbolic;
160 is_symbolic = g_str_has_suffix (themed->names[0], "-symbolic");
162 name = g_strndup (themed->names[0], strlen (themed->names[0]) - 9);
164 name = g_strdup (themed->names[0]);
176 g_strfreev (themed->names);
178 names = g_new (char *, dashes + 1 + 1);
181 while ((dashp = strrchr (last, '-')) != NULL)
182 names[i++] = last = g_strndup (last, dashp - last);
188 themed->names = g_new (char *, 2 * dashes + 3);
189 for (i = 0; names[i] != NULL; i++)
191 themed->names[i] = g_strconcat (names[i], "-symbolic", NULL);
192 themed->names[dashes + 1 + i] = names[i];
195 themed->names[dashes + 1 + i] = NULL;
200 themed->names = names;
206 g_themed_icon_finalize (GObject *object)
210 themed = G_THEMED_ICON (object);
212 g_strfreev (themed->names);
214 G_OBJECT_CLASS (g_themed_icon_parent_class)->finalize (object);
218 g_themed_icon_class_init (GThemedIconClass *klass)
220 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
222 gobject_class->finalize = g_themed_icon_finalize;
223 gobject_class->constructed = g_themed_icon_constructed;
224 gobject_class->set_property = g_themed_icon_set_property;
225 gobject_class->get_property = g_themed_icon_get_property;
232 g_object_class_install_property (gobject_class, PROP_NAME,
233 g_param_spec_string ("name",
235 P_("The name of the icon"),
237 G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
242 * A %NULL-terminated array of icon names.
244 g_object_class_install_property (gobject_class, PROP_NAMES,
245 g_param_spec_boxed ("names",
247 P_("An array containing the icon names"),
249 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
252 * GThemedIcon:use-default-fallbacks:
254 * Whether to use the default fallbacks found by shortening the icon name
255 * at '-' characters. If the "names" array has more than one element,
256 * ignores any past the first.
258 * For example, if the icon name was "gnome-dev-cdrom-audio", the array
260 * |[<!-- language="C" -->
262 * "gnome-dev-cdrom-audio",
270 g_object_class_install_property (gobject_class, PROP_USE_DEFAULT_FALLBACKS,
271 g_param_spec_boolean ("use-default-fallbacks",
272 P_("use default fallbacks"),
273 P_("Whether to use default fallbacks found by shortening the name at '-' characters. Ignores names after the first if multiple names are given."),
275 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
279 g_themed_icon_init (GThemedIcon *themed)
281 themed->names = NULL;
286 * @iconname: a string containing an icon name.
288 * Creates a new themed icon for @iconname.
290 * Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon.
293 g_themed_icon_new (const char *iconname)
295 g_return_val_if_fail (iconname != NULL, NULL);
297 return G_ICON (g_object_new (G_TYPE_THEMED_ICON, "name", iconname, NULL));
301 * g_themed_icon_new_from_names:
302 * @iconnames: (array length=len): an array of strings containing icon names.
303 * @len: the length of the @iconnames array, or -1 if @iconnames is
306 * Creates a new themed icon for @iconnames.
308 * Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon
311 g_themed_icon_new_from_names (char **iconnames,
316 g_return_val_if_fail (iconnames != NULL, NULL);
323 names = g_new (char *, len + 1);
325 for (i = 0; i < len; i++)
326 names[i] = iconnames[i];
330 icon = G_ICON (g_object_new (G_TYPE_THEMED_ICON, "names", names, NULL));
335 icon = G_ICON (g_object_new (G_TYPE_THEMED_ICON, "names", iconnames, NULL));
341 * g_themed_icon_new_with_default_fallbacks:
342 * @iconname: a string containing an icon name
344 * Creates a new themed icon for @iconname, and all the names
345 * that can be created by shortening @iconname at '-' characters.
347 * In the following example, @icon1 and @icon2 are equivalent:
348 * |[<!-- language="C" -->
349 * const char *names[] = {
350 * "gnome-dev-cdrom-audio",
356 * icon1 = g_themed_icon_new_from_names (names, 4);
357 * icon2 = g_themed_icon_new_with_default_fallbacks ("gnome-dev-cdrom-audio");
360 * Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon.
363 g_themed_icon_new_with_default_fallbacks (const char *iconname)
365 g_return_val_if_fail (iconname != NULL, NULL);
367 return G_ICON (g_object_new (G_TYPE_THEMED_ICON, "name", iconname, "use-default-fallbacks", TRUE, NULL));
372 * g_themed_icon_get_names:
373 * @icon: a #GThemedIcon.
375 * Gets the names of icons from within @icon.
377 * Returns: (transfer none): a list of icon names.
380 g_themed_icon_get_names (GThemedIcon *icon)
382 g_return_val_if_fail (G_IS_THEMED_ICON (icon), NULL);
383 return (const char * const *)icon->names;
387 * g_themed_icon_append_name:
388 * @icon: a #GThemedIcon
389 * @iconname: name of icon to append to list of icons from within @icon.
391 * Append a name to the list of icons from within @icon.
393 * Note that doing so invalidates the hash computed by prior calls
397 g_themed_icon_append_name (GThemedIcon *icon,
398 const char *iconname)
402 g_return_if_fail (G_IS_THEMED_ICON (icon));
403 g_return_if_fail (iconname != NULL);
405 num_names = g_strv_length (icon->names);
406 icon->names = g_realloc (icon->names, sizeof (char*) * (num_names + 2));
407 icon->names[num_names] = g_strdup (iconname);
408 icon->names[num_names + 1] = NULL;
410 g_object_notify (G_OBJECT (icon), "names");
414 * g_themed_icon_prepend_name:
415 * @icon: a #GThemedIcon
416 * @iconname: name of icon to prepend to list of icons from within @icon.
418 * Prepend a name to the list of icons from within @icon.
420 * Note that doing so invalidates the hash computed by prior calls
426 g_themed_icon_prepend_name (GThemedIcon *icon,
427 const char *iconname)
433 g_return_if_fail (G_IS_THEMED_ICON (icon));
434 g_return_if_fail (iconname != NULL);
436 num_names = g_strv_length (icon->names);
437 names = g_new (char*, num_names + 2);
438 for (i = 0; icon->names[i]; i++)
439 names[i + 1] = icon->names[i];
440 names[0] = g_strdup (iconname);
441 names[num_names + 1] = NULL;
443 g_free (icon->names);
446 g_object_notify (G_OBJECT (icon), "names");
450 g_themed_icon_hash (GIcon *icon)
452 GThemedIcon *themed = G_THEMED_ICON (icon);
458 for (i = 0; themed->names[i] != NULL; i++)
459 hash ^= g_str_hash (themed->names[i]);
465 g_themed_icon_equal (GIcon *icon1,
468 GThemedIcon *themed1 = G_THEMED_ICON (icon1);
469 GThemedIcon *themed2 = G_THEMED_ICON (icon2);
472 for (i = 0; themed1->names[i] != NULL && themed2->names[i] != NULL; i++)
474 if (!g_str_equal (themed1->names[i], themed2->names[i]))
478 return themed1->names[i] == NULL && themed2->names[i] == NULL;
483 g_themed_icon_to_tokens (GIcon *icon,
487 GThemedIcon *themed_icon = G_THEMED_ICON (icon);
490 g_return_val_if_fail (out_version != NULL, FALSE);
494 for (n = 0; themed_icon->names[n] != NULL; n++)
495 g_ptr_array_add (tokens,
496 g_strdup (themed_icon->names[n]));
502 g_themed_icon_from_tokens (gchar **tokens,
517 G_IO_ERROR_INVALID_ARGUMENT,
518 _("Can't handle version %d of GThemedIcon encoding"),
523 names = g_new0 (gchar *, num_tokens + 1);
524 for (n = 0; n < num_tokens; n++)
525 names[n] = tokens[n];
528 icon = g_themed_icon_new_from_names (names, num_tokens);
536 g_themed_icon_serialize (GIcon *icon)
538 GThemedIcon *themed_icon = G_THEMED_ICON (icon);
540 return g_variant_new ("(sv)", "themed", g_variant_new ("^as", themed_icon->names));
544 g_themed_icon_icon_iface_init (GIconIface *iface)
546 iface->hash = g_themed_icon_hash;
547 iface->equal = g_themed_icon_equal;
548 iface->to_tokens = g_themed_icon_to_tokens;
549 iface->from_tokens = g_themed_icon_from_tokens;
550 iface->serialize = g_themed_icon_serialize;