2010-10-30 19:57:59 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
|
|
* st-icon.c: icon widget
|
|
|
|
*
|
|
|
|
* Copyright 2009, 2010 Intel Corporation.
|
2010-10-31 16:02:24 -04:00
|
|
|
* Copyright 2010 Red Hat, Inc.
|
2010-10-30 19:57:59 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU Lesser General Public License,
|
|
|
|
* version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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 Public License
|
2010-11-12 15:52:20 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-10-30 19:57:59 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:st-icon
|
|
|
|
* @short_description: a simple styled icon actor
|
|
|
|
*
|
|
|
|
* #StIcon is a simple styled texture actor that displays an image from
|
|
|
|
* a stylesheet.
|
|
|
|
*/
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
#include "st-enum-types.h"
|
2010-10-30 19:57:59 -04:00
|
|
|
#include "st-icon.h"
|
2010-10-31 16:02:24 -04:00
|
|
|
#include "st-texture-cache.h"
|
2014-02-15 22:43:35 -05:00
|
|
|
#include "st-theme-context.h"
|
2010-10-30 19:57:59 -04:00
|
|
|
#include "st-private.h"
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
PROP_GICON,
|
2010-10-30 19:57:59 -04:00
|
|
|
PROP_ICON_NAME,
|
2015-03-14 18:32:01 -04:00
|
|
|
PROP_ICON_SIZE,
|
|
|
|
PROP_FALLBACK_ICON_NAME
|
2010-10-30 19:57:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _StIconPrivate
|
|
|
|
{
|
|
|
|
ClutterActor *icon_texture;
|
2010-11-30 10:19:27 -05:00
|
|
|
ClutterActor *pending_texture;
|
|
|
|
guint opacity_handler_id;
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
GIcon *gicon;
|
2010-10-31 16:02:24 -04:00
|
|
|
gint prop_icon_size; /* icon size set as property */
|
|
|
|
gint theme_icon_size; /* icon size from theme node */
|
|
|
|
gint icon_size; /* icon size we are using */
|
2015-03-14 18:32:01 -04:00
|
|
|
GIcon *fallback_gicon;
|
2010-11-23 07:48:23 -05:00
|
|
|
|
2015-02-20 20:09:20 -05:00
|
|
|
CoglPipeline *shadow_pipeline;
|
2011-01-13 18:27:24 -05:00
|
|
|
StShadow *shadow_spec;
|
2017-10-18 06:32:22 -04:00
|
|
|
ClutterSize shadow_size;
|
2010-10-30 19:57:59 -04:00
|
|
|
};
|
|
|
|
|
2015-09-24 12:04:48 -04:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (StIcon, st_icon, ST_TYPE_WIDGET)
|
|
|
|
|
2010-11-02 16:15:53 -04:00
|
|
|
static void st_icon_update (StIcon *icon);
|
|
|
|
static gboolean st_icon_update_icon_size (StIcon *icon);
|
2017-10-18 06:32:22 -04:00
|
|
|
static void st_icon_update_shadow_pipeline (StIcon *icon);
|
|
|
|
static void st_icon_clear_shadow_pipeline (StIcon *icon);
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
#define DEFAULT_ICON_SIZE 48
|
2010-10-30 19:57:59 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
st_icon_set_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
StIcon *icon = ST_ICON (gobject);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2010-09-26 11:18:26 -04:00
|
|
|
case PROP_GICON:
|
|
|
|
st_icon_set_gicon (icon, g_value_get_object (value));
|
|
|
|
break;
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
case PROP_ICON_NAME:
|
|
|
|
st_icon_set_icon_name (icon, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_ICON_SIZE:
|
|
|
|
st_icon_set_icon_size (icon, g_value_get_int (value));
|
|
|
|
break;
|
|
|
|
|
2015-03-14 18:32:01 -04:00
|
|
|
case PROP_FALLBACK_ICON_NAME:
|
|
|
|
st_icon_set_fallback_icon_name (icon, g_value_get_string (value));
|
|
|
|
break;
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
st_icon_get_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
StIcon *icon = ST_ICON (gobject);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2010-09-26 11:18:26 -04:00
|
|
|
case PROP_GICON:
|
|
|
|
g_value_set_object (value, icon->priv->gicon);
|
|
|
|
break;
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
case PROP_ICON_NAME:
|
|
|
|
g_value_set_string (value, st_icon_get_icon_name (icon));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_ICON_SIZE:
|
|
|
|
g_value_set_int (value, st_icon_get_icon_size (icon));
|
|
|
|
break;
|
|
|
|
|
2015-03-14 18:32:01 -04:00
|
|
|
case PROP_FALLBACK_ICON_NAME:
|
|
|
|
g_value_set_string (value, st_icon_get_fallback_icon_name (icon));
|
|
|
|
break;
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
st_icon_dispose (GObject *gobject)
|
|
|
|
{
|
|
|
|
StIconPrivate *priv = ST_ICON (gobject)->priv;
|
|
|
|
|
|
|
|
if (priv->icon_texture)
|
|
|
|
{
|
|
|
|
clutter_actor_destroy (priv->icon_texture);
|
|
|
|
priv->icon_texture = NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-30 10:19:27 -05:00
|
|
|
if (priv->pending_texture)
|
|
|
|
{
|
|
|
|
clutter_actor_destroy (priv->pending_texture);
|
|
|
|
g_object_unref (priv->pending_texture);
|
2010-12-21 16:49:54 -05:00
|
|
|
priv->pending_texture = NULL;
|
2010-11-30 10:19:27 -05:00
|
|
|
}
|
|
|
|
|
2015-02-20 20:09:20 -05:00
|
|
|
g_clear_object (&priv->gicon);
|
2015-03-14 18:32:01 -04:00
|
|
|
g_clear_object (&priv->fallback_gicon);
|
2015-02-20 20:09:20 -05:00
|
|
|
g_clear_pointer (&priv->shadow_pipeline, cogl_object_unref);
|
|
|
|
g_clear_pointer (&priv->shadow_spec, st_shadow_unref);
|
2011-01-13 18:27:24 -05:00
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
G_OBJECT_CLASS (st_icon_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
st_icon_paint (ClutterActor *actor)
|
|
|
|
{
|
2017-10-18 06:32:22 -04:00
|
|
|
StIcon *icon = ST_ICON (actor);
|
|
|
|
StIconPrivate *priv = icon->priv;
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2012-02-13 16:41:29 -05:00
|
|
|
st_widget_paint_background (ST_WIDGET (actor));
|
2010-10-30 19:57:59 -04:00
|
|
|
|
|
|
|
if (priv->icon_texture)
|
2010-11-23 07:48:23 -05:00
|
|
|
{
|
2017-10-18 06:32:22 -04:00
|
|
|
st_icon_update_shadow_pipeline (icon);
|
|
|
|
|
2015-02-20 20:09:20 -05:00
|
|
|
if (priv->shadow_pipeline)
|
2010-11-23 07:48:23 -05:00
|
|
|
{
|
|
|
|
ClutterActorBox allocation;
|
|
|
|
|
|
|
|
clutter_actor_get_allocation_box (priv->icon_texture, &allocation);
|
2011-01-13 18:27:24 -05:00
|
|
|
_st_paint_shadow_with_opacity (priv->shadow_spec,
|
2018-10-05 21:38:11 -04:00
|
|
|
cogl_get_draw_framebuffer (),
|
2015-02-20 20:09:20 -05:00
|
|
|
priv->shadow_pipeline,
|
2010-11-23 07:48:23 -05:00
|
|
|
&allocation,
|
|
|
|
clutter_actor_get_paint_opacity (priv->icon_texture));
|
|
|
|
}
|
|
|
|
|
|
|
|
clutter_actor_paint (priv->icon_texture);
|
|
|
|
}
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
static void
|
|
|
|
st_icon_style_changed (StWidget *widget)
|
|
|
|
{
|
|
|
|
StIcon *self = ST_ICON (widget);
|
|
|
|
StThemeNode *theme_node = st_widget_get_theme_node (widget);
|
|
|
|
StIconPrivate *priv = self->priv;
|
|
|
|
|
2017-10-18 06:32:22 -04:00
|
|
|
st_icon_clear_shadow_pipeline (self);
|
2015-02-20 20:09:20 -05:00
|
|
|
g_clear_pointer (&priv->shadow_spec, st_shadow_unref);
|
2012-07-11 20:26:11 -04:00
|
|
|
|
2011-01-13 18:27:24 -05:00
|
|
|
priv->shadow_spec = st_theme_node_get_shadow (theme_node, "icon-shadow");
|
|
|
|
|
2011-02-13 20:07:14 -05:00
|
|
|
if (priv->shadow_spec && priv->shadow_spec->inset)
|
|
|
|
{
|
|
|
|
g_warning ("The icon-shadow property does not support inset shadows");
|
|
|
|
st_shadow_unref (priv->shadow_spec);
|
|
|
|
priv->shadow_spec = NULL;
|
|
|
|
}
|
|
|
|
|
2011-01-19 11:34:10 -05:00
|
|
|
priv->theme_icon_size = (int)(0.5 + st_theme_node_get_length (theme_node, "icon-size"));
|
2010-10-31 16:02:24 -04:00
|
|
|
st_icon_update_icon_size (self);
|
2010-11-02 16:15:53 -04:00
|
|
|
st_icon_update (self);
|
2010-10-31 16:02:24 -04:00
|
|
|
}
|
|
|
|
|
2017-05-11 00:35:09 -04:00
|
|
|
static void
|
|
|
|
st_icon_resource_scale_changed (StWidget *widget)
|
|
|
|
{
|
|
|
|
st_icon_update (ST_ICON (widget));
|
|
|
|
}
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
static void
|
|
|
|
st_icon_class_init (StIconClass *klass)
|
|
|
|
{
|
|
|
|
GParamSpec *pspec;
|
|
|
|
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
ClutterActorClass *actor_class = CLUTTER_ACTOR_CLASS (klass);
|
2010-10-31 16:02:24 -04:00
|
|
|
StWidgetClass *widget_class = ST_WIDGET_CLASS (klass);
|
2010-10-30 19:57:59 -04:00
|
|
|
|
|
|
|
object_class->get_property = st_icon_get_property;
|
|
|
|
object_class->set_property = st_icon_set_property;
|
|
|
|
object_class->dispose = st_icon_dispose;
|
|
|
|
|
|
|
|
actor_class->paint = st_icon_paint;
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
widget_class->style_changed = st_icon_style_changed;
|
2017-05-11 00:35:09 -04:00
|
|
|
widget_class->resource_scale_changed = st_icon_resource_scale_changed;
|
2010-10-31 16:02:24 -04:00
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
pspec = g_param_spec_object ("gicon",
|
|
|
|
"GIcon",
|
2012-08-26 09:36:45 -04:00
|
|
|
"The GIcon shown by this icon actor",
|
2010-09-26 11:18:26 -04:00
|
|
|
G_TYPE_ICON,
|
|
|
|
ST_PARAM_READWRITE);
|
|
|
|
g_object_class_install_property (object_class, PROP_GICON, pspec);
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
pspec = g_param_spec_string ("icon-name",
|
|
|
|
"Icon name",
|
|
|
|
"An icon name",
|
2014-06-26 15:45:55 -04:00
|
|
|
NULL, ST_PARAM_READWRITE);
|
2010-10-30 19:57:59 -04:00
|
|
|
g_object_class_install_property (object_class, PROP_ICON_NAME, pspec);
|
|
|
|
|
|
|
|
pspec = g_param_spec_int ("icon-size",
|
|
|
|
"Icon size",
|
2010-10-31 16:02:24 -04:00
|
|
|
"The size if the icon, if positive. Otherwise the size will be derived from the current style",
|
|
|
|
-1, G_MAXINT, -1,
|
2010-10-30 19:57:59 -04:00
|
|
|
ST_PARAM_READWRITE);
|
|
|
|
g_object_class_install_property (object_class, PROP_ICON_SIZE, pspec);
|
2015-03-14 18:32:01 -04:00
|
|
|
|
|
|
|
pspec = g_param_spec_string ("fallback-icon-name",
|
|
|
|
"Fallback icon name",
|
|
|
|
"A fallback icon name",
|
|
|
|
NULL, ST_PARAM_READWRITE);
|
|
|
|
g_object_class_install_property (object_class, PROP_FALLBACK_ICON_NAME, pspec);
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
static void
|
|
|
|
st_icon_init (StIcon *self)
|
|
|
|
{
|
2014-02-16 00:33:21 -05:00
|
|
|
ClutterLayoutManager *layout_manager;
|
|
|
|
|
2015-09-24 12:04:48 -04:00
|
|
|
self->priv = st_icon_get_instance_private (self);
|
2010-10-31 16:02:24 -04:00
|
|
|
|
2014-02-16 00:33:21 -05:00
|
|
|
layout_manager = clutter_bin_layout_new (CLUTTER_BIN_ALIGNMENT_FILL,
|
|
|
|
CLUTTER_BIN_ALIGNMENT_FILL);
|
|
|
|
clutter_actor_set_layout_manager (CLUTTER_ACTOR (self), layout_manager);
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
self->priv->icon_size = DEFAULT_ICON_SIZE;
|
|
|
|
self->priv->prop_icon_size = -1;
|
2010-11-23 07:48:23 -05:00
|
|
|
|
2015-02-20 20:09:20 -05:00
|
|
|
self->priv->shadow_pipeline = NULL;
|
2010-11-23 07:48:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-10-18 06:32:22 -04:00
|
|
|
st_icon_clear_shadow_pipeline (StIcon *icon)
|
2010-11-23 07:48:23 -05:00
|
|
|
{
|
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
|
2015-02-20 20:09:20 -05:00
|
|
|
g_clear_pointer (&priv->shadow_pipeline, cogl_object_unref);
|
2017-10-18 06:32:22 -04:00
|
|
|
clutter_size_init (&priv->shadow_size, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
st_icon_update_shadow_pipeline (StIcon *icon)
|
|
|
|
{
|
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
|
|
|
|
if (priv->icon_texture && priv->shadow_spec)
|
|
|
|
{
|
|
|
|
ClutterActorBox box;
|
|
|
|
float width, height;
|
|
|
|
|
|
|
|
clutter_actor_get_allocation_box (CLUTTER_ACTOR (icon), &box);
|
|
|
|
clutter_actor_box_get_size (&box, &width, &height);
|
|
|
|
|
|
|
|
if (priv->shadow_pipeline == NULL ||
|
|
|
|
priv->shadow_size.width != width ||
|
|
|
|
priv->shadow_size.height != height)
|
|
|
|
{
|
|
|
|
st_icon_clear_shadow_pipeline (icon);
|
|
|
|
|
|
|
|
priv->shadow_pipeline =
|
|
|
|
_st_create_shadow_pipeline_from_actor (priv->shadow_spec,
|
|
|
|
priv->icon_texture);
|
2010-11-23 07:48:23 -05:00
|
|
|
|
2017-10-18 06:32:22 -04:00
|
|
|
if (priv->shadow_pipeline)
|
|
|
|
clutter_size_init (&priv->shadow_size, width, height);
|
|
|
|
}
|
|
|
|
}
|
2010-11-23 07:48:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-01-24 10:42:14 -05:00
|
|
|
on_content_changed (ClutterActor *actor,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
StIcon *icon)
|
2010-11-23 07:48:23 -05:00
|
|
|
{
|
2017-10-18 06:32:22 -04:00
|
|
|
st_icon_clear_shadow_pipeline (icon);
|
2010-10-31 16:02:24 -04:00
|
|
|
}
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
static void
|
2010-11-30 10:19:27 -05:00
|
|
|
st_icon_finish_update (StIcon *icon)
|
2010-10-30 19:57:59 -04:00
|
|
|
{
|
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
|
|
|
|
if (priv->icon_texture)
|
|
|
|
{
|
|
|
|
clutter_actor_destroy (priv->icon_texture);
|
|
|
|
priv->icon_texture = NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-30 10:19:27 -05:00
|
|
|
if (priv->pending_texture)
|
|
|
|
{
|
|
|
|
priv->icon_texture = priv->pending_texture;
|
|
|
|
priv->pending_texture = NULL;
|
2014-02-16 00:33:21 -05:00
|
|
|
clutter_actor_set_x_align (priv->icon_texture, CLUTTER_ACTOR_ALIGN_CENTER);
|
|
|
|
clutter_actor_set_y_align (priv->icon_texture, CLUTTER_ACTOR_ALIGN_CENTER);
|
2012-02-13 15:22:53 -05:00
|
|
|
clutter_actor_add_child (CLUTTER_ACTOR (icon), priv->icon_texture);
|
2010-11-30 10:19:27 -05:00
|
|
|
|
|
|
|
/* Remove the temporary ref we added */
|
|
|
|
g_object_unref (priv->icon_texture);
|
|
|
|
|
2017-10-18 06:32:22 -04:00
|
|
|
st_icon_clear_shadow_pipeline (icon);
|
2010-11-30 10:19:27 -05:00
|
|
|
|
2019-01-24 10:42:14 -05:00
|
|
|
g_signal_connect_object (priv->icon_texture, "notify::content",
|
|
|
|
G_CALLBACK (on_content_changed), icon, 0);
|
2010-11-30 10:19:27 -05:00
|
|
|
}
|
2017-05-11 00:35:09 -04:00
|
|
|
|
|
|
|
clutter_actor_queue_relayout (CLUTTER_ACTOR (icon));
|
2010-11-30 10:19:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
opacity_changed_cb (GObject *object,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
StIcon *icon = user_data;
|
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
|
|
|
|
g_signal_handler_disconnect (priv->pending_texture, priv->opacity_handler_id);
|
|
|
|
priv->opacity_handler_id = 0;
|
|
|
|
|
|
|
|
st_icon_finish_update (icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
st_icon_update (StIcon *icon)
|
|
|
|
{
|
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
StThemeNode *theme_node;
|
|
|
|
StTextureCache *cache;
|
2017-05-11 00:35:09 -04:00
|
|
|
gint paint_scale;
|
2014-02-15 22:43:35 -05:00
|
|
|
ClutterActor *stage;
|
|
|
|
StThemeContext *context;
|
2017-05-11 00:35:09 -04:00
|
|
|
float resource_scale;
|
2010-11-30 10:19:27 -05:00
|
|
|
|
|
|
|
if (priv->pending_texture)
|
|
|
|
{
|
|
|
|
clutter_actor_destroy (priv->pending_texture);
|
|
|
|
g_object_unref (priv->pending_texture);
|
|
|
|
priv->pending_texture = NULL;
|
|
|
|
priv->opacity_handler_id = 0;
|
|
|
|
}
|
|
|
|
|
2017-05-11 00:35:09 -04:00
|
|
|
if (!st_widget_get_resource_scale (ST_WIDGET (icon), &resource_scale))
|
|
|
|
return;
|
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
theme_node = st_widget_peek_theme_node (ST_WIDGET (icon));
|
|
|
|
if (theme_node == NULL)
|
|
|
|
return;
|
|
|
|
|
2014-02-15 22:43:35 -05:00
|
|
|
stage = clutter_actor_get_stage (CLUTTER_ACTOR (icon));
|
|
|
|
context = st_theme_context_get_for_stage (CLUTTER_STAGE (stage));
|
2017-05-11 00:35:09 -04:00
|
|
|
g_object_get (context, "scale-factor", &paint_scale, NULL);
|
2014-02-15 22:43:35 -05:00
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
cache = st_texture_cache_get_default ();
|
2015-03-14 18:32:01 -04:00
|
|
|
|
|
|
|
if (priv->gicon != NULL)
|
|
|
|
priv->pending_texture = st_texture_cache_load_gicon (cache,
|
|
|
|
theme_node,
|
|
|
|
priv->gicon,
|
|
|
|
priv->icon_size,
|
2017-05-11 00:35:09 -04:00
|
|
|
paint_scale,
|
|
|
|
resource_scale);
|
2015-03-14 18:32:01 -04:00
|
|
|
|
|
|
|
if (priv->pending_texture == NULL && priv->fallback_gicon != NULL)
|
|
|
|
priv->pending_texture = st_texture_cache_load_gicon (cache,
|
|
|
|
theme_node,
|
|
|
|
priv->fallback_gicon,
|
|
|
|
priv->icon_size,
|
2017-05-11 00:35:09 -04:00
|
|
|
paint_scale,
|
|
|
|
resource_scale);
|
2010-11-30 10:19:27 -05:00
|
|
|
|
|
|
|
if (priv->pending_texture)
|
2010-11-23 07:48:23 -05:00
|
|
|
{
|
2010-11-30 10:19:27 -05:00
|
|
|
g_object_ref_sink (priv->pending_texture);
|
2010-11-23 07:48:23 -05:00
|
|
|
|
2010-11-30 10:19:27 -05:00
|
|
|
if (clutter_actor_get_opacity (priv->pending_texture) != 0 || priv->icon_texture == NULL)
|
|
|
|
{
|
|
|
|
/* This icon is ready for showing, or nothing else is already showing */
|
|
|
|
st_icon_finish_update (icon);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Will be shown when fully loaded */
|
2013-03-27 12:54:41 -04:00
|
|
|
priv->opacity_handler_id = g_signal_connect_object (priv->pending_texture, "notify::opacity", G_CALLBACK (opacity_changed_cb), icon, 0);
|
2010-11-30 10:19:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (priv->icon_texture)
|
|
|
|
{
|
|
|
|
clutter_actor_destroy (priv->icon_texture);
|
|
|
|
priv->icon_texture = NULL;
|
2010-11-23 07:48:23 -05:00
|
|
|
}
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
|
|
|
|
2010-11-02 16:15:53 -04:00
|
|
|
static gboolean
|
2010-10-31 16:02:24 -04:00
|
|
|
st_icon_update_icon_size (StIcon *icon)
|
2010-10-30 19:57:59 -04:00
|
|
|
{
|
2010-10-31 16:02:24 -04:00
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
int new_size;
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
if (priv->prop_icon_size > 0)
|
|
|
|
new_size = priv->prop_icon_size;
|
|
|
|
else if (priv->theme_icon_size > 0)
|
2014-02-15 22:43:35 -05:00
|
|
|
{
|
|
|
|
gint scale;
|
|
|
|
ClutterActor *stage;
|
|
|
|
StThemeContext *context;
|
|
|
|
|
|
|
|
/* The theme will give us an already-scaled size, so we
|
|
|
|
* undo it here, as priv->icon_size is in unscaled pixels.
|
|
|
|
*/
|
|
|
|
stage = clutter_actor_get_stage (CLUTTER_ACTOR (icon));
|
|
|
|
context = st_theme_context_get_for_stage (CLUTTER_STAGE (stage));
|
|
|
|
g_object_get (context, "scale-factor", &scale, NULL);
|
|
|
|
new_size = (gint) (priv->theme_icon_size / scale);
|
|
|
|
}
|
2010-10-31 16:02:24 -04:00
|
|
|
else
|
|
|
|
new_size = DEFAULT_ICON_SIZE;
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
if (new_size != priv->icon_size)
|
2010-10-30 19:57:59 -04:00
|
|
|
{
|
2010-11-02 17:11:28 -04:00
|
|
|
clutter_actor_queue_relayout (CLUTTER_ACTOR (icon));
|
2010-10-31 16:02:24 -04:00
|
|
|
priv->icon_size = new_size;
|
2010-11-02 16:15:53 -04:00
|
|
|
return TRUE;
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
2010-11-02 16:15:53 -04:00
|
|
|
else
|
|
|
|
return FALSE;
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* st_icon_new:
|
|
|
|
*
|
|
|
|
* Create a newly allocated #StIcon
|
|
|
|
*
|
|
|
|
* Returns: A newly allocated #StIcon
|
|
|
|
*/
|
|
|
|
ClutterActor *
|
|
|
|
st_icon_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (ST_TYPE_ICON, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
const gchar *
|
|
|
|
st_icon_get_icon_name (StIcon *icon)
|
|
|
|
{
|
2012-08-26 09:36:45 -04:00
|
|
|
StIconPrivate *priv;
|
|
|
|
|
2010-10-30 19:57:59 -04:00
|
|
|
g_return_val_if_fail (ST_IS_ICON (icon), NULL);
|
|
|
|
|
2012-08-26 09:36:45 -04:00
|
|
|
priv = icon->priv;
|
|
|
|
|
|
|
|
if (priv->gicon && G_IS_THEMED_ICON (priv->gicon))
|
|
|
|
return g_themed_icon_get_names (G_THEMED_ICON (priv->gicon)) [0];
|
|
|
|
else
|
|
|
|
return NULL;
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
st_icon_set_icon_name (StIcon *icon,
|
|
|
|
const gchar *icon_name)
|
|
|
|
{
|
2013-03-02 15:50:47 -05:00
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
GIcon *gicon = NULL;
|
2010-10-30 19:57:59 -04:00
|
|
|
|
|
|
|
g_return_if_fail (ST_IS_ICON (icon));
|
|
|
|
|
2013-03-02 15:50:47 -05:00
|
|
|
if (icon_name)
|
|
|
|
gicon = g_themed_icon_new_with_default_fallbacks (icon_name);
|
|
|
|
|
|
|
|
if (g_icon_equal (priv->gicon, gicon)) /* do nothing */
|
|
|
|
{
|
2013-04-25 12:25:12 -04:00
|
|
|
if (gicon)
|
|
|
|
g_object_unref (gicon);
|
2013-03-02 15:50:47 -05:00
|
|
|
return;
|
|
|
|
}
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
if (priv->gicon)
|
2012-08-26 09:36:45 -04:00
|
|
|
g_object_unref (priv->gicon);
|
|
|
|
|
2013-03-02 15:50:47 -05:00
|
|
|
g_object_freeze_notify (G_OBJECT (icon));
|
|
|
|
|
|
|
|
priv->gicon = gicon;
|
2010-10-30 19:57:59 -04:00
|
|
|
|
2012-08-26 09:36:45 -04:00
|
|
|
g_object_notify (G_OBJECT (icon), "gicon");
|
2010-10-30 19:57:59 -04:00
|
|
|
g_object_notify (G_OBJECT (icon), "icon-name");
|
2010-09-26 11:18:26 -04:00
|
|
|
|
2013-03-02 15:50:47 -05:00
|
|
|
g_object_thaw_notify (G_OBJECT (icon));
|
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
st_icon_update (icon);
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
|
|
|
|
2010-09-26 11:18:26 -04:00
|
|
|
/**
|
|
|
|
* st_icon_get_gicon:
|
|
|
|
* @icon: an icon
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): the override GIcon, if set, or NULL
|
|
|
|
*/
|
|
|
|
GIcon *
|
|
|
|
st_icon_get_gicon (StIcon *icon)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (ST_IS_ICON (icon), NULL);
|
|
|
|
|
|
|
|
return icon->priv->gicon;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* st_icon_set_gicon:
|
|
|
|
* @icon: an icon
|
2014-05-28 15:54:02 -04:00
|
|
|
* @gicon: (nullable): a #GIcon to override :icon-name
|
2010-09-26 11:18:26 -04:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
st_icon_set_gicon (StIcon *icon, GIcon *gicon)
|
|
|
|
{
|
|
|
|
g_return_if_fail (ST_IS_ICON (icon));
|
2012-08-26 09:36:45 -04:00
|
|
|
g_return_if_fail (gicon == NULL || G_IS_ICON (gicon));
|
2010-09-26 11:18:26 -04:00
|
|
|
|
2013-03-02 15:50:47 -05:00
|
|
|
if (g_icon_equal (icon->priv->gicon, gicon)) /* do nothing */
|
2010-09-26 11:18:26 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (icon->priv->gicon)
|
|
|
|
{
|
|
|
|
g_object_unref (icon->priv->gicon);
|
|
|
|
icon->priv->gicon = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gicon)
|
|
|
|
icon->priv->gicon = g_object_ref (gicon);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "gicon");
|
|
|
|
|
|
|
|
st_icon_update (icon);
|
|
|
|
}
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
/**
|
|
|
|
* st_icon_get_icon_size:
|
|
|
|
* @icon: an icon
|
|
|
|
*
|
|
|
|
* Gets the size explicit size on the icon. This is not necesariily
|
|
|
|
* the size that the icon will actually be displayed at.
|
|
|
|
*
|
|
|
|
* Return value: the size explicitly set, or -1 if no size has been set
|
|
|
|
*/
|
2010-10-30 19:57:59 -04:00
|
|
|
gint
|
|
|
|
st_icon_get_icon_size (StIcon *icon)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (ST_IS_ICON (icon), -1);
|
|
|
|
|
2010-10-31 16:02:24 -04:00
|
|
|
return icon->priv->prop_icon_size;
|
2010-10-30 19:57:59 -04:00
|
|
|
}
|
2010-10-31 16:02:24 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* st_icon_set_icon_size:
|
|
|
|
* @icon: an icon
|
|
|
|
* @size: if positive, the new size, otherwise the size will be
|
|
|
|
* derived from the current style
|
|
|
|
*
|
|
|
|
* Sets an explicit size for the icon.
|
|
|
|
*/
|
2010-10-30 19:57:59 -04:00
|
|
|
void
|
|
|
|
st_icon_set_icon_size (StIcon *icon,
|
|
|
|
gint size)
|
|
|
|
{
|
|
|
|
StIconPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (ST_IS_ICON (icon));
|
|
|
|
|
|
|
|
priv = icon->priv;
|
2010-10-31 16:02:24 -04:00
|
|
|
if (priv->prop_icon_size != size)
|
2010-10-30 19:57:59 -04:00
|
|
|
{
|
2010-10-31 16:02:24 -04:00
|
|
|
priv->prop_icon_size = size;
|
2010-11-02 16:15:53 -04:00
|
|
|
if (st_icon_update_icon_size (icon))
|
|
|
|
st_icon_update (icon);
|
2010-10-30 19:57:59 -04:00
|
|
|
g_object_notify (G_OBJECT (icon), "icon-size");
|
|
|
|
}
|
|
|
|
}
|
2015-03-14 18:32:01 -04:00
|
|
|
|
|
|
|
const gchar *
|
|
|
|
st_icon_get_fallback_icon_name (StIcon *icon)
|
|
|
|
{
|
|
|
|
StIconPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (ST_IS_ICON (icon), NULL);
|
|
|
|
|
|
|
|
priv = icon->priv;
|
|
|
|
|
|
|
|
if (priv->fallback_gicon && G_IS_THEMED_ICON (priv->fallback_gicon))
|
|
|
|
return g_themed_icon_get_names (G_THEMED_ICON (priv->fallback_gicon)) [0];
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
st_icon_set_fallback_icon_name (StIcon *icon,
|
|
|
|
const gchar *fallback_icon_name)
|
|
|
|
{
|
|
|
|
StIconPrivate *priv = icon->priv;
|
|
|
|
GIcon *gicon = NULL;
|
|
|
|
|
|
|
|
g_return_if_fail (ST_IS_ICON (icon));
|
|
|
|
|
|
|
|
if (fallback_icon_name != NULL)
|
|
|
|
gicon = g_themed_icon_new_with_default_fallbacks (fallback_icon_name);
|
|
|
|
|
|
|
|
if (g_icon_equal (priv->fallback_gicon, gicon)) /* do nothing */
|
|
|
|
{
|
|
|
|
if (gicon)
|
|
|
|
g_object_unref (gicon);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->fallback_gicon)
|
|
|
|
g_object_unref (priv->fallback_gicon);
|
|
|
|
|
|
|
|
priv->fallback_gicon = gicon;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (icon), "fallback-icon-name");
|
|
|
|
|
|
|
|
st_icon_update (icon);
|
|
|
|
}
|