mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-19 00:20:09 +00:00
Bug 538519 – GtkCellRendererPixbuf doesn't allow unsetting the icon
2008-06-16 Carlos Garnacho <carlos@imendio.com> Bug 538519 – GtkCellRendererPixbuf doesn't allow unsetting the icon anymore * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property): Allow again setting any of the properties to render an image back to NULL. svn path=/trunk/; revision=20395
This commit is contained in:
parent
0fc1f3aeed
commit
6afb455e5a
@ -1,3 +1,12 @@
|
|||||||
|
2008-06-16 Carlos Garnacho <carlos@imendio.com>
|
||||||
|
|
||||||
|
Bug 538519 – GtkCellRendererPixbuf doesn't allow unsetting the icon
|
||||||
|
anymore
|
||||||
|
|
||||||
|
* gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_set_property):
|
||||||
|
Allow again setting any of the properties to render an image back to
|
||||||
|
NULL.
|
||||||
|
|
||||||
2008-06-15 Matthias Clasen <mclasen@redhat.com>
|
2008-06-15 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gtk/gtkimage.c: When pixel-size is specified, use
|
* gtk/gtkimage.c: When pixel-size is specified, use
|
||||||
|
@ -332,11 +332,8 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
|||||||
switch (param_id)
|
switch (param_id)
|
||||||
{
|
{
|
||||||
case PROP_PIXBUF:
|
case PROP_PIXBUF:
|
||||||
if (g_value_get_object (value))
|
|
||||||
{
|
|
||||||
unset_image_properties (cellpixbuf);
|
unset_image_properties (cellpixbuf);
|
||||||
cellpixbuf->pixbuf = (GdkPixbuf *) g_value_dup_object (value);
|
cellpixbuf->pixbuf = (GdkPixbuf *) g_value_dup_object (value);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case PROP_PIXBUF_EXPANDER_OPEN:
|
case PROP_PIXBUF_EXPANDER_OPEN:
|
||||||
if (cellpixbuf->pixbuf_expander_open)
|
if (cellpixbuf->pixbuf_expander_open)
|
||||||
@ -349,11 +346,8 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
|||||||
cellpixbuf->pixbuf_expander_closed = (GdkPixbuf*) g_value_dup_object (value);
|
cellpixbuf->pixbuf_expander_closed = (GdkPixbuf*) g_value_dup_object (value);
|
||||||
break;
|
break;
|
||||||
case PROP_STOCK_ID:
|
case PROP_STOCK_ID:
|
||||||
if (g_value_get_string (value))
|
|
||||||
{
|
|
||||||
unset_image_properties (cellpixbuf);
|
unset_image_properties (cellpixbuf);
|
||||||
priv->stock_id = g_value_dup_string (value);
|
priv->stock_id = g_value_dup_string (value);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case PROP_STOCK_SIZE:
|
case PROP_STOCK_SIZE:
|
||||||
priv->stock_size = g_value_get_uint (value);
|
priv->stock_size = g_value_get_uint (value);
|
||||||
@ -363,21 +357,15 @@ gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
|||||||
priv->stock_detail = g_value_dup_string (value);
|
priv->stock_detail = g_value_dup_string (value);
|
||||||
break;
|
break;
|
||||||
case PROP_ICON_NAME:
|
case PROP_ICON_NAME:
|
||||||
if (g_value_get_string (value))
|
|
||||||
{
|
|
||||||
unset_image_properties (cellpixbuf);
|
unset_image_properties (cellpixbuf);
|
||||||
priv->icon_name = g_value_dup_string (value);
|
priv->icon_name = g_value_dup_string (value);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case PROP_FOLLOW_STATE:
|
case PROP_FOLLOW_STATE:
|
||||||
priv->follow_state = g_value_get_boolean (value);
|
priv->follow_state = g_value_get_boolean (value);
|
||||||
break;
|
break;
|
||||||
case PROP_GICON:
|
case PROP_GICON:
|
||||||
if (g_value_get_object (value))
|
|
||||||
{
|
|
||||||
unset_image_properties (cellpixbuf);
|
unset_image_properties (cellpixbuf);
|
||||||
priv->gicon = (GIcon *) g_value_dup_object (value);
|
priv->gicon = (GIcon *) g_value_dup_object (value);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
||||||
|
Loading…
Reference in New Issue
Block a user