2000-10-05 01:04:57 +00:00
|
|
|
/* gtkcellrendererpixbuf.c
|
|
|
|
* Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2000-10-05 01:04:57 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2018-02-08 22:39:17 +00:00
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
#include "gtkcellrendererpixbuf.h"
|
2018-02-08 22:39:17 +00:00
|
|
|
|
2011-11-30 15:30:32 +00:00
|
|
|
#include "gtkiconhelperprivate.h"
|
2005-05-18 06:13:42 +00:00
|
|
|
#include "gtkicontheme.h"
|
Adapt to GtkTreeSelection changes
2001-01-01 Havoc Pennington <hp@redhat.com>
* gtk/gtktreeview.c: Adapt to GtkTreeSelection changes
* gtk/gtktreeselection.c (_gtk_tree_selection_set_tree_view):
don't fill in tree_view->priv->selection, kind of an unexpected
side effect
* gtk/gtkcellrenderertext.c: Remove definition of _ and include
gtkintl.h
* gtk/gtkcellrenderer.c: Remove definition of _ and include
gtkintl.h
(gtk_cell_renderer_get_property): remove calls to g_value_init
* gtk/gtkcellrendererpixbuf.c: Remove definition of _ and include
gtkintl.h
* gtk/gtkcellrenderertextpixbuf.c: Remove definition of _ macro
and include gtkintl.h
(gtk_cell_renderer_text_pixbuf_class_init): remove spaces from
property names
* gtk/gtktreeselection.c (_gtk_tree_selection_new): rename, return
GtkTreeSelection
(_gtk_tree_selection_new_from_with_view): rename, return
GtkTreeSelection
(_gtk_tree_selection_set_tree_view): rename with uscore
(gtk_tree_selection_get_selected): fill in the "model" out param
first, so it gets filled in even if we return at the top of the
function
(gtk_tree_selection_real_select_all): add a comment and an else{}
to clarify this a bit
(gtk_tree_selection_real_unselect_all): add the same else{}
* gtk/gtktreeselection.h: Rename new, new_with_tree_view, and
set_tree_view to have underscore prefixes, move them to the
private header, fix return type of new_with_tree_view
(struct _GtkTreeSelection): mark struct
fields private
* gtk/gtktreemodel.c (gtk_tree_model_get_flags): return
GtkTreeModelFlags, not a guint
(gtk_tree_path_prev): return gboolean not gint
(gtk_tree_path_up): return gboolean not gint
* gtk/gtktreemodel.h (struct _GtkTreeModelIface): make get_flags
return GtkTreeModelFlags, not a guint
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_finalize): check
that child model is non-null before unrefing it
(g_value_int_compare_func): make this a qsort compare func, not
a boolean predicate
* gtk/gtktreemodelsort.h: rename gtk_tree_model_set_sort_column,
(add -umn to the end), and mark it unimplemented
(gtk_tree_model_sort_resort): remove, this wasn't implemented, and
I don't see what it's for - doesn't the model always sort itself?
(gtk_tree_model_sort_set_compare): this had the wrong signature
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_attributes):
Fix the docs to say that it destructively replaces existing
attributes (previously said that it added attributes).
(gtk_tree_view_column_set_visible): canonicalize bool before
equality testing. Also, check for realization before
hiding/showing the tree_column->window; if this window could exist
before realization, then it's busted and needs fixing, we can't
create GDK resources pre-realization. Also, remove
superfluous queue_resize(), since set_size() does that for us.
(gtk_tree_view_column_set_col_type): check realization before
using tree_column->window
* gtk/gtktreedatalist.c: fix filename in copyright notice
2001-01-01 19:01:54 +00:00
|
|
|
#include "gtkintl.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
2018-02-08 22:39:17 +00:00
|
|
|
#include "gtksnapshot.h"
|
2015-12-09 17:25:36 +00:00
|
|
|
#include "gtkstylecontextprivate.h"
|
2018-02-08 22:39:17 +00:00
|
|
|
#include "gtktypebuiltins.h"
|
|
|
|
|
2011-12-15 22:02:54 +00:00
|
|
|
#include "a11y/gtkimagecellaccessible.h"
|
2010-07-09 17:22:23 +00:00
|
|
|
|
2018-02-08 22:39:17 +00:00
|
|
|
#include <cairo-gobject.h>
|
|
|
|
#include <stdlib.h>
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2011-04-11 21:47:18 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkcellrendererpixbuf
|
|
|
|
* @Short_description: Renders a pixbuf in a cell
|
|
|
|
* @Title: GtkCellRendererPixbuf
|
|
|
|
*
|
|
|
|
* A #GtkCellRendererPixbuf can be used to render an image in a cell. It allows
|
|
|
|
* to render either a given #GdkPixbuf (set via the
|
2013-06-25 03:47:52 +00:00
|
|
|
* #GtkCellRendererPixbuf:pixbuf property) or a named icon (set via the
|
|
|
|
* #GtkCellRendererPixbuf:icon-name property).
|
2011-04-11 21:47:18 +00:00
|
|
|
*
|
|
|
|
* To support the tree view, #GtkCellRendererPixbuf also supports rendering two
|
|
|
|
* alternative pixbufs, when the #GtkCellRenderer:is-expander property is %TRUE.
|
|
|
|
* If the #GtkCellRenderer:is-expanded property is %TRUE and the
|
|
|
|
* #GtkCellRendererPixbuf:pixbuf-expander-open property is set to a pixbuf, it
|
|
|
|
* renders that pixbuf, if the #GtkCellRenderer:is-expanded property is %FALSE
|
|
|
|
* and the #GtkCellRendererPixbuf:pixbuf-expander-closed property is set to a
|
|
|
|
* pixbuf, it renders that one.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2000-12-12 07:32:32 +00:00
|
|
|
static void gtk_cell_renderer_pixbuf_get_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
GValue *value,
|
2001-03-07 14:49:21 +00:00
|
|
|
GParamSpec *pspec);
|
2000-12-12 07:32:32 +00:00
|
|
|
static void gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
const GValue *value,
|
2001-03-07 14:49:21 +00:00
|
|
|
GParamSpec *pspec);
|
2000-10-05 01:04:57 +00:00
|
|
|
static void gtk_cell_renderer_pixbuf_get_size (GtkCellRenderer *cell,
|
|
|
|
GtkWidget *widget,
|
2010-10-04 14:22:09 +00:00
|
|
|
const GdkRectangle *rectangle,
|
2001-03-15 23:21:39 +00:00
|
|
|
gint *x_offset,
|
|
|
|
gint *y_offset,
|
2000-10-05 01:04:57 +00:00
|
|
|
gint *width,
|
|
|
|
gint *height);
|
2016-12-23 09:50:04 +00:00
|
|
|
static void gtk_cell_renderer_pixbuf_snapshot (GtkCellRenderer *cell,
|
|
|
|
GtkSnapshot *snapshot,
|
2000-10-05 01:04:57 +00:00
|
|
|
GtkWidget *widget,
|
2010-08-21 11:18:14 +00:00
|
|
|
const GdkRectangle *background_area,
|
|
|
|
const GdkRectangle *cell_area,
|
Behaviour change, apply changes if the entry of the editable gets a focus
Tue Oct 15 00:53:14 2002 Kristian Rietveld <kris@gtk.org>
Behaviour change, apply changes if the entry of the editable gets
a focus out event (#82405).
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_focus_out_event):
new function,
(gtk_cell_renderer_text_start_editing): stop editing and apply
changes on focus-out.
Tue Oct 15 00:47:35 2002 Kristian Rietveld <kris@gtk.org>
Fixes an *evil* GtkTreeModelSort bug, #93629.
* gtk/gtktreemodel.c (release_row_references): return if the
refs->list is NULL.
* gtk/gtktreemodelsort.c (gtk_tree_model_sort_row_changed): if we
are swapping two rows (re-insertion on row_changed), also *emit*
a rows_reordered signal. oops.
Tue Oct 15 00:45:03 2002 Kristian Rietveld <kris@gtk.org>
* gtk/gtkliststore.c (gtk_list_store_remove_silently): free
the actual link after the node has been removed (#92014).
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_column_finalize):
free the cell_list and the child if the exists (#92014).
Tue Oct 15 00:40:25 2002 Kristian Rietveld <kris@gtk.org>
Don't accept drops if the model has been sorted, #93758)
* gtk/gtkliststore.c (gtk_list_store_row_drop_possible): return
FALSE if the list has been sorted.
* gtk/gtktreestore.c (gtk_tree_store_row_drop_possible): check
if drag_dest is a TreeStore, return FALSE if the tree has been
sorted.
Tue Oct 15 00:33:59 2002 Kristian Rietveld <kris@gtk.org>
Compiler warning fixage, (#85858, #85859, #85860, #85872)
* gtk/gtkcellrendererpixbuf (gtk_cell_renderer_pixbuf_render):
s/guint/GtkCellRendererState/.
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_render):
ditto.
* gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render),
(gtk_cell_renderer_toggle_activate): ditto.
* gtk/gtkliststore.c (gtk_list_store_get_flags): a
s/guint/GtkTreeModelFlags/ on the return type.
2002-10-14 22:50:18 +00:00
|
|
|
GtkCellRendererState flags);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
enum {
|
2008-05-19 14:15:34 +00:00
|
|
|
PROP_0,
|
|
|
|
PROP_PIXBUF,
|
|
|
|
PROP_PIXBUF_EXPANDER_OPEN,
|
|
|
|
PROP_PIXBUF_EXPANDER_CLOSED,
|
2017-11-04 18:05:52 +00:00
|
|
|
PROP_TEXTURE,
|
2017-12-01 15:26:51 +00:00
|
|
|
PROP_ICON_SIZE,
|
2008-06-15 04:54:20 +00:00
|
|
|
PROP_ICON_NAME,
|
|
|
|
PROP_GICON
|
2000-10-05 01:04:57 +00:00
|
|
|
};
|
|
|
|
|
2019-05-27 00:44:07 +00:00
|
|
|
typedef struct _GtkCellRendererPixbufPrivate GtkCellRendererPixbufPrivate;
|
|
|
|
typedef struct _GtkCellRendererPixbufClass GtkCellRendererPixbufClass;
|
|
|
|
|
|
|
|
struct _GtkCellRendererPixbuf
|
|
|
|
{
|
|
|
|
GtkCellRenderer parent;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkCellRendererPixbufClass
|
|
|
|
{
|
|
|
|
GtkCellRendererClass parent_class;
|
|
|
|
};
|
2002-04-26 19:45:22 +00:00
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
struct _GtkCellRendererPixbufPrivate
|
2002-04-26 19:45:22 +00:00
|
|
|
{
|
2015-12-08 10:27:37 +00:00
|
|
|
GtkImageDefinition *image_def;
|
|
|
|
GtkIconSize icon_size;
|
2011-11-30 15:30:32 +00:00
|
|
|
|
2010-06-01 17:04:03 +00:00
|
|
|
GdkPixbuf *pixbuf_expander_open;
|
|
|
|
GdkPixbuf *pixbuf_expander_closed;
|
2019-05-08 15:04:25 +00:00
|
|
|
GdkTexture *texture_expander_open;
|
|
|
|
GdkTexture *texture_expander_closed;
|
2002-04-26 19:45:22 +00:00
|
|
|
};
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkCellRendererPixbuf, gtk_cell_renderer_pixbuf, GTK_TYPE_CELL_RENDERER)
|
2010-06-01 17:04:03 +00:00
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
static void
|
|
|
|
gtk_cell_renderer_pixbuf_init (GtkCellRendererPixbuf *cellpixbuf)
|
|
|
|
{
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2013-06-27 19:02:52 +00:00
|
|
|
|
2015-12-08 10:27:37 +00:00
|
|
|
priv->image_def = gtk_image_definition_new_empty ();
|
2011-11-30 15:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_cell_renderer_pixbuf_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkCellRendererPixbuf *cellpixbuf = GTK_CELL_RENDERER_PIXBUF (object);
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2002-04-26 19:45:22 +00:00
|
|
|
|
2015-12-08 10:27:37 +00:00
|
|
|
gtk_image_definition_unref (priv->image_def);
|
2011-11-30 15:30:32 +00:00
|
|
|
|
2019-05-08 15:04:25 +00:00
|
|
|
g_clear_object (&priv->pixbuf_expander_open);
|
|
|
|
g_clear_object (&priv->pixbuf_expander_closed);
|
|
|
|
g_clear_object (&priv->texture_expander_open);
|
|
|
|
g_clear_object (&priv->texture_expander_closed);
|
2011-11-30 15:30:32 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_cell_renderer_pixbuf_parent_class)->finalize (object);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_cell_renderer_pixbuf_class_init (GtkCellRendererPixbufClass *class)
|
|
|
|
{
|
2002-10-07 01:38:40 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
GtkCellRendererClass *cell_class = GTK_CELL_RENDERER_CLASS (class);
|
|
|
|
|
|
|
|
object_class->finalize = gtk_cell_renderer_pixbuf_finalize;
|
|
|
|
|
|
|
|
object_class->get_property = gtk_cell_renderer_pixbuf_get_property;
|
|
|
|
object_class->set_property = gtk_cell_renderer_pixbuf_set_property;
|
|
|
|
|
|
|
|
cell_class->get_size = gtk_cell_renderer_pixbuf_get_size;
|
2016-12-23 09:50:04 +00:00
|
|
|
cell_class->snapshot = gtk_cell_renderer_pixbuf_snapshot;
|
2002-10-07 01:38:40 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_PIXBUF,
|
|
|
|
g_param_spec_object ("pixbuf",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Pixbuf Object"),
|
|
|
|
P_("The pixbuf to render"),
|
2002-10-07 01:38:40 +00:00
|
|
|
GDK_TYPE_PIXBUF,
|
2018-03-14 04:21:56 +00:00
|
|
|
GTK_PARAM_WRITABLE));
|
2002-10-07 01:38:40 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_PIXBUF_EXPANDER_OPEN,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_object ("pixbuf-expander-open",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Pixbuf Expander Open"),
|
|
|
|
P_("Pixbuf for open expander"),
|
2002-10-07 01:38:40 +00:00
|
|
|
GDK_TYPE_PIXBUF,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2002-10-07 01:38:40 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_PIXBUF_EXPANDER_CLOSED,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_object ("pixbuf-expander-closed",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Pixbuf Expander Closed"),
|
|
|
|
P_("Pixbuf for closed expander"),
|
2002-10-07 01:38:40 +00:00
|
|
|
GDK_TYPE_PIXBUF,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2002-10-07 01:38:40 +00:00
|
|
|
|
2017-11-04 18:05:52 +00:00
|
|
|
/**
|
|
|
|
* GtkCellRendererPixbuf:texture:
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_TEXTURE,
|
|
|
|
g_param_spec_object ("texture",
|
|
|
|
P_("Texture"),
|
|
|
|
P_("The texture to render"),
|
|
|
|
GDK_TYPE_TEXTURE,
|
|
|
|
GTK_PARAM_READWRITE));
|
|
|
|
|
2017-11-22 18:57:48 +00:00
|
|
|
/**
|
2017-12-01 15:26:51 +00:00
|
|
|
* GtkCellRendererPixbuf:icon-size:
|
2017-11-22 18:57:48 +00:00
|
|
|
*
|
|
|
|
* The #GtkIconSize value that specifies the size of the rendered icon.
|
|
|
|
*/
|
2002-10-07 01:38:40 +00:00
|
|
|
g_object_class_install_property (object_class,
|
2017-12-01 15:26:51 +00:00
|
|
|
PROP_ICON_SIZE,
|
|
|
|
g_param_spec_enum ("icon-size",
|
|
|
|
P_("Icon Size"),
|
2004-02-14 23:58:50 +00:00
|
|
|
P_("The GtkIconSize value that specifies the size of the rendered icon"),
|
2017-12-01 15:26:51 +00:00
|
|
|
GTK_TYPE_ICON_SIZE,
|
2017-11-15 02:14:47 +00:00
|
|
|
GTK_ICON_SIZE_INHERIT,
|
2017-12-27 01:03:19 +00:00
|
|
|
GTK_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY));
|
2002-10-07 01:38:40 +00:00
|
|
|
|
2005-05-18 06:13:42 +00:00
|
|
|
/**
|
|
|
|
* GtkCellRendererPixbuf:icon-name:
|
|
|
|
*
|
|
|
|
* The name of the themed icon to display.
|
2017-12-01 15:26:51 +00:00
|
|
|
* This property only has an effect if not overridden by the "pixbuf" property.
|
2005-05-18 06:13:42 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_ICON_NAME,
|
|
|
|
g_param_spec_string ("icon-name",
|
|
|
|
P_("Icon Name"),
|
|
|
|
P_("The name of the icon from the icon theme"),
|
|
|
|
NULL,
|
|
|
|
GTK_PARAM_READWRITE));
|
|
|
|
|
2008-06-15 04:54:20 +00:00
|
|
|
/**
|
|
|
|
* GtkCellRendererPixbuf:gicon:
|
|
|
|
*
|
|
|
|
* The GIcon representing the icon to display.
|
|
|
|
* If the icon theme is changed, the image will be updated
|
|
|
|
* automatically.
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_GICON,
|
|
|
|
g_param_spec_object ("gicon",
|
|
|
|
P_("Icon"),
|
|
|
|
P_("The GIcon being displayed"),
|
|
|
|
G_TYPE_ICON,
|
|
|
|
GTK_PARAM_READWRITE));
|
|
|
|
|
|
|
|
|
2005-01-20 19:12:49 +00:00
|
|
|
|
2013-02-25 20:41:30 +00:00
|
|
|
gtk_cell_renderer_class_set_accessible_type (cell_class, GTK_TYPE_IMAGE_CELL_ACCESSIBLE);
|
2002-04-22 17:22:03 +00:00
|
|
|
}
|
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
static void
|
2000-12-12 07:32:32 +00:00
|
|
|
gtk_cell_renderer_pixbuf_get_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
GValue *value,
|
2001-03-07 14:49:21 +00:00
|
|
|
GParamSpec *pspec)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-12-12 07:32:32 +00:00
|
|
|
GtkCellRendererPixbuf *cellpixbuf = GTK_CELL_RENDERER_PIXBUF (object);
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
Migrating all cell renderers to use the new instance private data
Thu Dec 18 00:57:18 2003 Kristian Rietveld <kris@gtk.org>
Migrating all cell renderers to use the new instance private data
construction.
* gtk/gtktreeprivate.h: remove GtkCellRendererInfo, as it is no
longer being used.
* gtk/gtkcellrenderer.c (gtk_cell_renderer_init),
(gtk_cell_renderer_class_init), (gtk_cell_renderer_get_property),
(set_cell_bg_color), (gtk_cell_renderer_render): remove old
GtkCellRendererInfo handling, migrate to instance private data.
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_editing_done),
(gtk_cell_renderer_text_start_editing): moved focus_out_id
from GtkCellRendererInfo to text renderer private data.
* gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_init),
(gtk_cell_renderer_pixbuf_class_init),
(gtk_cell_renderer_pixbuf_finalize),
(gtk_cell_renderer_pixbuf_get_property),
(gtk_cell_renderer_pixbuf_set_property),
(gtk_cell_renderer_pixbuf_create_stock_pixbuf),
(gtk_cell_renderer_pixbuf_get_size), (gtk_cell_renderer_pixbuf_render):
migrate to instance private data.
* gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_class_init),
(gtk_cell_renderer_toggle_get_property),
(gtk_cell_renderer_toggle_set_property),
(gtk_cell_renderer_toggle_render): migrate to instance private data.
2003-12-18 00:06:43 +00:00
|
|
|
|
2000-12-12 07:32:32 +00:00
|
|
|
switch (param_id)
|
|
|
|
{
|
2001-08-19 04:19:56 +00:00
|
|
|
case PROP_PIXBUF_EXPANDER_OPEN:
|
2010-06-01 17:04:03 +00:00
|
|
|
g_value_set_object (value, priv->pixbuf_expander_open);
|
2001-08-19 04:19:56 +00:00
|
|
|
break;
|
|
|
|
case PROP_PIXBUF_EXPANDER_CLOSED:
|
2010-06-01 17:04:03 +00:00
|
|
|
g_value_set_object (value, priv->pixbuf_expander_closed);
|
2001-08-19 04:19:56 +00:00
|
|
|
break;
|
2017-11-04 18:05:52 +00:00
|
|
|
case PROP_TEXTURE:
|
2018-03-16 03:50:26 +00:00
|
|
|
g_value_set_object (value, gtk_image_definition_get_paintable (priv->image_def));
|
2017-11-04 18:05:52 +00:00
|
|
|
break;
|
2017-12-01 15:26:51 +00:00
|
|
|
case PROP_ICON_SIZE:
|
|
|
|
g_value_set_enum (value, priv->icon_size);
|
2002-04-22 17:22:03 +00:00
|
|
|
break;
|
2005-05-18 06:13:42 +00:00
|
|
|
case PROP_ICON_NAME:
|
2015-12-08 10:27:37 +00:00
|
|
|
g_value_set_string (value, gtk_image_definition_get_icon_name (priv->image_def));
|
2005-05-18 06:13:42 +00:00
|
|
|
break;
|
2008-06-15 04:54:20 +00:00
|
|
|
case PROP_GICON:
|
2015-12-08 10:27:37 +00:00
|
|
|
g_value_set_object (value, gtk_image_definition_get_gicon (priv->image_def));
|
2008-06-15 04:54:20 +00:00
|
|
|
break;
|
2000-12-12 07:32:32 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2011-11-30 15:30:32 +00:00
|
|
|
static void
|
2015-12-08 10:27:37 +00:00
|
|
|
notify_storage_type (GtkCellRendererPixbuf *cellpixbuf,
|
|
|
|
GtkImageType storage_type)
|
2011-11-30 15:30:32 +00:00
|
|
|
{
|
2015-12-08 10:27:37 +00:00
|
|
|
switch (storage_type)
|
2011-11-30 15:30:32 +00:00
|
|
|
{
|
2018-02-16 09:50:49 +00:00
|
|
|
case GTK_IMAGE_PAINTABLE:
|
2018-03-16 03:50:26 +00:00
|
|
|
g_object_notify (G_OBJECT (cellpixbuf), "texture");
|
2018-02-16 09:50:49 +00:00
|
|
|
break;
|
2011-11-30 15:30:32 +00:00
|
|
|
case GTK_IMAGE_ICON_NAME:
|
|
|
|
g_object_notify (G_OBJECT (cellpixbuf), "icon-name");
|
|
|
|
break;
|
|
|
|
case GTK_IMAGE_GICON:
|
|
|
|
g_object_notify (G_OBJECT (cellpixbuf), "gicon");
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-08 10:27:37 +00:00
|
|
|
g_assert_not_reached ();
|
|
|
|
case GTK_IMAGE_EMPTY:
|
2011-11-30 15:30:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-08 10:27:37 +00:00
|
|
|
static void
|
|
|
|
take_image_definition (GtkCellRendererPixbuf *cellpixbuf,
|
|
|
|
GtkImageDefinition *def)
|
|
|
|
{
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2015-12-08 10:27:37 +00:00
|
|
|
GtkImageType old_storage_type, new_storage_type;
|
|
|
|
|
|
|
|
if (def == NULL)
|
|
|
|
def = gtk_image_definition_new_empty ();
|
|
|
|
|
|
|
|
old_storage_type = gtk_image_definition_get_storage_type (priv->image_def);
|
|
|
|
new_storage_type = gtk_image_definition_get_storage_type (def);
|
|
|
|
|
|
|
|
if (new_storage_type != old_storage_type)
|
|
|
|
notify_storage_type (cellpixbuf, old_storage_type);
|
|
|
|
|
|
|
|
gtk_image_definition_unref (priv->image_def);
|
|
|
|
priv->image_def = def;
|
|
|
|
}
|
|
|
|
|
2017-12-27 01:03:19 +00:00
|
|
|
static void
|
|
|
|
gtk_cell_renderer_pixbuf_set_icon_size (GtkCellRendererPixbuf *cellpixbuf,
|
|
|
|
GtkIconSize icon_size)
|
|
|
|
{
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2017-12-27 01:03:19 +00:00
|
|
|
|
|
|
|
if (priv->icon_size == icon_size)
|
|
|
|
return;
|
|
|
|
|
|
|
|
priv->icon_size = icon_size;
|
|
|
|
g_object_notify (G_OBJECT (cellpixbuf), "icon-size");
|
|
|
|
}
|
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
static void
|
2000-12-12 07:32:32 +00:00
|
|
|
gtk_cell_renderer_pixbuf_set_property (GObject *object,
|
|
|
|
guint param_id,
|
|
|
|
const GValue *value,
|
2001-03-07 14:49:21 +00:00
|
|
|
GParamSpec *pspec)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-12-12 07:32:32 +00:00
|
|
|
GtkCellRendererPixbuf *cellpixbuf = GTK_CELL_RENDERER_PIXBUF (object);
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2018-03-14 04:21:56 +00:00
|
|
|
GdkTexture *texture;
|
2017-10-23 13:03:31 +00:00
|
|
|
GdkPixbuf *pixbuf;
|
Migrating all cell renderers to use the new instance private data
Thu Dec 18 00:57:18 2003 Kristian Rietveld <kris@gtk.org>
Migrating all cell renderers to use the new instance private data
construction.
* gtk/gtktreeprivate.h: remove GtkCellRendererInfo, as it is no
longer being used.
* gtk/gtkcellrenderer.c (gtk_cell_renderer_init),
(gtk_cell_renderer_class_init), (gtk_cell_renderer_get_property),
(set_cell_bg_color), (gtk_cell_renderer_render): remove old
GtkCellRendererInfo handling, migrate to instance private data.
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_editing_done),
(gtk_cell_renderer_text_start_editing): moved focus_out_id
from GtkCellRendererInfo to text renderer private data.
* gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_init),
(gtk_cell_renderer_pixbuf_class_init),
(gtk_cell_renderer_pixbuf_finalize),
(gtk_cell_renderer_pixbuf_get_property),
(gtk_cell_renderer_pixbuf_set_property),
(gtk_cell_renderer_pixbuf_create_stock_pixbuf),
(gtk_cell_renderer_pixbuf_get_size), (gtk_cell_renderer_pixbuf_render):
migrate to instance private data.
* gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_class_init),
(gtk_cell_renderer_toggle_get_property),
(gtk_cell_renderer_toggle_set_property),
(gtk_cell_renderer_toggle_render): migrate to instance private data.
2003-12-18 00:06:43 +00:00
|
|
|
|
2000-12-12 07:32:32 +00:00
|
|
|
switch (param_id)
|
|
|
|
{
|
|
|
|
case PROP_PIXBUF:
|
2017-10-23 13:03:31 +00:00
|
|
|
pixbuf = g_value_get_object (value);
|
|
|
|
if (pixbuf)
|
2018-03-14 04:21:56 +00:00
|
|
|
texture = gdk_texture_new_for_pixbuf (pixbuf);
|
|
|
|
else
|
|
|
|
texture = NULL;
|
2018-03-16 03:50:26 +00:00
|
|
|
take_image_definition (cellpixbuf, gtk_image_definition_new_paintable (GDK_PAINTABLE (texture)));
|
2000-12-12 07:32:32 +00:00
|
|
|
break;
|
2001-08-19 04:19:56 +00:00
|
|
|
case PROP_PIXBUF_EXPANDER_OPEN:
|
2019-05-08 15:04:25 +00:00
|
|
|
g_clear_object (&priv->pixbuf_expander_open);
|
|
|
|
g_clear_object (&priv->texture_expander_open);
|
2010-06-01 17:04:03 +00:00
|
|
|
priv->pixbuf_expander_open = (GdkPixbuf*) g_value_dup_object (value);
|
2019-05-08 15:04:25 +00:00
|
|
|
priv->texture_expander_open = gdk_texture_new_for_pixbuf (priv->pixbuf_expander_open);
|
2001-08-19 04:19:56 +00:00
|
|
|
break;
|
|
|
|
case PROP_PIXBUF_EXPANDER_CLOSED:
|
2019-05-08 15:04:25 +00:00
|
|
|
g_clear_object (&priv->pixbuf_expander_closed);
|
|
|
|
g_clear_object (&priv->texture_expander_closed);
|
2010-06-01 17:04:03 +00:00
|
|
|
priv->pixbuf_expander_closed = (GdkPixbuf*) g_value_dup_object (value);
|
2019-05-08 15:04:25 +00:00
|
|
|
priv->texture_expander_closed = gdk_texture_new_for_pixbuf (priv->pixbuf_expander_open);
|
2013-06-26 14:34:53 +00:00
|
|
|
break;
|
2017-11-04 18:05:52 +00:00
|
|
|
case PROP_TEXTURE:
|
2018-03-16 03:50:26 +00:00
|
|
|
take_image_definition (cellpixbuf, gtk_image_definition_new_paintable (g_value_get_object (value)));
|
2017-11-04 18:05:52 +00:00
|
|
|
break;
|
2017-12-01 15:26:51 +00:00
|
|
|
case PROP_ICON_SIZE:
|
2017-12-27 01:03:19 +00:00
|
|
|
gtk_cell_renderer_pixbuf_set_icon_size (cellpixbuf, g_value_get_enum (value));
|
2002-04-22 17:22:03 +00:00
|
|
|
break;
|
2005-05-18 06:13:42 +00:00
|
|
|
case PROP_ICON_NAME:
|
2015-12-08 10:27:37 +00:00
|
|
|
take_image_definition (cellpixbuf, gtk_image_definition_new_icon_name (g_value_get_string (value)));
|
2005-05-18 06:13:42 +00:00
|
|
|
break;
|
2008-06-15 04:54:20 +00:00
|
|
|
case PROP_GICON:
|
2015-12-08 10:27:37 +00:00
|
|
|
take_image_definition (cellpixbuf, gtk_image_definition_new_gicon (g_value_get_object (value)));
|
2008-06-15 04:54:20 +00:00
|
|
|
break;
|
2000-12-12 07:32:32 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
/**
|
|
|
|
* gtk_cell_renderer_pixbuf_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GtkCellRendererPixbuf. Adjust rendering
|
|
|
|
* parameters using object properties. Object properties can be set
|
|
|
|
* globally (with g_object_set()). Also, with #GtkTreeViewColumn, you
|
|
|
|
* can bind a property to a value in a #GtkTreeModel. For example, you
|
2014-02-05 18:07:34 +00:00
|
|
|
* can bind the “pixbuf” property on the cell renderer to a pixbuf value
|
2001-02-03 01:09:41 +00:00
|
|
|
* in the model, thus rendering a different image in each row of the
|
|
|
|
* #GtkTreeView.
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
* Returns: the new cell renderer
|
2001-02-03 01:09:41 +00:00
|
|
|
**/
|
2000-10-05 01:04:57 +00:00
|
|
|
GtkCellRenderer *
|
|
|
|
gtk_cell_renderer_pixbuf_new (void)
|
|
|
|
{
|
2002-10-07 01:38:40 +00:00
|
|
|
return g_object_new (GTK_TYPE_CELL_RENDERER_PIXBUF, NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
static GtkIconHelper *
|
2019-05-27 00:46:38 +00:00
|
|
|
create_icon_helper (GtkCellRendererPixbuf *cellpixbuf,
|
2015-12-08 14:39:10 +00:00
|
|
|
GtkWidget *widget)
|
2015-12-08 10:27:37 +00:00
|
|
|
{
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2018-03-14 00:56:30 +00:00
|
|
|
GtkIconHelper *icon_helper;
|
2015-12-08 10:27:37 +00:00
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
icon_helper = gtk_icon_helper_new (gtk_style_context_get_node (gtk_widget_get_style_context (widget)),
|
|
|
|
widget);
|
2019-04-08 13:52:49 +00:00
|
|
|
_gtk_icon_helper_set_use_fallback (icon_helper, TRUE);
|
2017-09-30 15:26:42 +00:00
|
|
|
_gtk_icon_helper_set_definition (icon_helper, priv->image_def);
|
2018-03-14 00:56:30 +00:00
|
|
|
|
|
|
|
return icon_helper;
|
2015-12-08 10:27:37 +00:00
|
|
|
}
|
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
static void
|
2010-10-04 14:22:09 +00:00
|
|
|
gtk_cell_renderer_pixbuf_get_size (GtkCellRenderer *cell,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
gint *x_offset,
|
|
|
|
gint *y_offset,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbuf *cellpixbuf = GTK_CELL_RENDERER_PIXBUF (cell);
|
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2018-06-09 22:38:06 +00:00
|
|
|
gint pixbuf_width;
|
|
|
|
gint pixbuf_height;
|
2001-03-15 23:21:39 +00:00
|
|
|
gint calc_width;
|
|
|
|
gint calc_height;
|
2010-05-30 20:38:33 +00:00
|
|
|
gint xpad, ypad;
|
2012-07-11 15:22:20 +00:00
|
|
|
GtkStyleContext *context;
|
2018-03-14 00:56:30 +00:00
|
|
|
GtkIconHelper *icon_helper;
|
2012-07-11 15:22:20 +00:00
|
|
|
|
|
|
|
context = gtk_widget_get_style_context (widget);
|
|
|
|
gtk_style_context_save (context);
|
|
|
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_IMAGE);
|
2017-11-15 03:29:31 +00:00
|
|
|
gtk_icon_size_set_style_classes (gtk_style_context_get_node (context), priv->icon_size);
|
2018-03-14 00:56:30 +00:00
|
|
|
icon_helper = create_icon_helper (cellpixbuf, widget);
|
2001-03-15 23:21:39 +00:00
|
|
|
|
2018-06-09 22:38:06 +00:00
|
|
|
if (_gtk_icon_helper_get_is_empty (icon_helper))
|
|
|
|
pixbuf_width = pixbuf_height = 0;
|
|
|
|
else if (gtk_image_definition_get_paintable (priv->image_def))
|
|
|
|
{
|
|
|
|
GdkPaintable *paintable = gtk_image_definition_get_paintable (priv->image_def);
|
|
|
|
pixbuf_width = gdk_paintable_get_intrinsic_width (paintable);
|
|
|
|
pixbuf_height = gdk_paintable_get_intrinsic_height (paintable);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pixbuf_width = pixbuf_height = gtk_icon_helper_get_size (icon_helper);
|
2011-11-30 15:30:32 +00:00
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
g_object_unref (icon_helper);
|
2012-07-11 15:22:20 +00:00
|
|
|
gtk_style_context_restore (context);
|
|
|
|
|
2010-06-01 17:04:03 +00:00
|
|
|
if (priv->pixbuf_expander_open)
|
2001-08-19 04:19:56 +00:00
|
|
|
{
|
2010-06-01 17:04:03 +00:00
|
|
|
pixbuf_width = MAX (pixbuf_width, gdk_pixbuf_get_width (priv->pixbuf_expander_open));
|
|
|
|
pixbuf_height = MAX (pixbuf_height, gdk_pixbuf_get_height (priv->pixbuf_expander_open));
|
2001-08-19 04:19:56 +00:00
|
|
|
}
|
2010-06-01 17:04:03 +00:00
|
|
|
if (priv->pixbuf_expander_closed)
|
2001-08-19 04:19:56 +00:00
|
|
|
{
|
2010-06-01 17:04:03 +00:00
|
|
|
pixbuf_width = MAX (pixbuf_width, gdk_pixbuf_get_width (priv->pixbuf_expander_closed));
|
|
|
|
pixbuf_height = MAX (pixbuf_height, gdk_pixbuf_get_height (priv->pixbuf_expander_closed));
|
2001-08-19 04:19:56 +00:00
|
|
|
}
|
2010-05-30 20:38:33 +00:00
|
|
|
|
|
|
|
gtk_cell_renderer_get_padding (cell, &xpad, &ypad);
|
|
|
|
calc_width = (gint) xpad * 2 + pixbuf_width;
|
|
|
|
calc_height = (gint) ypad * 2 + pixbuf_height;
|
2001-03-15 23:21:39 +00:00
|
|
|
|
2001-08-19 04:19:56 +00:00
|
|
|
if (cell_area && pixbuf_width > 0 && pixbuf_height > 0)
|
2001-03-15 23:21:39 +00:00
|
|
|
{
|
2010-05-30 20:38:33 +00:00
|
|
|
gfloat xalign, yalign;
|
|
|
|
|
|
|
|
gtk_cell_renderer_get_alignment (cell, &xalign, &yalign);
|
2001-03-15 23:21:39 +00:00
|
|
|
if (x_offset)
|
|
|
|
{
|
2003-03-13 12:24:20 +00:00
|
|
|
*x_offset = (((gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) ?
|
2010-05-30 20:38:33 +00:00
|
|
|
(1.0 - xalign) : xalign) *
|
2006-12-03 20:02:04 +00:00
|
|
|
(cell_area->width - calc_width));
|
|
|
|
*x_offset = MAX (*x_offset, 0);
|
2001-03-15 23:21:39 +00:00
|
|
|
}
|
|
|
|
if (y_offset)
|
|
|
|
{
|
2010-05-30 20:38:33 +00:00
|
|
|
*y_offset = (yalign *
|
2006-12-03 20:02:04 +00:00
|
|
|
(cell_area->height - calc_height));
|
|
|
|
*y_offset = MAX (*y_offset, 0);
|
2001-03-15 23:21:39 +00:00
|
|
|
}
|
|
|
|
}
|
2006-12-03 20:02:04 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x_offset) *x_offset = 0;
|
|
|
|
if (y_offset) *y_offset = 0;
|
|
|
|
}
|
2001-03-15 23:21:39 +00:00
|
|
|
|
2002-11-03 00:26:35 +00:00
|
|
|
if (width)
|
2001-03-15 23:21:39 +00:00
|
|
|
*width = calc_width;
|
2001-01-09 17:45:34 +00:00
|
|
|
|
|
|
|
if (height)
|
2001-03-15 23:21:39 +00:00
|
|
|
*height = calc_height;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-12-23 09:50:04 +00:00
|
|
|
gtk_cell_renderer_pixbuf_snapshot (GtkCellRenderer *cell,
|
|
|
|
GtkSnapshot *snapshot,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const GdkRectangle *background_area,
|
|
|
|
const GdkRectangle *cell_area,
|
|
|
|
GtkCellRendererState flags)
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
{
|
2019-05-27 00:46:38 +00:00
|
|
|
GtkCellRendererPixbuf *cellpixbuf = GTK_CELL_RENDERER_PIXBUF (cell);
|
|
|
|
GtkCellRendererPixbufPrivate *priv = gtk_cell_renderer_pixbuf_get_instance_private (cellpixbuf);
|
2011-01-12 20:29:11 +00:00
|
|
|
GtkStyleContext *context;
|
2001-01-09 17:45:34 +00:00
|
|
|
GdkRectangle pix_rect;
|
2010-05-30 20:38:33 +00:00
|
|
|
gboolean is_expander;
|
|
|
|
gint xpad, ypad;
|
2018-03-14 00:56:30 +00:00
|
|
|
GtkIconHelper *icon_helper;
|
2001-01-09 17:45:34 +00:00
|
|
|
|
2010-08-21 11:18:14 +00:00
|
|
|
gtk_cell_renderer_pixbuf_get_size (cell, widget, (GdkRectangle *) cell_area,
|
2011-06-10 02:56:56 +00:00
|
|
|
&pix_rect.x,
|
|
|
|
&pix_rect.y,
|
|
|
|
&pix_rect.width,
|
|
|
|
&pix_rect.height);
|
2002-04-22 17:22:03 +00:00
|
|
|
|
2010-05-30 20:38:33 +00:00
|
|
|
gtk_cell_renderer_get_padding (cell, &xpad, &ypad);
|
2011-06-10 02:56:56 +00:00
|
|
|
pix_rect.x += cell_area->x + xpad;
|
|
|
|
pix_rect.y += cell_area->y + ypad;
|
|
|
|
pix_rect.width -= xpad * 2;
|
|
|
|
pix_rect.height -= ypad * 2;
|
2002-04-26 19:45:22 +00:00
|
|
|
|
2019-05-08 15:02:14 +00:00
|
|
|
if (!gdk_rectangle_intersect (cell_area, &pix_rect, NULL))
|
2005-01-20 19:12:49 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-12 20:29:11 +00:00
|
|
|
context = gtk_widget_get_style_context (widget);
|
2011-05-31 20:05:31 +00:00
|
|
|
gtk_style_context_save (context);
|
|
|
|
|
2012-07-11 15:22:20 +00:00
|
|
|
gtk_style_context_add_class (context, GTK_STYLE_CLASS_IMAGE);
|
2017-11-15 03:29:31 +00:00
|
|
|
gtk_icon_size_set_style_classes (gtk_style_context_get_node (context), priv->icon_size);
|
2011-11-30 15:30:32 +00:00
|
|
|
|
2019-08-11 06:53:10 +00:00
|
|
|
is_expander = gtk_cell_renderer_get_is_expander (cell);
|
2011-11-30 15:30:32 +00:00
|
|
|
if (is_expander)
|
2011-05-31 20:05:31 +00:00
|
|
|
{
|
2019-08-11 06:53:10 +00:00
|
|
|
gboolean is_expanded = gtk_cell_renderer_get_is_expanded (cell);;
|
2011-01-12 20:29:11 +00:00
|
|
|
|
2011-11-30 15:30:32 +00:00
|
|
|
if (is_expanded && priv->pixbuf_expander_open != NULL)
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
icon_helper = gtk_icon_helper_new (gtk_style_context_get_node (context), widget);
|
2019-05-08 15:04:25 +00:00
|
|
|
_gtk_icon_helper_set_paintable (icon_helper, GDK_PAINTABLE (priv->texture_expander_open));
|
2011-11-30 15:30:32 +00:00
|
|
|
}
|
|
|
|
else if (!is_expanded && priv->pixbuf_expander_closed != NULL)
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
icon_helper = gtk_icon_helper_new (gtk_style_context_get_node (context), widget);
|
2019-05-08 15:04:25 +00:00
|
|
|
_gtk_icon_helper_set_paintable (icon_helper, GDK_PAINTABLE (priv->texture_expander_closed));
|
2017-09-30 15:26:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
icon_helper = create_icon_helper (cellpixbuf, widget);
|
2011-11-30 15:30:32 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-30 15:26:42 +00:00
|
|
|
else
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
icon_helper = create_icon_helper (cellpixbuf, widget);
|
2017-09-30 15:26:42 +00:00
|
|
|
}
|
2011-11-30 16:27:24 +00:00
|
|
|
|
2019-02-21 04:34:12 +00:00
|
|
|
gtk_snapshot_save (snapshot);
|
|
|
|
gtk_snapshot_translate (snapshot, &GRAPHENE_POINT_INIT (pix_rect.x, pix_rect.y));
|
2018-03-15 08:40:52 +00:00
|
|
|
gdk_paintable_snapshot (GDK_PAINTABLE (icon_helper), snapshot, pix_rect.width, pix_rect.height);
|
2019-02-21 04:34:12 +00:00
|
|
|
gtk_snapshot_restore (snapshot);
|
2016-12-23 09:50:04 +00:00
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
g_object_unref (icon_helper);
|
2011-05-31 20:05:31 +00:00
|
|
|
gtk_style_context_restore (context);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|