icon-theme: Better handling of unscaled icon directories

If an icon is in a Fixed or Threshold directory we normally don't
scale it. However, in the case of HiDPI scaling we *do* want to
scale it, to avoid different layouts in Lo/HiDPI. We look up whatever
the size of the icon would have been in LoDPI and scale to that
in the no-scaling case, thus getting the same layout as the
unscaled case.

https://bugzilla.gnome.org/show_bug.cgi?id=708384
This commit is contained in:
Alexander Larsson 2013-09-23 12:42:30 +02:00
parent a001dc0ec7
commit 68c450468e

View File

@ -258,6 +258,7 @@ struct _GtkIconInfo
IconThemeDirType dir_type; IconThemeDirType dir_type;
gint dir_size; gint dir_size;
gint dir_scale; gint dir_scale;
gdouble unscaled_scale;
gint threshold; gint threshold;
/* Parameters influencing the scaled icon /* Parameters influencing the scaled icon
@ -1598,9 +1599,12 @@ choose_icon (GtkIconTheme *icon_theme,
GtkIconThemePrivate *priv; GtkIconThemePrivate *priv;
GList *l; GList *l;
GtkIconInfo *icon_info = NULL; GtkIconInfo *icon_info = NULL;
GtkIconInfo *unscaled_icon_info;
UnthemedIcon *unthemed_icon = NULL; UnthemedIcon *unthemed_icon = NULL;
const char *icon_name = NULL;
gboolean allow_svg; gboolean allow_svg;
gboolean use_builtin; gboolean use_builtin;
IconTheme *theme = NULL;
gint i; gint i;
IconInfoKey key; IconInfoKey key;
@ -1647,8 +1651,9 @@ choose_icon (GtkIconTheme *icon_theme,
{ {
for (l = priv->themes; l; l = l->next) for (l = priv->themes; l; l = l->next)
{ {
IconTheme *theme = l->data; theme = l->data;
icon_info = theme_lookup_icon (theme, icon_names[0], size, scale, allow_svg, use_builtin); icon_name = icon_names[0];
icon_info = theme_lookup_icon (theme, icon_name, size, scale, allow_svg, use_builtin);
if (icon_info) if (icon_info)
goto out; goto out;
} }
@ -1656,16 +1661,19 @@ choose_icon (GtkIconTheme *icon_theme,
for (l = priv->themes; l; l = l->next) for (l = priv->themes; l; l = l->next)
{ {
IconTheme *theme = l->data; theme = l->data;
for (i = 0; icon_names[i]; i++) for (i = 0; icon_names[i]; i++)
{ {
icon_info = theme_lookup_icon (theme, icon_names[i], size, scale, allow_svg, use_builtin); icon_name = icon_names[i];
icon_info = theme_lookup_icon (theme, icon_name, size, scale, allow_svg, use_builtin);
if (icon_info) if (icon_info)
goto out; goto out;
} }
} }
theme = NULL;
for (i = 0; icon_names[i]; i++) for (i = 0; icon_names[i]; i++)
{ {
unthemed_icon = g_hash_table_lookup (priv->unthemed_icons, icon_names[i]); unthemed_icon = g_hash_table_lookup (priv->unthemed_icons, icon_names[i]);
@ -1722,6 +1730,21 @@ choose_icon (GtkIconTheme *icon_theme,
icon_info->desired_scale = scale; icon_info->desired_scale = scale;
icon_info->forced_size = (flags & GTK_ICON_LOOKUP_FORCE_SIZE) != 0; icon_info->forced_size = (flags & GTK_ICON_LOOKUP_FORCE_SIZE) != 0;
/* In case we're not scaling the icon we want to reuse the exact same size
* as a scale==1 lookup would be, rather than not scaling at all and
* causing a different layout */
icon_info->unscaled_scale = 1.0;
if (scale != 1 && !icon_info->forced_size && theme != NULL)
{
unscaled_icon_info = theme_lookup_icon (theme, icon_name, size, 1, allow_svg, use_builtin);
if (unscaled_icon_info)
{
icon_info->unscaled_scale =
(gdouble) unscaled_icon_info->dir_size * scale / (icon_info->dir_size * icon_info->dir_scale);
g_object_unref (unscaled_icon_info);
}
}
icon_info->key.icon_names = g_strdupv ((char **)icon_names); icon_info->key.icon_names = g_strdupv ((char **)icon_names);
icon_info->key.size = size; icon_info->key.size = size;
icon_info->key.scale = scale; icon_info->key.scale = scale;
@ -3281,6 +3304,7 @@ icon_info_new (IconThemeDirType type, int dir_size, int dir_scale)
icon_info->dir_type = type; icon_info->dir_type = type;
icon_info->dir_size = dir_size; icon_info->dir_size = dir_size;
icon_info->dir_scale = dir_scale; icon_info->dir_scale = dir_scale;
icon_info->unscaled_scale = 1.0;
return icon_info; return icon_info;
} }
@ -3315,6 +3339,7 @@ icon_info_dup (GtkIconInfo *icon_info)
dup->cache_pixbuf = g_object_ref (icon_info->cache_pixbuf); dup->cache_pixbuf = g_object_ref (icon_info->cache_pixbuf);
dup->data = icon_data_dup (icon_info->data); dup->data = icon_data_dup (icon_info->data);
dup->unscaled_scale = icon_info->unscaled_scale;
dup->threshold = icon_info->threshold; dup->threshold = icon_info->threshold;
dup->desired_size = icon_info->desired_size; dup->desired_size = icon_info->desired_size;
dup->desired_scale = icon_info->desired_scale; dup->desired_scale = icon_info->desired_scale;
@ -3713,12 +3738,12 @@ icon_info_ensure_scale_and_pixbuf (GtkIconInfo *icon_info,
if (icon_info->forced_size) if (icon_info->forced_size)
icon_info->scale = -1; icon_info->scale = -1;
else if (icon_info->dir_type == ICON_THEME_DIR_FIXED) else if (icon_info->dir_type == ICON_THEME_DIR_FIXED)
icon_info->scale = MAX(round((gdouble) scaled_desired_size / (icon_info->dir_size * icon_info->dir_scale)), 1.0); icon_info->scale = icon_info->unscaled_scale;
else if (icon_info->dir_type == ICON_THEME_DIR_THRESHOLD) else if (icon_info->dir_type == ICON_THEME_DIR_THRESHOLD)
{ {
if (scaled_desired_size >= (icon_info->dir_size - icon_info->threshold) * icon_info->dir_scale && if (scaled_desired_size >= (icon_info->dir_size - icon_info->threshold) * icon_info->dir_scale &&
scaled_desired_size <= (icon_info->dir_size + icon_info->threshold) * icon_info->dir_scale) scaled_desired_size <= (icon_info->dir_size + icon_info->threshold) * icon_info->dir_scale)
icon_info->scale = MAX(round((gdouble) scaled_desired_size / (icon_info->dir_size * icon_info->dir_scale)), 1.0); icon_info->scale = icon_info->unscaled_scale;
else if (icon_info->dir_size > 0) else if (icon_info->dir_size > 0)
icon_info->scale =(gdouble) scaled_desired_size / (icon_info->dir_size * icon_info->dir_scale); icon_info->scale =(gdouble) scaled_desired_size / (icon_info->dir_size * icon_info->dir_scale);
} }