2007-11-26 17:13:05 +01:00
|
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006-2007 Red Hat, Inc.
|
|
|
|
|
*
|
2022-05-18 10:12:45 +02:00
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
2017-05-27 18:21:30 +02:00
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
*
|
|
|
|
|
* This library 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
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
2014-01-23 12:58:29 +01:00
|
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
*
|
|
|
|
|
* Author: Alexander Larsson <alexl@redhat.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 17:10:51 +02:00
|
|
|
|
#include "config.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
2008-01-09 16:20:49 +01:00
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
#include "gthemedicon.h"
|
2008-07-01 08:32:35 +02:00
|
|
|
|
#include "gicon.h"
|
2008-10-21 13:51:48 +02:00
|
|
|
|
#include "gioerror.h"
|
2008-03-10 17:08:41 +01:00
|
|
|
|
#include "glibintl.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
2007-11-28 13:39:07 +01:00
|
|
|
|
|
2007-11-27 15:00:13 +01:00
|
|
|
|
/**
|
2023-10-25 16:08:21 +02:00
|
|
|
|
* GThemedIcon:
|
2007-11-27 15:00:13 +01:00
|
|
|
|
*
|
2023-10-25 16:08:21 +02:00
|
|
|
|
* `GThemedIcon` is an implementation of [iface@Gio.Icon] that supports icon
|
|
|
|
|
* themes.
|
|
|
|
|
*
|
|
|
|
|
* `GThemedIcon` contains a list of all of the icons present in an icon
|
|
|
|
|
* theme, so that icons can be looked up quickly. `GThemedIcon` does
|
2007-11-29 11:18:55 +01:00
|
|
|
|
* not provide actual pixmaps for icons, just the icon names.
|
2023-10-25 16:08:21 +02:00
|
|
|
|
* Ideally something like [method@Gtk.IconTheme.choose_icon] should be used to
|
2007-12-12 13:19:02 +01:00
|
|
|
|
* resolve the list of names so that fallback icons work nicely with
|
|
|
|
|
* themes that inherit other themes.
|
2007-11-27 15:00:13 +01:00
|
|
|
|
**/
|
|
|
|
|
|
2007-11-30 06:11:25 +01:00
|
|
|
|
static void g_themed_icon_icon_iface_init (GIconIface *iface);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
|
|
struct _GThemedIcon
|
|
|
|
|
{
|
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
char **init_names;
|
2008-03-10 17:08:41 +01:00
|
|
|
|
char **names;
|
|
|
|
|
gboolean use_default_fallbacks;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct _GThemedIconClass
|
|
|
|
|
{
|
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
};
|
|
|
|
|
|
2008-03-10 17:08:41 +01:00
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_NAME,
|
|
|
|
|
PROP_NAMES,
|
|
|
|
|
PROP_USE_DEFAULT_FALLBACKS
|
|
|
|
|
};
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
static void g_themed_icon_update_names (GThemedIcon *themed);
|
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GThemedIcon, g_themed_icon, G_TYPE_OBJECT,
|
|
|
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_ICON,
|
|
|
|
|
g_themed_icon_icon_iface_init))
|
2008-03-10 17:08:41 +01:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
GThemedIcon *icon = G_THEMED_ICON (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_NAMES:
|
2018-06-08 00:40:24 +02:00
|
|
|
|
g_value_set_boxed (value, icon->init_names);
|
2008-03-10 17:08:41 +01:00
|
|
|
|
break;
|
|
|
|
|
|
2008-08-06 21:43:31 +02:00
|
|
|
|
case PROP_USE_DEFAULT_FALLBACKS:
|
|
|
|
|
g_value_set_boolean (value, icon->use_default_fallbacks);
|
|
|
|
|
break;
|
|
|
|
|
|
2008-03-10 17:08:41 +01:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
GThemedIcon *icon = G_THEMED_ICON (object);
|
2008-03-11 01:14:11 +01:00
|
|
|
|
gchar **names;
|
|
|
|
|
const gchar *name;
|
2008-03-10 17:08:41 +01:00
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_NAME:
|
2008-03-11 01:14:11 +01:00
|
|
|
|
name = g_value_get_string (value);
|
|
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
|
break;
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
if (icon->init_names)
|
|
|
|
|
g_strfreev (icon->init_names);
|
2008-03-11 01:14:11 +01:00
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
icon->init_names = g_new (char *, 2);
|
|
|
|
|
icon->init_names[0] = g_strdup (name);
|
|
|
|
|
icon->init_names[1] = NULL;
|
2008-03-10 17:08:41 +01:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_NAMES:
|
2008-03-11 01:14:11 +01:00
|
|
|
|
names = g_value_dup_boxed (value);
|
|
|
|
|
|
|
|
|
|
if (!names)
|
|
|
|
|
break;
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
if (icon->init_names)
|
|
|
|
|
g_strfreev (icon->init_names);
|
2008-03-11 01:14:11 +01:00
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
icon->init_names = names;
|
2008-03-10 17:08:41 +01:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_USE_DEFAULT_FALLBACKS:
|
|
|
|
|
icon->use_default_fallbacks = g_value_get_boolean (value);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_constructed (GObject *object)
|
|
|
|
|
{
|
2018-06-08 00:40:24 +02:00
|
|
|
|
g_themed_icon_update_names (G_THEMED_ICON (object));
|
2008-03-10 17:08:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_finalize (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
GThemedIcon *themed;
|
|
|
|
|
|
|
|
|
|
themed = G_THEMED_ICON (object);
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
g_strfreev (themed->init_names);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
g_strfreev (themed->names);
|
2008-06-16 11:54:04 +02:00
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_themed_icon_parent_class)->finalize (object);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_class_init (GThemedIconClass *klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
|
|
gobject_class->finalize = g_themed_icon_finalize;
|
2008-03-10 17:08:41 +01:00
|
|
|
|
gobject_class->constructed = g_themed_icon_constructed;
|
|
|
|
|
gobject_class->set_property = g_themed_icon_set_property;
|
|
|
|
|
gobject_class->get_property = g_themed_icon_get_property;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GThemedIcon:name:
|
|
|
|
|
*
|
|
|
|
|
* The icon name.
|
|
|
|
|
*/
|
2008-03-11 01:14:11 +01:00
|
|
|
|
g_object_class_install_property (gobject_class, PROP_NAME,
|
2023-04-28 01:59:26 +02:00
|
|
|
|
g_param_spec_string ("name", NULL, NULL,
|
2008-03-10 17:08:41 +01:00
|
|
|
|
NULL,
|
|
|
|
|
G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GThemedIcon:names:
|
|
|
|
|
*
|
|
|
|
|
* A %NULL-terminated array of icon names.
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_NAMES,
|
2023-04-28 01:59:26 +02:00
|
|
|
|
g_param_spec_boxed ("names", NULL, NULL,
|
2008-03-10 17:08:41 +01:00
|
|
|
|
G_TYPE_STRV,
|
|
|
|
|
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GThemedIcon:use-default-fallbacks:
|
|
|
|
|
*
|
|
|
|
|
* Whether to use the default fallbacks found by shortening the icon name
|
|
|
|
|
* at '-' characters. If the "names" array has more than one element,
|
|
|
|
|
* ignores any past the first.
|
|
|
|
|
*
|
|
|
|
|
* For example, if the icon name was "gnome-dev-cdrom-audio", the array
|
|
|
|
|
* would become
|
2014-02-01 21:11:49 +01:00
|
|
|
|
* |[<!-- language="C" -->
|
2008-03-10 17:08:41 +01:00
|
|
|
|
* {
|
|
|
|
|
* "gnome-dev-cdrom-audio",
|
|
|
|
|
* "gnome-dev-cdrom",
|
|
|
|
|
* "gnome-dev",
|
|
|
|
|
* "gnome",
|
|
|
|
|
* NULL
|
|
|
|
|
* };
|
|
|
|
|
* ]|
|
|
|
|
|
*/
|
|
|
|
|
g_object_class_install_property (gobject_class, PROP_USE_DEFAULT_FALLBACKS,
|
2023-04-28 01:59:26 +02:00
|
|
|
|
g_param_spec_boolean ("use-default-fallbacks", NULL, NULL,
|
2008-03-10 17:08:41 +01:00
|
|
|
|
FALSE,
|
2008-08-06 21:43:31 +02:00
|
|
|
|
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK));
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_init (GThemedIcon *themed)
|
|
|
|
|
{
|
2018-06-08 00:40:24 +02:00
|
|
|
|
themed->init_names = NULL;
|
|
|
|
|
themed->names = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-14 00:35:08 +02:00
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_update_names:
|
|
|
|
|
* @themed: a #GThemedIcon.
|
|
|
|
|
*
|
|
|
|
|
* Update the actual icon name list, based on the requested names (from
|
|
|
|
|
* construction, or later added with g_themed_icon_prepend_name() and
|
|
|
|
|
* g_themed_icon_append_name()).
|
|
|
|
|
* The order of the list matters, indicating priority:
|
|
|
|
|
* - The first requested icon is first in priority.
|
|
|
|
|
* - If "use-default-fallbacks" is #TRUE, then it is followed by all its
|
|
|
|
|
* fallbacks (starting from top to lower context levels).
|
|
|
|
|
* - Then next requested icons, and optionally their fallbacks, follow.
|
|
|
|
|
* - Finally all the style variants (symbolic or regular, opposite to whatever
|
|
|
|
|
* is the requested style) follow in the same order.
|
|
|
|
|
*
|
|
|
|
|
* An icon is not added twice in the list if it was previously added.
|
|
|
|
|
*
|
|
|
|
|
* For instance, if requested names are:
|
|
|
|
|
* [ "some-icon-symbolic", "some-other-icon" ]
|
|
|
|
|
* and use-default-fallbacks is TRUE, the final name list shall be:
|
|
|
|
|
* [ "some-icon-symbolic", "some-symbolic", "some-other-icon",
|
|
|
|
|
* "some-other", "some", "some-icon", "some-other-icon-symbolic",
|
|
|
|
|
* "some-other-symbolic" ]
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon
|
|
|
|
|
**/
|
2018-06-08 00:40:24 +02:00
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_update_names (GThemedIcon *themed)
|
|
|
|
|
{
|
|
|
|
|
GList *names = NULL;
|
|
|
|
|
GList *variants = NULL;
|
|
|
|
|
GList *iter;
|
2018-06-14 00:35:08 +02:00
|
|
|
|
guint i;
|
2018-06-08 00:40:24 +02:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (themed->init_names != NULL && themed->init_names[0] != NULL);
|
|
|
|
|
|
|
|
|
|
for (i = 0; themed->init_names[i]; i++)
|
|
|
|
|
{
|
|
|
|
|
gchar *name;
|
|
|
|
|
gboolean is_symbolic;
|
|
|
|
|
|
|
|
|
|
is_symbolic = g_str_has_suffix (themed->init_names[i], "-symbolic");
|
|
|
|
|
if (is_symbolic)
|
2018-06-14 00:35:08 +02:00
|
|
|
|
name = g_strndup (themed->init_names[i], strlen (themed->init_names[i]) - 9);
|
2018-06-08 00:40:24 +02:00
|
|
|
|
else
|
2018-06-14 00:35:08 +02:00
|
|
|
|
name = g_strdup (themed->init_names[i]);
|
|
|
|
|
|
|
|
|
|
if (g_list_find_custom (names, name, (GCompareFunc) g_strcmp0))
|
2018-06-08 00:40:24 +02:00
|
|
|
|
{
|
2018-06-14 00:35:08 +02:00
|
|
|
|
g_free (name);
|
|
|
|
|
continue;
|
2018-06-08 00:40:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-14 00:35:08 +02:00
|
|
|
|
if (is_symbolic)
|
|
|
|
|
names = g_list_prepend (names, g_strdup (themed->init_names[i]));
|
|
|
|
|
else
|
|
|
|
|
names = g_list_prepend (names, name);
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
if (themed->use_default_fallbacks)
|
|
|
|
|
{
|
|
|
|
|
char *dashp;
|
|
|
|
|
char *last;
|
|
|
|
|
|
|
|
|
|
last = name;
|
|
|
|
|
|
|
|
|
|
while ((dashp = strrchr (last, '-')) != NULL)
|
|
|
|
|
{
|
2018-06-14 00:35:08 +02:00
|
|
|
|
gchar *tmp = last;
|
|
|
|
|
gchar *fallback;
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
last = g_strndup (last, dashp - last);
|
|
|
|
|
if (is_symbolic)
|
|
|
|
|
{
|
2018-06-14 00:35:08 +02:00
|
|
|
|
g_free (tmp);
|
|
|
|
|
fallback = g_strdup_printf ("%s-symbolic", last);
|
2018-06-08 00:40:24 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2018-06-14 00:35:08 +02:00
|
|
|
|
fallback = last;
|
|
|
|
|
if (g_list_find_custom (names, fallback, (GCompareFunc) g_strcmp0))
|
2018-06-08 00:40:24 +02:00
|
|
|
|
{
|
2018-06-14 00:35:08 +02:00
|
|
|
|
g_free (fallback);
|
|
|
|
|
break;
|
2018-06-08 00:40:24 +02:00
|
|
|
|
}
|
2018-06-14 00:35:08 +02:00
|
|
|
|
names = g_list_prepend (names, fallback);
|
2018-06-08 00:40:24 +02:00
|
|
|
|
}
|
2018-06-14 00:35:08 +02:00
|
|
|
|
if (is_symbolic)
|
|
|
|
|
g_free (last);
|
2018-06-08 00:40:24 +02:00
|
|
|
|
}
|
2018-06-14 00:35:08 +02:00
|
|
|
|
else if (is_symbolic)
|
|
|
|
|
g_free (name);
|
|
|
|
|
}
|
|
|
|
|
for (iter = names; iter; iter = iter->next)
|
|
|
|
|
{
|
|
|
|
|
gchar *name = (gchar *) iter->data;
|
|
|
|
|
gchar *variant;
|
|
|
|
|
gboolean is_symbolic;
|
|
|
|
|
|
|
|
|
|
is_symbolic = g_str_has_suffix (name, "-symbolic");
|
|
|
|
|
if (is_symbolic)
|
|
|
|
|
variant = g_strndup (name, strlen (name) - 9);
|
|
|
|
|
else
|
|
|
|
|
variant = g_strdup_printf ("%s-symbolic", name);
|
|
|
|
|
if (g_list_find_custom (names, variant, (GCompareFunc) g_strcmp0) ||
|
|
|
|
|
g_list_find_custom (variants, variant, (GCompareFunc) g_strcmp0))
|
|
|
|
|
{
|
|
|
|
|
g_free (variant);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variants = g_list_prepend (variants, variant);
|
2018-06-08 00:40:24 +02:00
|
|
|
|
}
|
|
|
|
|
names = g_list_reverse (names);
|
|
|
|
|
|
|
|
|
|
g_strfreev (themed->names);
|
|
|
|
|
themed->names = g_new (char *, g_list_length (names) + g_list_length (variants) + 1);
|
|
|
|
|
|
|
|
|
|
for (iter = names, i = 0; iter; iter = iter->next, i++)
|
|
|
|
|
themed->names[i] = iter->data;
|
|
|
|
|
for (iter = variants; iter; iter = iter->next, i++)
|
|
|
|
|
themed->names[i] = iter->data;
|
|
|
|
|
themed->names[i] = NULL;
|
|
|
|
|
|
|
|
|
|
g_list_free (names);
|
|
|
|
|
g_list_free (variants);
|
|
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (themed), "names");
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_new:
|
2007-11-27 15:00:13 +01:00
|
|
|
|
* @iconname: a string containing an icon name.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
|
* Creates a new themed icon for @iconname.
|
|
|
|
|
*
|
2012-01-07 18:54:53 +01:00
|
|
|
|
* Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
**/
|
|
|
|
|
GIcon *
|
|
|
|
|
g_themed_icon_new (const char *iconname)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (iconname != NULL, NULL);
|
|
|
|
|
|
2008-03-10 17:08:41 +01:00
|
|
|
|
return G_ICON (g_object_new (G_TYPE_THEMED_ICON, "name", iconname, NULL));
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_new_from_names:
|
2010-12-27 16:08:46 +01:00
|
|
|
|
* @iconnames: (array length=len): an array of strings containing icon names.
|
2008-03-10 17:08:41 +01:00
|
|
|
|
* @len: the length of the @iconnames array, or -1 if @iconnames is
|
|
|
|
|
* %NULL-terminated
|
2007-11-27 15:00:13 +01:00
|
|
|
|
*
|
|
|
|
|
* Creates a new themed icon for @iconnames.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
*
|
2012-01-07 18:54:53 +01:00
|
|
|
|
* Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon
|
2007-11-26 17:13:05 +01:00
|
|
|
|
**/
|
|
|
|
|
GIcon *
|
2008-03-10 17:08:41 +01:00
|
|
|
|
g_themed_icon_new_from_names (char **iconnames,
|
2007-11-30 06:11:25 +01:00
|
|
|
|
int len)
|
2007-11-26 17:13:05 +01:00
|
|
|
|
{
|
2009-09-07 09:14:15 +02:00
|
|
|
|
GIcon *icon;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (iconnames != NULL, NULL);
|
2008-03-10 17:08:41 +01:00
|
|
|
|
|
|
|
|
|
if (len >= 0)
|
2007-11-26 17:13:05 +01:00
|
|
|
|
{
|
2008-03-10 17:08:41 +01:00
|
|
|
|
char **names;
|
|
|
|
|
int i;
|
|
|
|
|
|
2008-03-11 01:14:11 +01:00
|
|
|
|
names = g_new (char *, len + 1);
|
2008-03-10 17:08:41 +01:00
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
for (i = 0; i < len; i++)
|
2008-03-10 17:08:41 +01:00
|
|
|
|
names[i] = iconnames[i];
|
|
|
|
|
|
|
|
|
|
names[i] = NULL;
|
|
|
|
|
|
|
|
|
|
icon = G_ICON (g_object_new (G_TYPE_THEMED_ICON, "names", names, NULL));
|
|
|
|
|
|
|
|
|
|
g_free (names);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|
2008-03-10 17:08:41 +01:00
|
|
|
|
else
|
|
|
|
|
icon = G_ICON (g_object_new (G_TYPE_THEMED_ICON, "names", iconnames, NULL));
|
|
|
|
|
|
|
|
|
|
return icon;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-01-21 04:49:20 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_new_with_default_fallbacks:
|
|
|
|
|
* @iconname: a string containing an icon name
|
|
|
|
|
*
|
|
|
|
|
* Creates a new themed icon for @iconname, and all the names
|
|
|
|
|
* that can be created by shortening @iconname at '-' characters.
|
|
|
|
|
*
|
|
|
|
|
* In the following example, @icon1 and @icon2 are equivalent:
|
2014-02-01 21:11:49 +01:00
|
|
|
|
* |[<!-- language="C" -->
|
2008-01-21 04:49:20 +01:00
|
|
|
|
* const char *names[] = {
|
|
|
|
|
* "gnome-dev-cdrom-audio",
|
|
|
|
|
* "gnome-dev-cdrom",
|
|
|
|
|
* "gnome-dev",
|
|
|
|
|
* "gnome"
|
|
|
|
|
* };
|
|
|
|
|
*
|
|
|
|
|
* icon1 = g_themed_icon_new_from_names (names, 4);
|
|
|
|
|
* icon2 = g_themed_icon_new_with_default_fallbacks ("gnome-dev-cdrom-audio");
|
|
|
|
|
* ]|
|
|
|
|
|
*
|
2012-01-07 18:54:53 +01:00
|
|
|
|
* Returns: (transfer full) (type GThemedIcon): a new #GThemedIcon.
|
2008-01-21 04:49:20 +01:00
|
|
|
|
*/
|
2008-01-09 16:20:49 +01:00
|
|
|
|
GIcon *
|
|
|
|
|
g_themed_icon_new_with_default_fallbacks (const char *iconname)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (iconname != NULL, NULL);
|
|
|
|
|
|
2008-03-10 17:08:41 +01:00
|
|
|
|
return G_ICON (g_object_new (G_TYPE_THEMED_ICON, "name", iconname, "use-default-fallbacks", TRUE, NULL));
|
2008-01-09 16:20:49 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_get_names:
|
2007-11-27 15:00:13 +01:00
|
|
|
|
* @icon: a #GThemedIcon.
|
2009-05-18 13:02:11 +02:00
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
|
* Gets the names of icons from within @icon.
|
2009-05-18 13:02:11 +02:00
|
|
|
|
*
|
2010-10-12 18:54:36 +02:00
|
|
|
|
* Returns: (transfer none): a list of icon names.
|
2009-05-18 13:02:11 +02:00
|
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
|
const char * const *
|
|
|
|
|
g_themed_icon_get_names (GThemedIcon *icon)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (G_IS_THEMED_ICON (icon), NULL);
|
|
|
|
|
return (const char * const *)icon->names;
|
|
|
|
|
}
|
|
|
|
|
|
Implement this function by moving bits from glocalfileinfo.c
2008-02-21 David Zeuthen <davidz@redhat.com>
* glocalfileinfo.c: (_g_local_file_info_get):
* gcontenttype.c:
(g_content_type_get_icon): Implement this function by
moving bits from glocalfileinfo.c
(g_content_type_get_description): Unalias before getting
description (#517687)
* gfile.c: (g_file_class_init),
(g_file_query_filesystem_info_async),
(g_file_query_filesystem_info_finish),
(query_filesystem_info_data_free),
(query_filesystem_info_async_thread),
(g_file_real_query_filesystem_info_async),
(g_file_real_query_filesystem_info_finish):
* gfile.h: Implement async version of
g_file_query_filesystem_info()
* gfileinfo.h: Add new attributes for filesystem::use-preview
* gio.symbols: Update
* gthemedicon.c: (g_themed_icon_append_name):
* gthemedicon.h: Add new new convenience function.
* gunionvolumemonitor.c: (g_union_volume_monitor_dispose),
(get_mounts), (get_volumes), (get_connected_drives),
(get_volume_for_uuid), (get_mount_for_uuid),
(g_union_volume_monitor_init), (populate_union_monitor),
(g_volume_monitor_get), (_g_mount_get_for_mount_path),
(g_volume_monitor_adopt_orphan_mount):
* gvolumemonitor.c:
* gvolumemonitor.h: Use recursive locks so it's safe for volume
monitor implementations to call into the main volume monitor. Also
separate object initialization and volume monitor initialization
such that non-native volume monitors can properly adopt their
mounts away.
svn path=/trunk/; revision=6550
2008-02-21 13:35:05 +01:00
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_append_name:
|
|
|
|
|
* @icon: a #GThemedIcon
|
|
|
|
|
* @iconname: name of icon to append to list of icons from within @icon.
|
|
|
|
|
*
|
|
|
|
|
* Append a name to the list of icons from within @icon.
|
2008-03-10 17:08:41 +01:00
|
|
|
|
*
|
|
|
|
|
* Note that doing so invalidates the hash computed by prior calls
|
|
|
|
|
* to g_icon_hash().
|
Implement this function by moving bits from glocalfileinfo.c
2008-02-21 David Zeuthen <davidz@redhat.com>
* glocalfileinfo.c: (_g_local_file_info_get):
* gcontenttype.c:
(g_content_type_get_icon): Implement this function by
moving bits from glocalfileinfo.c
(g_content_type_get_description): Unalias before getting
description (#517687)
* gfile.c: (g_file_class_init),
(g_file_query_filesystem_info_async),
(g_file_query_filesystem_info_finish),
(query_filesystem_info_data_free),
(query_filesystem_info_async_thread),
(g_file_real_query_filesystem_info_async),
(g_file_real_query_filesystem_info_finish):
* gfile.h: Implement async version of
g_file_query_filesystem_info()
* gfileinfo.h: Add new attributes for filesystem::use-preview
* gio.symbols: Update
* gthemedicon.c: (g_themed_icon_append_name):
* gthemedicon.h: Add new new convenience function.
* gunionvolumemonitor.c: (g_union_volume_monitor_dispose),
(get_mounts), (get_volumes), (get_connected_drives),
(get_volume_for_uuid), (get_mount_for_uuid),
(g_union_volume_monitor_init), (populate_union_monitor),
(g_volume_monitor_get), (_g_mount_get_for_mount_path),
(g_volume_monitor_adopt_orphan_mount):
* gvolumemonitor.c:
* gvolumemonitor.h: Use recursive locks so it's safe for volume
monitor implementations to call into the main volume monitor. Also
separate object initialization and volume monitor initialization
such that non-native volume monitors can properly adopt their
mounts away.
svn path=/trunk/; revision=6550
2008-02-21 13:35:05 +01:00
|
|
|
|
*/
|
|
|
|
|
void
|
2008-06-10 18:45:54 +02:00
|
|
|
|
g_themed_icon_append_name (GThemedIcon *icon,
|
|
|
|
|
const char *iconname)
|
Implement this function by moving bits from glocalfileinfo.c
2008-02-21 David Zeuthen <davidz@redhat.com>
* glocalfileinfo.c: (_g_local_file_info_get):
* gcontenttype.c:
(g_content_type_get_icon): Implement this function by
moving bits from glocalfileinfo.c
(g_content_type_get_description): Unalias before getting
description (#517687)
* gfile.c: (g_file_class_init),
(g_file_query_filesystem_info_async),
(g_file_query_filesystem_info_finish),
(query_filesystem_info_data_free),
(query_filesystem_info_async_thread),
(g_file_real_query_filesystem_info_async),
(g_file_real_query_filesystem_info_finish):
* gfile.h: Implement async version of
g_file_query_filesystem_info()
* gfileinfo.h: Add new attributes for filesystem::use-preview
* gio.symbols: Update
* gthemedicon.c: (g_themed_icon_append_name):
* gthemedicon.h: Add new new convenience function.
* gunionvolumemonitor.c: (g_union_volume_monitor_dispose),
(get_mounts), (get_volumes), (get_connected_drives),
(get_volume_for_uuid), (get_mount_for_uuid),
(g_union_volume_monitor_init), (populate_union_monitor),
(g_volume_monitor_get), (_g_mount_get_for_mount_path),
(g_volume_monitor_adopt_orphan_mount):
* gvolumemonitor.c:
* gvolumemonitor.h: Use recursive locks so it's safe for volume
monitor implementations to call into the main volume monitor. Also
separate object initialization and volume monitor initialization
such that non-native volume monitors can properly adopt their
mounts away.
svn path=/trunk/; revision=6550
2008-02-21 13:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
guint num_names;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_THEMED_ICON (icon));
|
|
|
|
|
g_return_if_fail (iconname != NULL);
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
num_names = g_strv_length (icon->init_names);
|
|
|
|
|
icon->init_names = g_realloc (icon->init_names, sizeof (char*) * (num_names + 2));
|
|
|
|
|
icon->init_names[num_names] = g_strdup (iconname);
|
|
|
|
|
icon->init_names[num_names + 1] = NULL;
|
2008-03-10 17:08:41 +01:00
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
g_themed_icon_update_names (icon);
|
Implement this function by moving bits from glocalfileinfo.c
2008-02-21 David Zeuthen <davidz@redhat.com>
* glocalfileinfo.c: (_g_local_file_info_get):
* gcontenttype.c:
(g_content_type_get_icon): Implement this function by
moving bits from glocalfileinfo.c
(g_content_type_get_description): Unalias before getting
description (#517687)
* gfile.c: (g_file_class_init),
(g_file_query_filesystem_info_async),
(g_file_query_filesystem_info_finish),
(query_filesystem_info_data_free),
(query_filesystem_info_async_thread),
(g_file_real_query_filesystem_info_async),
(g_file_real_query_filesystem_info_finish):
* gfile.h: Implement async version of
g_file_query_filesystem_info()
* gfileinfo.h: Add new attributes for filesystem::use-preview
* gio.symbols: Update
* gthemedicon.c: (g_themed_icon_append_name):
* gthemedicon.h: Add new new convenience function.
* gunionvolumemonitor.c: (g_union_volume_monitor_dispose),
(get_mounts), (get_volumes), (get_connected_drives),
(get_volume_for_uuid), (get_mount_for_uuid),
(g_union_volume_monitor_init), (populate_union_monitor),
(g_volume_monitor_get), (_g_mount_get_for_mount_path),
(g_volume_monitor_adopt_orphan_mount):
* gvolumemonitor.c:
* gvolumemonitor.h: Use recursive locks so it's safe for volume
monitor implementations to call into the main volume monitor. Also
separate object initialization and volume monitor initialization
such that non-native volume monitors can properly adopt their
mounts away.
svn path=/trunk/; revision=6550
2008-02-21 13:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-06-10 18:45:54 +02:00
|
|
|
|
/**
|
|
|
|
|
* g_themed_icon_prepend_name:
|
|
|
|
|
* @icon: a #GThemedIcon
|
|
|
|
|
* @iconname: name of icon to prepend to list of icons from within @icon.
|
|
|
|
|
*
|
|
|
|
|
* Prepend a name to the list of icons from within @icon.
|
|
|
|
|
*
|
|
|
|
|
* Note that doing so invalidates the hash computed by prior calls
|
|
|
|
|
* to g_icon_hash().
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.18
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
g_themed_icon_prepend_name (GThemedIcon *icon,
|
|
|
|
|
const char *iconname)
|
|
|
|
|
{
|
|
|
|
|
guint num_names;
|
|
|
|
|
gchar **names;
|
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_THEMED_ICON (icon));
|
|
|
|
|
g_return_if_fail (iconname != NULL);
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
num_names = g_strv_length (icon->init_names);
|
2008-06-10 18:45:54 +02:00
|
|
|
|
names = g_new (char*, num_names + 2);
|
2018-06-08 00:40:24 +02:00
|
|
|
|
for (i = 0; icon->init_names[i]; i++)
|
|
|
|
|
names[i + 1] = icon->init_names[i];
|
2008-06-10 18:45:54 +02:00
|
|
|
|
names[0] = g_strdup (iconname);
|
|
|
|
|
names[num_names + 1] = NULL;
|
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
g_free (icon->init_names);
|
|
|
|
|
icon->init_names = names;
|
2008-06-10 18:45:54 +02:00
|
|
|
|
|
2018-06-08 00:40:24 +02:00
|
|
|
|
g_themed_icon_update_names (icon);
|
2008-06-10 18:45:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
static guint
|
|
|
|
|
g_themed_icon_hash (GIcon *icon)
|
|
|
|
|
{
|
|
|
|
|
GThemedIcon *themed = G_THEMED_ICON (icon);
|
|
|
|
|
guint hash;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
hash = 0;
|
|
|
|
|
|
|
|
|
|
for (i = 0; themed->names[i] != NULL; i++)
|
|
|
|
|
hash ^= g_str_hash (themed->names[i]);
|
|
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
g_themed_icon_equal (GIcon *icon1,
|
2007-11-30 06:11:25 +01:00
|
|
|
|
GIcon *icon2)
|
2007-11-26 17:13:05 +01:00
|
|
|
|
{
|
|
|
|
|
GThemedIcon *themed1 = G_THEMED_ICON (icon1);
|
|
|
|
|
GThemedIcon *themed2 = G_THEMED_ICON (icon2);
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; themed1->names[i] != NULL && themed2->names[i] != NULL; i++)
|
|
|
|
|
{
|
|
|
|
|
if (!g_str_equal (themed1->names[i], themed2->names[i]))
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return themed1->names[i] == NULL && themed2->names[i] == NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-21 13:51:48 +02:00
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
g_themed_icon_to_tokens (GIcon *icon,
|
|
|
|
|
GPtrArray *tokens,
|
|
|
|
|
gint *out_version)
|
|
|
|
|
{
|
|
|
|
|
GThemedIcon *themed_icon = G_THEMED_ICON (icon);
|
|
|
|
|
int n;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (out_version != NULL, FALSE);
|
|
|
|
|
|
|
|
|
|
*out_version = 0;
|
|
|
|
|
|
|
|
|
|
for (n = 0; themed_icon->names[n] != NULL; n++)
|
|
|
|
|
g_ptr_array_add (tokens,
|
|
|
|
|
g_strdup (themed_icon->names[n]));
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GIcon *
|
|
|
|
|
g_themed_icon_from_tokens (gchar **tokens,
|
|
|
|
|
gint num_tokens,
|
|
|
|
|
gint version,
|
|
|
|
|
GError **error)
|
|
|
|
|
{
|
|
|
|
|
GIcon *icon;
|
|
|
|
|
gchar **names;
|
|
|
|
|
int n;
|
|
|
|
|
|
2013-10-17 22:57:10 +02:00
|
|
|
|
icon = NULL;
|
|
|
|
|
|
|
|
|
|
if (version != 0)
|
|
|
|
|
{
|
|
|
|
|
g_set_error (error,
|
|
|
|
|
G_IO_ERROR,
|
|
|
|
|
G_IO_ERROR_INVALID_ARGUMENT,
|
2016-09-30 05:47:15 +02:00
|
|
|
|
_("Can’t handle version %d of GThemedIcon encoding"),
|
2013-10-17 22:57:10 +02:00
|
|
|
|
version);
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
2008-10-21 13:51:48 +02:00
|
|
|
|
|
|
|
|
|
names = g_new0 (gchar *, num_tokens + 1);
|
|
|
|
|
for (n = 0; n < num_tokens; n++)
|
|
|
|
|
names[n] = tokens[n];
|
|
|
|
|
names[n] = NULL;
|
|
|
|
|
|
|
|
|
|
icon = g_themed_icon_new_from_names (names, num_tokens);
|
|
|
|
|
g_free (names);
|
|
|
|
|
|
2013-10-17 22:57:10 +02:00
|
|
|
|
out:
|
2008-10-21 13:51:48 +02:00
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-21 00:50:21 +02:00
|
|
|
|
static GVariant *
|
|
|
|
|
g_themed_icon_serialize (GIcon *icon)
|
|
|
|
|
{
|
|
|
|
|
GThemedIcon *themed_icon = G_THEMED_ICON (icon);
|
|
|
|
|
|
|
|
|
|
return g_variant_new ("(sv)", "themed", g_variant_new ("^as", themed_icon->names));
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
|
static void
|
|
|
|
|
g_themed_icon_icon_iface_init (GIconIface *iface)
|
|
|
|
|
{
|
|
|
|
|
iface->hash = g_themed_icon_hash;
|
|
|
|
|
iface->equal = g_themed_icon_equal;
|
2008-10-21 13:51:48 +02:00
|
|
|
|
iface->to_tokens = g_themed_icon_to_tokens;
|
|
|
|
|
iface->from_tokens = g_themed_icon_from_tokens;
|
2013-04-21 00:50:21 +02:00
|
|
|
|
iface->serialize = g_themed_icon_serialize;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
}
|