configure.ac: Remove --disable-znodelete options
[glib.git] / gio / gthemedicon.c
blob3ada77b6c3019d51a55e13c369888d21e11a5e3a
1 /* GIO - GLib Input, Output and Streaming Library
2 *
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.1 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>
21 #include "config.h"
23 #include <string.h>
25 #include "gthemedicon.h"
26 #include "gicon.h"
27 #include "gioerror.h"
28 #include "glibintl.h"
31 /**
32 * SECTION:gthemedicon
33 * @short_description: Icon theming support
34 * @include: gio/gio.h
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.
44 **/
46 static void g_themed_icon_icon_iface_init (GIconIface *iface);
48 struct _GThemedIcon
50 GObject parent_instance;
52 char **names;
53 gboolean use_default_fallbacks;
56 struct _GThemedIconClass
58 GObjectClass parent_class;
61 enum
63 PROP_0,
64 PROP_NAME,
65 PROP_NAMES,
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))
73 static void
74 g_themed_icon_get_property (GObject *object,
75 guint prop_id,
76 GValue *value,
77 GParamSpec *pspec)
79 GThemedIcon *icon = G_THEMED_ICON (object);
81 switch (prop_id)
83 case PROP_NAMES:
84 g_value_set_boxed (value, icon->names);
85 break;
87 case PROP_USE_DEFAULT_FALLBACKS:
88 g_value_set_boolean (value, icon->use_default_fallbacks);
89 break;
91 default:
92 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
96 static void
97 g_themed_icon_set_property (GObject *object,
98 guint prop_id,
99 const GValue *value,
100 GParamSpec *pspec)
102 GThemedIcon *icon = G_THEMED_ICON (object);
103 gchar **names;
104 const gchar *name;
106 switch (prop_id)
108 case PROP_NAME:
109 name = g_value_get_string (value);
111 if (!name)
112 break;
114 if (icon->names)
115 g_strfreev (icon->names);
117 icon->names = g_new (char *, 2);
118 icon->names[0] = g_strdup (name);
119 icon->names[1] = NULL;
120 break;
122 case PROP_NAMES:
123 names = g_value_dup_boxed (value);
125 if (!names)
126 break;
128 if (icon->names)
129 g_strfreev (icon->names);
131 icon->names = names;
132 break;
134 case PROP_USE_DEFAULT_FALLBACKS:
135 icon->use_default_fallbacks = g_value_get_boolean (value);
136 break;
138 default:
139 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
143 static void
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;
153 const char *p;
154 char *dashp;
155 char *last;
156 gboolean is_symbolic;
157 char *name;
158 char **names;
160 is_symbolic = g_str_has_suffix (themed->names[0], "-symbolic");
161 if (is_symbolic)
162 name = g_strndup (themed->names[0], strlen (themed->names[0]) - 9);
163 else
164 name = g_strdup (themed->names[0]);
166 p = name;
167 while (*p)
169 if (*p == '-')
170 dashes++;
171 p++;
174 last = name;
176 g_strfreev (themed->names);
178 names = g_new (char *, dashes + 1 + 1);
179 names[i++] = last;
181 while ((dashp = strrchr (last, '-')) != NULL)
182 names[i++] = last = g_strndup (last, dashp - last);
184 names[i++] = NULL;
186 if (is_symbolic)
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;
196 g_free (names);
198 else
200 themed->names = names;
205 static void
206 g_themed_icon_finalize (GObject *object)
208 GThemedIcon *themed;
210 themed = G_THEMED_ICON (object);
212 g_strfreev (themed->names);
214 G_OBJECT_CLASS (g_themed_icon_parent_class)->finalize (object);
217 static void
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;
228 * GThemedIcon:name:
230 * The icon name.
232 g_object_class_install_property (gobject_class, PROP_NAME,
233 g_param_spec_string ("name",
234 P_("name"),
235 P_("The name of the icon"),
236 NULL,
237 G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
240 * GThemedIcon:names:
242 * A %NULL-terminated array of icon names.
244 g_object_class_install_property (gobject_class, PROP_NAMES,
245 g_param_spec_boxed ("names",
246 P_("names"),
247 P_("An array containing the icon names"),
248 G_TYPE_STRV,
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
259 * would become
260 * |[<!-- language="C" -->
262 * "gnome-dev-cdrom-audio",
263 * "gnome-dev-cdrom",
264 * "gnome-dev",
265 * "gnome",
266 * NULL
267 * };
268 * ]|
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."),
274 FALSE,
275 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
278 static void
279 g_themed_icon_init (GThemedIcon *themed)
281 themed->names = NULL;
285 * g_themed_icon_new:
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.
292 GIcon *
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
304 * %NULL-terminated
306 * Creates a new themed icon for @iconnames.
308 * Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon
310 GIcon *
311 g_themed_icon_new_from_names (char **iconnames,
312 int len)
314 GIcon *icon;
316 g_return_val_if_fail (iconnames != NULL, NULL);
318 if (len >= 0)
320 char **names;
321 int i;
323 names = g_new (char *, len + 1);
325 for (i = 0; i < len; i++)
326 names[i] = iconnames[i];
328 names[i] = NULL;
330 icon = G_ICON (g_object_new (G_TYPE_THEMED_ICON, "names", names, NULL));
332 g_free (names);
334 else
335 icon = G_ICON (g_object_new (G_TYPE_THEMED_ICON, "names", iconnames, NULL));
337 return icon;
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",
351 * "gnome-dev-cdrom",
352 * "gnome-dev",
353 * "gnome"
354 * };
356 * icon1 = g_themed_icon_new_from_names (names, 4);
357 * icon2 = g_themed_icon_new_with_default_fallbacks ("gnome-dev-cdrom-audio");
358 * ]|
360 * Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon.
362 GIcon *
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.
379 const char * const *
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
394 * to g_icon_hash().
396 void
397 g_themed_icon_append_name (GThemedIcon *icon,
398 const char *iconname)
400 guint num_names;
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
421 * to g_icon_hash().
423 * Since: 2.18
425 void
426 g_themed_icon_prepend_name (GThemedIcon *icon,
427 const char *iconname)
429 guint num_names;
430 gchar **names;
431 gint i;
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);
444 icon->names = names;
446 g_object_notify (G_OBJECT (icon), "names");
449 static guint
450 g_themed_icon_hash (GIcon *icon)
452 GThemedIcon *themed = G_THEMED_ICON (icon);
453 guint hash;
454 int i;
456 hash = 0;
458 for (i = 0; themed->names[i] != NULL; i++)
459 hash ^= g_str_hash (themed->names[i]);
461 return hash;
464 static gboolean
465 g_themed_icon_equal (GIcon *icon1,
466 GIcon *icon2)
468 GThemedIcon *themed1 = G_THEMED_ICON (icon1);
469 GThemedIcon *themed2 = G_THEMED_ICON (icon2);
470 int i;
472 for (i = 0; themed1->names[i] != NULL && themed2->names[i] != NULL; i++)
474 if (!g_str_equal (themed1->names[i], themed2->names[i]))
475 return FALSE;
478 return themed1->names[i] == NULL && themed2->names[i] == NULL;
482 static gboolean
483 g_themed_icon_to_tokens (GIcon *icon,
484 GPtrArray *tokens,
485 gint *out_version)
487 GThemedIcon *themed_icon = G_THEMED_ICON (icon);
488 int n;
490 g_return_val_if_fail (out_version != NULL, FALSE);
492 *out_version = 0;
494 for (n = 0; themed_icon->names[n] != NULL; n++)
495 g_ptr_array_add (tokens,
496 g_strdup (themed_icon->names[n]));
498 return TRUE;
501 static GIcon *
502 g_themed_icon_from_tokens (gchar **tokens,
503 gint num_tokens,
504 gint version,
505 GError **error)
507 GIcon *icon;
508 gchar **names;
509 int n;
511 icon = NULL;
513 if (version != 0)
515 g_set_error (error,
516 G_IO_ERROR,
517 G_IO_ERROR_INVALID_ARGUMENT,
518 _("Can’t handle version %d of GThemedIcon encoding"),
519 version);
520 goto out;
523 names = g_new0 (gchar *, num_tokens + 1);
524 for (n = 0; n < num_tokens; n++)
525 names[n] = tokens[n];
526 names[n] = NULL;
528 icon = g_themed_icon_new_from_names (names, num_tokens);
529 g_free (names);
531 out:
532 return icon;
535 static GVariant *
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));
543 static void
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;