2008-07-01 22:57:50 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
|
2018-02-08 13:39:45 +00:00
|
|
|
|
#include "gtkimageprivate.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
|
|
2015-01-27 03:48:35 +00:00
|
|
|
|
#include "gtkcssstylepropertyprivate.h"
|
2011-11-30 04:06:37 +00:00
|
|
|
|
#include "gtkiconhelperprivate.h"
|
2004-10-25 04:36:39 +00:00
|
|
|
|
#include "gtkicontheme.h"
|
2001-08-29 02:20:02 +00:00
|
|
|
|
#include "gtkintl.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2018-03-14 03:45:25 +00:00
|
|
|
|
#include "gtkscalerprivate.h"
|
2018-02-08 13:39:45 +00:00
|
|
|
|
#include "gtksnapshot.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
2014-10-01 04:04:19 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2011-06-27 03:16:26 +00:00
|
|
|
|
#include "a11y/gtkimageaccessible.h"
|
|
|
|
|
|
2018-02-08 13:39:45 +00:00
|
|
|
|
#include <math.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <cairo-gobject.h>
|
|
|
|
|
|
2009-12-18 00:59:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkimage
|
|
|
|
|
* @Short_description: A widget displaying an image
|
|
|
|
|
* @Title: GtkImage
|
2018-01-10 21:43:17 +00:00
|
|
|
|
* @SeeAlso: #GdkTexture
|
2009-12-18 00:59:21 +00:00
|
|
|
|
*
|
|
|
|
|
* The #GtkImage widget displays an image. Various kinds of object
|
|
|
|
|
* can be displayed as an image; most typically, you would load a
|
2018-01-10 21:43:17 +00:00
|
|
|
|
* #GdkTexture from a file, and then display that.
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* There’s a convenience function to do this, gtk_image_new_from_file(),
|
2009-12-18 00:59:21 +00:00
|
|
|
|
* used as follows:
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2009-12-18 00:59:21 +00:00
|
|
|
|
* GtkWidget *image;
|
|
|
|
|
* image = gtk_image_new_from_file ("myfile.png");
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* If the file isn’t loaded successfully, the image will contain a
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* “broken image” icon similar to that used in many web browsers.
|
2009-12-18 00:59:21 +00:00
|
|
|
|
* If you want to handle errors in loading the file yourself,
|
|
|
|
|
* for example by displaying an error message, then load the image with
|
2018-01-10 21:43:17 +00:00
|
|
|
|
* gdk_texture_new_from_file(), then create the #GtkImage with
|
2018-03-16 03:29:42 +00:00
|
|
|
|
* gtk_image_new_from_paintable().
|
2009-12-18 00:59:21 +00:00
|
|
|
|
*
|
|
|
|
|
* Sometimes an application will want to avoid depending on external data
|
2017-10-06 08:40:23 +00:00
|
|
|
|
* files, such as image files. See the documentation of #GResource for details.
|
|
|
|
|
* In this case, the #GtkImage:resource, gtk_image_new_from_resource() and
|
|
|
|
|
* gtk_image_set_from_resource() should be used.
|
2015-10-23 04:04:47 +00:00
|
|
|
|
*
|
|
|
|
|
* # CSS nodes
|
|
|
|
|
*
|
2017-11-15 18:23:51 +00:00
|
|
|
|
* GtkImage has a single CSS node with the name image. The style classes
|
|
|
|
|
* .normal-icons or .large-icons may appear, depending on the #GtkImage::icon-size
|
|
|
|
|
* property.
|
2009-12-18 00:59:21 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
|
struct _GtkImagePrivate
|
2004-10-25 04:36:39 +00:00
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
|
GtkIconHelper *icon_helper;
|
2017-11-15 03:29:31 +00:00
|
|
|
|
GtkIconSize icon_size;
|
2011-11-30 04:06:37 +00:00
|
|
|
|
|
2013-09-22 03:37:48 +00:00
|
|
|
|
float baseline_align;
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2017-10-23 14:39:44 +00:00
|
|
|
|
gchar *filename; /* Only used with GTK_IMAGE_SURFACE */
|
2017-10-23 12:47:50 +00:00
|
|
|
|
gchar *resource_path; /* Only used with GTK_IMAGE_SURFACE */
|
2018-03-15 17:10:01 +00:00
|
|
|
|
|
|
|
|
|
guint keep_aspect_ratio : 1;
|
2018-03-15 17:48:44 +00:00
|
|
|
|
guint can_shrink : 1;
|
2004-10-25 04:36:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-08-09 16:59:53 +00:00
|
|
|
|
|
2016-11-15 05:19:16 +00:00
|
|
|
|
static void gtk_image_snapshot (GtkWidget *widget,
|
|
|
|
|
GtkSnapshot *snapshot);
|
2017-07-11 07:58:21 +00:00
|
|
|
|
static void gtk_image_size_allocate (GtkWidget *widget,
|
|
|
|
|
const GtkAllocation *allocation,
|
|
|
|
|
int baseline,
|
|
|
|
|
GtkAllocation *out_clip);
|
2010-10-27 03:16:40 +00:00
|
|
|
|
static void gtk_image_unrealize (GtkWidget *widget);
|
2016-10-22 14:06:14 +00:00
|
|
|
|
static void gtk_image_measure (GtkWidget *widget,
|
|
|
|
|
GtkOrientation orientation,
|
|
|
|
|
int for_size,
|
|
|
|
|
int *minimum,
|
|
|
|
|
int *natural,
|
|
|
|
|
int *minimum_baseline,
|
|
|
|
|
int *natural_baseline);
|
2015-11-17 03:55:01 +00:00
|
|
|
|
|
2011-01-10 01:45:14 +00:00
|
|
|
|
static void gtk_image_style_updated (GtkWidget *widget);
|
2012-04-16 04:51:43 +00:00
|
|
|
|
static void gtk_image_finalize (GObject *object);
|
2010-10-27 03:16:40 +00:00
|
|
|
|
|
|
|
|
|
static void gtk_image_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_image_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
PROP_0,
|
2018-02-16 09:50:49 +00:00
|
|
|
|
PROP_PAINTABLE,
|
2001-08-29 02:20:02 +00:00
|
|
|
|
PROP_FILE,
|
|
|
|
|
PROP_ICON_SIZE,
|
2004-10-25 04:36:39 +00:00
|
|
|
|
PROP_PIXEL_SIZE,
|
|
|
|
|
PROP_ICON_NAME,
|
2008-05-29 14:33:49 +00:00
|
|
|
|
PROP_STORAGE_TYPE,
|
2011-01-18 16:13:00 +00:00
|
|
|
|
PROP_GICON,
|
2013-01-24 22:09:51 +00:00
|
|
|
|
PROP_RESOURCE,
|
2015-09-06 14:40:46 +00:00
|
|
|
|
PROP_USE_FALLBACK,
|
2018-03-15 17:10:01 +00:00
|
|
|
|
PROP_KEEP_ASPECT_RATIO,
|
2018-03-15 17:48:44 +00:00
|
|
|
|
PROP_CAN_SHRINK,
|
2015-09-06 14:40:46 +00:00
|
|
|
|
NUM_PROPERTIES
|
2001-08-29 02:20:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
static GParamSpec *image_props[NUM_PROPERTIES] = { NULL, };
|
|
|
|
|
|
2016-10-02 16:19:59 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkImage, gtk_image, GTK_TYPE_WIDGET)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_image_class_init (GtkImageClass *class)
|
|
|
|
|
{
|
2001-08-29 02:20:02 +00:00
|
|
|
|
GObjectClass *gobject_class;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
gobject_class = G_OBJECT_CLASS (class);
|
2017-10-23 12:47:50 +00:00
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
gobject_class->set_property = gtk_image_set_property;
|
|
|
|
|
gobject_class->get_property = gtk_image_get_property;
|
2012-04-16 04:51:43 +00:00
|
|
|
|
gobject_class->finalize = gtk_image_finalize;
|
2001-01-24 08:25:41 +00:00
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
widget_class = GTK_WIDGET_CLASS (class);
|
2016-11-15 05:19:16 +00:00
|
|
|
|
widget_class->snapshot = gtk_image_snapshot;
|
2016-10-22 14:06:14 +00:00
|
|
|
|
widget_class->measure = gtk_image_measure;
|
2014-10-01 04:04:19 +00:00
|
|
|
|
widget_class->size_allocate = gtk_image_size_allocate;
|
2002-09-27 19:54:51 +00:00
|
|
|
|
widget_class->unrealize = gtk_image_unrealize;
|
2011-01-10 01:45:14 +00:00
|
|
|
|
widget_class->style_updated = gtk_image_style_updated;
|
2015-09-06 14:40:46 +00:00
|
|
|
|
|
2018-02-16 09:50:49 +00:00
|
|
|
|
image_props[PROP_PAINTABLE] =
|
|
|
|
|
g_param_spec_object ("paintable",
|
|
|
|
|
P_("Paintable"),
|
|
|
|
|
P_("A GdkPaintable to display"),
|
|
|
|
|
GDK_TYPE_PAINTABLE,
|
|
|
|
|
GTK_PARAM_READWRITE);
|
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[PROP_FILE] =
|
|
|
|
|
g_param_spec_string ("file",
|
|
|
|
|
P_("Filename"),
|
|
|
|
|
P_("Filename to load and display"),
|
|
|
|
|
NULL,
|
|
|
|
|
GTK_PARAM_READWRITE);
|
2001-08-29 02:20:02 +00:00
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[PROP_ICON_SIZE] =
|
2017-11-15 19:20:40 +00:00
|
|
|
|
g_param_spec_enum ("icon-size",
|
|
|
|
|
P_("Icon size"),
|
|
|
|
|
P_("Symbolic size to use for icon set or named icon"),
|
|
|
|
|
GTK_TYPE_ICON_SIZE,
|
|
|
|
|
GTK_ICON_SIZE_INHERIT,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2015-09-06 14:40:46 +00:00
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkImage:pixel-size:
|
|
|
|
|
*
|
2007-05-26 06:59:36 +00:00
|
|
|
|
* The "pixel-size" property can be used to specify a fixed size
|
2015-09-06 14:40:46 +00:00
|
|
|
|
* overriding the #GtkImage:icon-size property for images of type
|
|
|
|
|
* %GTK_IMAGE_ICON_NAME.
|
2004-10-25 04:36:39 +00:00
|
|
|
|
*/
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[PROP_PIXEL_SIZE] =
|
|
|
|
|
g_param_spec_int ("pixel-size",
|
|
|
|
|
P_("Pixel size"),
|
|
|
|
|
P_("Pixel size to use for named icon"),
|
|
|
|
|
-1, G_MAXINT,
|
|
|
|
|
-1,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkImage:icon-name:
|
|
|
|
|
*
|
2007-05-26 06:59:36 +00:00
|
|
|
|
* The name of the icon in the icon theme. If the icon theme is
|
2004-10-25 04:36:39 +00:00
|
|
|
|
* changed, the image will be updated automatically.
|
|
|
|
|
*/
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[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-05-29 14:33:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkImage:gicon:
|
|
|
|
|
*
|
|
|
|
|
* The GIcon displayed in the GtkImage. For themed icons,
|
|
|
|
|
* If the icon theme is changed, the image will be updated
|
|
|
|
|
* automatically.
|
|
|
|
|
*/
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[PROP_GICON] =
|
|
|
|
|
g_param_spec_object ("gicon",
|
|
|
|
|
P_("Icon"),
|
|
|
|
|
P_("The GIcon being displayed"),
|
|
|
|
|
G_TYPE_ICON,
|
|
|
|
|
GTK_PARAM_READWRITE);
|
2013-01-24 22:09:51 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkImage:resource:
|
|
|
|
|
*
|
|
|
|
|
* A path to a resource file to display.
|
|
|
|
|
*/
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[PROP_RESOURCE] =
|
|
|
|
|
g_param_spec_string ("resource",
|
|
|
|
|
P_("Resource"),
|
|
|
|
|
P_("The resource path being displayed"),
|
|
|
|
|
NULL,
|
|
|
|
|
GTK_PARAM_READWRITE);
|
|
|
|
|
|
|
|
|
|
image_props[PROP_STORAGE_TYPE] =
|
|
|
|
|
g_param_spec_enum ("storage-type",
|
|
|
|
|
P_("Storage type"),
|
|
|
|
|
P_("The representation being used for image data"),
|
|
|
|
|
GTK_TYPE_IMAGE_TYPE,
|
|
|
|
|
GTK_IMAGE_EMPTY,
|
|
|
|
|
GTK_PARAM_READABLE);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
|
2011-01-18 16:13:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkImage:use-fallback:
|
|
|
|
|
*
|
|
|
|
|
* Whether the icon displayed in the GtkImage will use
|
|
|
|
|
* standard icon names fallback. The value of this property
|
|
|
|
|
* is only relevant for images of type %GTK_IMAGE_ICON_NAME
|
|
|
|
|
* and %GTK_IMAGE_GICON.
|
|
|
|
|
*/
|
2015-09-06 14:40:46 +00:00
|
|
|
|
image_props[PROP_USE_FALLBACK] =
|
|
|
|
|
g_param_spec_boolean ("use-fallback",
|
|
|
|
|
P_("Use Fallback"),
|
|
|
|
|
P_("Whether to use icon names fallback"),
|
|
|
|
|
FALSE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
2018-03-15 17:10:01 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkImage:keep-aspect-ratio:
|
|
|
|
|
*
|
|
|
|
|
* Whether the GtkImage will render its contents trying to preserve the aspect
|
|
|
|
|
* ratio of the contents.
|
|
|
|
|
*/
|
|
|
|
|
image_props[PROP_KEEP_ASPECT_RATIO] =
|
|
|
|
|
g_param_spec_boolean ("keep-aspect-ratio",
|
|
|
|
|
P_("Keep aspect ratio"),
|
|
|
|
|
P_("Render contents respecting the aspect ratio"),
|
|
|
|
|
TRUE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
2018-03-15 17:48:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkImage:can-shrink
|
|
|
|
|
*
|
|
|
|
|
* If the #GtkImage can be made smaller than the image it contains.
|
|
|
|
|
*/
|
|
|
|
|
image_props[PROP_CAN_SHRINK] =
|
|
|
|
|
g_param_spec_boolean ("can-shrink",
|
|
|
|
|
P_("Can shrink"),
|
|
|
|
|
P_("Allow image to be smaller than contents"),
|
|
|
|
|
FALSE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_class_install_properties (gobject_class, NUM_PROPERTIES, image_props);
|
2011-01-18 16:13:00 +00:00
|
|
|
|
|
2011-06-27 03:16:26 +00:00
|
|
|
|
gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_IMAGE_ACCESSIBLE);
|
2017-11-18 03:49:57 +00:00
|
|
|
|
gtk_widget_class_set_css_name (widget_class, I_("image"));
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_image_init (GtkImage *image)
|
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2015-11-17 03:55:01 +00:00
|
|
|
|
GtkCssNode *widget_node;
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2015-12-09 17:25:36 +00:00
|
|
|
|
widget_node = gtk_widget_get_css_node (GTK_WIDGET (image));
|
2010-03-06 10:29:31 +00:00
|
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (image), FALSE);
|
2015-12-09 17:25:36 +00:00
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
priv->icon_helper = gtk_icon_helper_new (widget_node, GTK_WIDGET (image));
|
2018-03-15 17:10:01 +00:00
|
|
|
|
priv->keep_aspect_ratio = TRUE;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-01-24 08:25:41 +00:00
|
|
|
|
static void
|
2012-04-16 04:51:43 +00:00
|
|
|
|
gtk_image_finalize (GObject *object)
|
2001-01-24 08:25:41 +00:00
|
|
|
|
{
|
2012-04-16 04:51:43 +00:00
|
|
|
|
GtkImage *image = GTK_IMAGE (object);
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2001-01-24 08:25:41 +00:00
|
|
|
|
|
2018-02-16 09:50:49 +00:00
|
|
|
|
gtk_image_clear (image);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_clear_object (&priv->icon_helper);
|
2015-11-17 03:55:01 +00:00
|
|
|
|
|
2017-09-30 15:58:29 +00:00
|
|
|
|
g_free (priv->filename);
|
|
|
|
|
g_free (priv->resource_path);
|
2012-06-20 06:26:14 +00:00
|
|
|
|
|
2012-04-16 04:51:43 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_image_parent_class)->finalize (object);
|
|
|
|
|
};
|
2001-01-24 08:25:41 +00:00
|
|
|
|
|
2015-11-17 03:55:01 +00:00
|
|
|
|
static void
|
2001-08-29 02:20:02 +00:00
|
|
|
|
gtk_image_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2010-06-23 20:40:31 +00:00
|
|
|
|
GtkImage *image = GTK_IMAGE (object);
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2011-12-01 00:46:31 +00:00
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
2018-02-16 09:50:49 +00:00
|
|
|
|
case PROP_PAINTABLE:
|
|
|
|
|
gtk_image_set_from_paintable (image, g_value_get_object (value));
|
|
|
|
|
break;
|
2001-08-29 02:20:02 +00:00
|
|
|
|
case PROP_FILE:
|
2005-06-08 17:38:25 +00:00
|
|
|
|
gtk_image_set_from_file (image, g_value_get_string (value));
|
2001-08-29 02:20:02 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_ICON_SIZE:
|
2017-11-15 19:20:40 +00:00
|
|
|
|
gtk_image_set_icon_size (image, g_value_get_enum (value));
|
2001-08-29 02:20:02 +00:00
|
|
|
|
break;
|
2004-10-25 04:36:39 +00:00
|
|
|
|
case PROP_PIXEL_SIZE:
|
2004-10-26 19:56:57 +00:00
|
|
|
|
gtk_image_set_pixel_size (image, g_value_get_int (value));
|
2004-10-25 04:36:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_ICON_NAME:
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_icon_name (image, g_value_get_string (value));
|
2004-12-13 17:10:52 +00:00
|
|
|
|
break;
|
2008-05-29 14:33:49 +00:00
|
|
|
|
case PROP_GICON:
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_gicon (image, g_value_get_object (value));
|
2008-05-29 14:33:49 +00:00
|
|
|
|
break;
|
2013-01-24 22:09:51 +00:00
|
|
|
|
case PROP_RESOURCE:
|
|
|
|
|
gtk_image_set_from_resource (image, g_value_get_string (value));
|
|
|
|
|
break;
|
2004-12-13 17:10:52 +00:00
|
|
|
|
|
2011-01-18 16:13:00 +00:00
|
|
|
|
case PROP_USE_FALLBACK:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
if (_gtk_icon_helper_set_use_fallback (priv->icon_helper, g_value_get_boolean (value)))
|
2014-06-09 12:58:57 +00:00
|
|
|
|
g_object_notify_by_pspec (object, pspec);
|
2011-01-18 16:13:00 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2018-03-15 17:10:01 +00:00
|
|
|
|
case PROP_KEEP_ASPECT_RATIO:
|
|
|
|
|
gtk_image_set_keep_aspect_ratio (image, g_value_get_boolean (value));
|
|
|
|
|
break;
|
|
|
|
|
|
2018-03-15 17:48:44 +00:00
|
|
|
|
case PROP_CAN_SHRINK:
|
|
|
|
|
gtk_image_set_can_shrink (image, g_value_get_boolean (value));
|
|
|
|
|
break;
|
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_image_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2010-06-23 20:40:31 +00:00
|
|
|
|
GtkImage *image = GTK_IMAGE (object);
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2001-08-29 02:20:02 +00:00
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
2018-02-16 09:50:49 +00:00
|
|
|
|
case PROP_PAINTABLE:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_value_set_object (value, _gtk_icon_helper_peek_paintable (priv->icon_helper));
|
2018-02-16 09:50:49 +00:00
|
|
|
|
break;
|
2005-06-08 17:38:25 +00:00
|
|
|
|
case PROP_FILE:
|
|
|
|
|
g_value_set_string (value, priv->filename);
|
|
|
|
|
break;
|
2001-08-29 02:20:02 +00:00
|
|
|
|
case PROP_ICON_SIZE:
|
2017-11-15 19:20:40 +00:00
|
|
|
|
g_value_set_enum (value, priv->icon_size);
|
2001-08-29 02:20:02 +00:00
|
|
|
|
break;
|
2004-10-25 04:36:39 +00:00
|
|
|
|
case PROP_PIXEL_SIZE:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_value_set_int (value, _gtk_icon_helper_get_pixel_size (priv->icon_helper));
|
2004-10-25 04:36:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_ICON_NAME:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_value_set_string (value, _gtk_icon_helper_get_icon_name (priv->icon_helper));
|
2004-10-25 04:36:39 +00:00
|
|
|
|
break;
|
2008-05-29 14:33:49 +00:00
|
|
|
|
case PROP_GICON:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_value_set_object (value, _gtk_icon_helper_peek_gicon (priv->icon_helper));
|
2001-08-29 02:20:02 +00:00
|
|
|
|
break;
|
2013-01-24 22:09:51 +00:00
|
|
|
|
case PROP_RESOURCE:
|
|
|
|
|
g_value_set_string (value, priv->resource_path);
|
|
|
|
|
break;
|
2011-01-18 16:13:00 +00:00
|
|
|
|
case PROP_USE_FALLBACK:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_value_set_boolean (value, _gtk_icon_helper_get_use_fallback (priv->icon_helper));
|
2011-01-18 16:13:00 +00:00
|
|
|
|
break;
|
2018-03-15 17:10:01 +00:00
|
|
|
|
case PROP_KEEP_ASPECT_RATIO:
|
|
|
|
|
g_value_set_boolean (value, priv->keep_aspect_ratio);
|
|
|
|
|
break;
|
2018-03-15 17:48:44 +00:00
|
|
|
|
case PROP_CAN_SHRINK:
|
|
|
|
|
g_value_set_boolean (value, priv->can_shrink);
|
|
|
|
|
break;
|
2012-03-02 17:47:59 +00:00
|
|
|
|
case PROP_STORAGE_TYPE:
|
2018-03-14 00:56:30 +00:00
|
|
|
|
g_value_set_enum (value, _gtk_icon_helper_get_storage_type (priv->icon_helper));
|
2012-03-02 17:47:59 +00:00
|
|
|
|
break;
|
2001-08-29 02:20:02 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-24 08:25:41 +00:00
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new_from_file:
|
2011-01-18 05:42:31 +00:00
|
|
|
|
* @filename: (type filename): a filename
|
2001-02-03 01:09:41 +00:00
|
|
|
|
*
|
2001-05-07 15:58:47 +00:00
|
|
|
|
* Creates a new #GtkImage displaying the file @filename. If the file
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* isn’t found or can’t be loaded, the resulting #GtkImage will
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* display a “broken image” icon. This function never returns %NULL,
|
2001-05-07 15:58:47 +00:00
|
|
|
|
* it always returns a valid #GtkImage widget.
|
|
|
|
|
*
|
|
|
|
|
* If you need to detect failures to load the file, use
|
2017-11-04 18:05:52 +00:00
|
|
|
|
* gdk_texture_new_from_file() to load the file yourself, then create
|
|
|
|
|
* the #GtkImage from the texture.
|
2001-05-07 15:58:47 +00:00
|
|
|
|
*
|
|
|
|
|
* The storage type (gtk_image_get_storage_type()) of the returned
|
|
|
|
|
* image is not defined, it will be whatever is appropriate for
|
|
|
|
|
* displaying the file.
|
2001-02-03 01:09:41 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkImage
|
2001-02-03 01:09:41 +00:00
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_image_new_from_file (const gchar *filename)
|
|
|
|
|
{
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
|
2002-10-05 23:15:39 +00:00
|
|
|
|
image = g_object_new (GTK_TYPE_IMAGE, NULL);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
|
|
|
|
gtk_image_set_from_file (image, filename);
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (image);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 21:11:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new_from_resource:
|
|
|
|
|
* @resource_path: a resource path
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkImage displaying the resource file @resource_path. If the file
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* isn’t found or can’t be loaded, the resulting #GtkImage will
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* display a “broken image” icon. This function never returns %NULL,
|
2012-01-12 21:11:41 +00:00
|
|
|
|
* it always returns a valid #GtkImage widget.
|
|
|
|
|
*
|
|
|
|
|
* If you need to detect failures to load the file, use
|
|
|
|
|
* gdk_pixbuf_new_from_file() to load the file yourself, then create
|
2017-10-23 14:39:44 +00:00
|
|
|
|
* the #GtkImage from the pixbuf.
|
2012-01-12 21:11:41 +00:00
|
|
|
|
*
|
|
|
|
|
* The storage type (gtk_image_get_storage_type()) of the returned
|
|
|
|
|
* image is not defined, it will be whatever is appropriate for
|
|
|
|
|
* displaying the file.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkImage
|
2012-01-12 21:11:41 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_image_new_from_resource (const gchar *resource_path)
|
|
|
|
|
{
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
|
|
|
|
|
image = g_object_new (GTK_TYPE_IMAGE, NULL);
|
|
|
|
|
|
|
|
|
|
gtk_image_set_from_resource (image, resource_path);
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (image);
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new_from_pixbuf:
|
2009-12-10 10:23:40 +00:00
|
|
|
|
* @pixbuf: (allow-none): a #GdkPixbuf, or %NULL
|
|
|
|
|
*
|
2001-02-03 01:09:41 +00:00
|
|
|
|
* Creates a new #GtkImage displaying @pixbuf.
|
|
|
|
|
* The #GtkImage does not assume a reference to the
|
|
|
|
|
* pixbuf; you still need to unref it if you own references.
|
|
|
|
|
* #GtkImage will add its own reference rather than adopting yours.
|
2017-10-23 12:47:50 +00:00
|
|
|
|
*
|
2017-12-02 00:29:36 +00:00
|
|
|
|
* This is a helper for gtk_image_new_from_texture(), and you can't
|
2017-12-01 14:22:24 +00:00
|
|
|
|
* get back the exact pixbuf once this is called, only a texture.
|
2017-10-23 12:47:50 +00:00
|
|
|
|
*
|
2007-05-26 06:59:36 +00:00
|
|
|
|
* Note that this function just creates an #GtkImage from the pixbuf. The
|
|
|
|
|
* #GtkImage created will not react to state changes. Should you want that,
|
2013-06-26 22:41:15 +00:00
|
|
|
|
* you should use gtk_image_new_from_icon_name().
|
2001-02-20 19:07:15 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkImage
|
2001-02-03 01:09:41 +00:00
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_image_new_from_pixbuf (GdkPixbuf *pixbuf)
|
|
|
|
|
{
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
|
2002-10-05 23:15:39 +00:00
|
|
|
|
image = g_object_new (GTK_TYPE_IMAGE, NULL);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
|
|
|
|
gtk_image_set_from_pixbuf (image, pixbuf);
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (image);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-16 09:50:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new_from_paintable:
|
|
|
|
|
* @paintable: (allow-none): a #GdkPaintable, or %NULL
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkImage displaying @paintable.
|
|
|
|
|
* The #GtkImage does not assume a reference to the
|
|
|
|
|
* paintable; you still need to unref it if you own references.
|
|
|
|
|
* #GtkImage will add its own reference rather than adopting yours.
|
|
|
|
|
*
|
|
|
|
|
* The #GtkImage will track changes to the @paintable and update
|
|
|
|
|
* its size and contents in response to it.
|
|
|
|
|
*
|
|
|
|
|
* Returns: a new #GtkImage
|
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
|
|
|
|
gtk_image_new_from_paintable (GdkPaintable *paintable)
|
|
|
|
|
{
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
|
|
|
|
|
image = g_object_new (GTK_TYPE_IMAGE, NULL);
|
|
|
|
|
|
|
|
|
|
gtk_image_set_from_paintable (image, paintable);
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (image);
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new_from_icon_name:
|
2017-02-17 22:01:32 +00:00
|
|
|
|
* @icon_name: (nullable): an icon name or %NULL
|
2004-10-25 04:36:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Creates a #GtkImage displaying an icon from the current icon theme.
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* If the icon name isn’t known, a “broken image” icon will be
|
2004-10-25 04:36:39 +00:00
|
|
|
|
* displayed instead. If the current icon theme is changed, the icon
|
|
|
|
|
* will be updated appropriately.
|
2017-11-15 19:20:40 +00:00
|
|
|
|
*
|
|
|
|
|
* Note: Before 3.94, this function was taking an extra icon size
|
|
|
|
|
* argument. See gtk_image_set_icon_size() for another way to set
|
|
|
|
|
* the icon size.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkImage displaying the themed icon
|
2004-10-25 04:36:39 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_new_from_icon_name (const gchar *icon_name)
|
2004-10-25 04:36:39 +00:00
|
|
|
|
{
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
|
|
|
|
|
image = g_object_new (GTK_TYPE_IMAGE, NULL);
|
|
|
|
|
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_icon_name (image, icon_name);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (image);
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-29 14:33:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new_from_gicon:
|
|
|
|
|
* @icon: an icon
|
|
|
|
|
*
|
|
|
|
|
* Creates a #GtkImage displaying an icon from the current icon theme.
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* If the icon name isn’t known, a “broken image” icon will be
|
2008-05-29 14:33:49 +00:00
|
|
|
|
* displayed instead. If the current icon theme is changed, the icon
|
|
|
|
|
* will be updated appropriately.
|
2017-11-15 19:20:40 +00:00
|
|
|
|
*
|
|
|
|
|
* Note: Before 3.94, this function was taking an extra icon size
|
|
|
|
|
* argument. See gtk_image_set_icon_size() for another way to set
|
|
|
|
|
* the icon size.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkImage displaying the themed icon
|
2008-05-29 14:33:49 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkWidget*
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_new_from_gicon (GIcon *icon)
|
2008-05-29 14:33:49 +00:00
|
|
|
|
{
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
|
|
|
|
|
image = g_object_new (GTK_TYPE_IMAGE, NULL);
|
|
|
|
|
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_gicon (image, icon);
|
2008-05-29 14:33:49 +00:00
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (image);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-19 20:03:58 +00:00
|
|
|
|
typedef struct {
|
|
|
|
|
GtkImage *image;
|
|
|
|
|
gint scale_factor;
|
|
|
|
|
} LoaderData;
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
on_loader_size_prepared (GdkPixbufLoader *loader,
|
|
|
|
|
gint width,
|
|
|
|
|
gint height,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
LoaderData *loader_data = user_data;
|
|
|
|
|
gint scale_factor;
|
|
|
|
|
GdkPixbufFormat *format;
|
|
|
|
|
|
|
|
|
|
/* Let the regular icon helper code path handle non-scalable images */
|
|
|
|
|
format = gdk_pixbuf_loader_get_format (loader);
|
|
|
|
|
if (!gdk_pixbuf_format_is_scalable (format))
|
|
|
|
|
{
|
|
|
|
|
loader_data->scale_factor = 1;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scale_factor = gtk_widget_get_scale_factor (GTK_WIDGET (loader_data->image));
|
|
|
|
|
gdk_pixbuf_loader_set_size (loader, width * scale_factor, height * scale_factor);
|
|
|
|
|
loader_data->scale_factor = scale_factor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GdkPixbufAnimation *
|
|
|
|
|
load_scalable_with_loader (GtkImage *image,
|
|
|
|
|
const gchar *file_path,
|
|
|
|
|
const gchar *resource_path,
|
|
|
|
|
gint *scale_factor_out)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoader *loader;
|
|
|
|
|
GBytes *bytes;
|
|
|
|
|
char *contents;
|
|
|
|
|
gsize length;
|
|
|
|
|
gboolean res;
|
|
|
|
|
GdkPixbufAnimation *animation;
|
|
|
|
|
LoaderData loader_data;
|
|
|
|
|
|
|
|
|
|
animation = NULL;
|
|
|
|
|
bytes = NULL;
|
|
|
|
|
|
|
|
|
|
loader = gdk_pixbuf_loader_new ();
|
|
|
|
|
loader_data.image = image;
|
|
|
|
|
|
|
|
|
|
g_signal_connect (loader, "size-prepared", G_CALLBACK (on_loader_size_prepared), &loader_data);
|
|
|
|
|
|
|
|
|
|
if (resource_path != NULL)
|
|
|
|
|
{
|
|
|
|
|
bytes = g_resources_lookup_data (resource_path, G_RESOURCE_LOOKUP_FLAGS_NONE, NULL);
|
|
|
|
|
}
|
|
|
|
|
else if (file_path != NULL)
|
|
|
|
|
{
|
|
|
|
|
res = g_file_get_contents (file_path, &contents, &length, NULL);
|
|
|
|
|
if (res)
|
|
|
|
|
bytes = g_bytes_new_take (contents, length);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!bytes)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (!gdk_pixbuf_loader_write_bytes (loader, bytes, NULL))
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
if (!gdk_pixbuf_loader_close (loader, NULL))
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
animation = gdk_pixbuf_loader_get_animation (loader);
|
|
|
|
|
if (animation != NULL)
|
|
|
|
|
{
|
|
|
|
|
g_object_ref (animation);
|
|
|
|
|
if (scale_factor_out != NULL)
|
|
|
|
|
*scale_factor_out = loader_data.scale_factor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out:
|
2014-07-30 22:12:30 +00:00
|
|
|
|
gdk_pixbuf_loader_close (loader, NULL);
|
2014-07-19 20:03:58 +00:00
|
|
|
|
g_object_unref (loader);
|
|
|
|
|
g_bytes_unref (bytes);
|
|
|
|
|
|
|
|
|
|
return animation;
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_from_file:
|
|
|
|
|
* @image: a #GtkImage
|
2011-01-18 05:42:31 +00:00
|
|
|
|
* @filename: (type filename) (allow-none): a filename or %NULL
|
2001-02-03 01:09:41 +00:00
|
|
|
|
*
|
|
|
|
|
* See gtk_image_new_from_file() for details.
|
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_image_set_from_file (GtkImage *image,
|
|
|
|
|
const gchar *filename)
|
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2001-05-07 15:58:47 +00:00
|
|
|
|
GdkPixbufAnimation *anim;
|
2014-07-19 20:03:58 +00:00
|
|
|
|
gint scale_factor;
|
2018-03-14 03:45:25 +00:00
|
|
|
|
GdkTexture *texture;
|
|
|
|
|
GdkPaintable *scaler;
|
2017-10-23 14:39:44 +00:00
|
|
|
|
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
2001-08-29 02:20:02 +00:00
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
2015-04-08 18:13:20 +00:00
|
|
|
|
|
|
|
|
|
gtk_image_clear (image);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
|
|
|
|
if (filename == NULL)
|
2001-08-29 02:20:02 +00:00
|
|
|
|
{
|
2005-06-08 17:38:25 +00:00
|
|
|
|
priv->filename = NULL;
|
2001-08-29 02:20:02 +00:00
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-06-08 17:38:25 +00:00
|
|
|
|
|
2014-07-19 20:03:58 +00:00
|
|
|
|
anim = load_scalable_with_loader (image, filename, NULL, &scale_factor);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
2001-05-07 15:58:47 +00:00
|
|
|
|
if (anim == NULL)
|
2001-03-07 21:10:44 +00:00
|
|
|
|
{
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_icon_name (image, "image-missing");
|
2001-08-29 02:20:02 +00:00
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
2001-03-07 21:10:44 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
2018-03-14 03:45:25 +00:00
|
|
|
|
texture = gdk_texture_new_for_pixbuf (gdk_pixbuf_animation_get_static_image (anim));
|
|
|
|
|
scaler = gtk_scaler_new (GDK_PAINTABLE (texture), scale_factor);
|
|
|
|
|
|
|
|
|
|
gtk_image_set_from_paintable (image, scaler);
|
2014-07-19 20:03:58 +00:00
|
|
|
|
|
2018-03-14 03:45:25 +00:00
|
|
|
|
g_object_unref (scaler);
|
|
|
|
|
g_object_unref (texture);
|
2002-10-05 23:15:39 +00:00
|
|
|
|
g_object_unref (anim);
|
2001-08-29 02:20:02 +00:00
|
|
|
|
|
2005-06-08 17:38:25 +00:00
|
|
|
|
priv->filename = g_strdup (filename);
|
2017-10-23 12:47:50 +00:00
|
|
|
|
|
2001-08-29 02:20:02 +00:00
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-05 21:01:26 +00:00
|
|
|
|
#ifndef GDK_PIXBUF_MAGIC_NUMBER
|
|
|
|
|
#define GDK_PIXBUF_MAGIC_NUMBER (0x47646b50) /* 'GdkP' */
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
resource_is_pixdata (const gchar *resource_path)
|
|
|
|
|
{
|
|
|
|
|
const guint8 *stream;
|
|
|
|
|
guint32 magic;
|
|
|
|
|
gsize data_size;
|
|
|
|
|
GBytes *bytes;
|
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
|
|
bytes = g_resources_lookup_data (resource_path, 0, NULL);
|
|
|
|
|
if (bytes == NULL)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
stream = g_bytes_get_data (bytes, &data_size);
|
|
|
|
|
if (data_size < sizeof(guint32))
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
magic = (stream[0] << 24) + (stream[1] << 16) + (stream[2] << 8) + stream[3];
|
|
|
|
|
if (magic == GDK_PIXBUF_MAGIC_NUMBER)
|
|
|
|
|
ret = TRUE;
|
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
g_bytes_unref (bytes);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-12 21:11:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_from_resource:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @resource_path: (allow-none): a resource path or %NULL
|
|
|
|
|
*
|
|
|
|
|
* See gtk_image_new_from_resource() for details.
|
|
|
|
|
**/
|
|
|
|
|
void
|
2012-01-16 17:39:52 +00:00
|
|
|
|
gtk_image_set_from_resource (GtkImage *image,
|
|
|
|
|
const gchar *resource_path)
|
2012-01-12 21:11:41 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2013-01-30 15:24:39 +00:00
|
|
|
|
GdkPixbufAnimation *animation;
|
2017-07-05 21:01:26 +00:00
|
|
|
|
gint scale_factor = 1;
|
2018-03-14 03:45:25 +00:00
|
|
|
|
GdkTexture *texture;
|
|
|
|
|
GdkPaintable *scaler;
|
2012-01-12 21:11:41 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
|
|
|
|
|
|
|
|
|
gtk_image_clear (image);
|
|
|
|
|
|
|
|
|
|
if (resource_path == NULL)
|
|
|
|
|
{
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-05 21:01:26 +00:00
|
|
|
|
if (resource_is_pixdata (resource_path))
|
|
|
|
|
{
|
|
|
|
|
g_warning ("GdkPixdata format images are not supported, remove the \"to-pixdata\" option from your GResource files");
|
|
|
|
|
animation = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
animation = load_scalable_with_loader (image, NULL, resource_path, &scale_factor);
|
|
|
|
|
}
|
2012-01-12 21:11:41 +00:00
|
|
|
|
|
2013-01-30 15:24:39 +00:00
|
|
|
|
if (animation == NULL)
|
2012-01-12 21:11:41 +00:00
|
|
|
|
{
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_icon_name (image, "image-missing");
|
2012-01-12 21:11:41 +00:00
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-14 03:45:25 +00:00
|
|
|
|
texture = gdk_texture_new_for_pixbuf (gdk_pixbuf_animation_get_static_image (animation));
|
|
|
|
|
scaler = gtk_scaler_new (GDK_PAINTABLE (texture), scale_factor);
|
|
|
|
|
|
|
|
|
|
gtk_image_set_from_paintable (image, scaler);
|
|
|
|
|
|
|
|
|
|
g_object_unref (scaler);
|
|
|
|
|
g_object_unref (texture);
|
2012-01-12 21:11:41 +00:00
|
|
|
|
|
2015-06-24 13:59:00 +00:00
|
|
|
|
priv->resource_path = g_strdup (resource_path);
|
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_RESOURCE]);
|
2013-01-24 22:09:51 +00:00
|
|
|
|
|
2013-01-30 15:24:39 +00:00
|
|
|
|
g_object_unref (animation);
|
2012-01-12 21:11:41 +00:00
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_from_pixbuf:
|
|
|
|
|
* @image: a #GtkImage
|
2009-12-10 10:23:40 +00:00
|
|
|
|
* @pixbuf: (allow-none): a #GdkPixbuf or %NULL
|
2001-02-03 01:09:41 +00:00
|
|
|
|
*
|
2009-12-10 10:23:40 +00:00
|
|
|
|
* See gtk_image_new_from_pixbuf() for details.
|
2017-10-23 12:47:50 +00:00
|
|
|
|
*
|
2018-03-16 03:29:42 +00:00
|
|
|
|
* Note: This is a helper for gtk_image_set_from_paintable(), and you can't
|
|
|
|
|
* get back the exact pixbuf once this is called, only a paintable.
|
2001-02-03 01:09:41 +00:00
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_image_set_from_pixbuf (GtkImage *image,
|
|
|
|
|
GdkPixbuf *pixbuf)
|
|
|
|
|
{
|
2017-12-01 14:22:24 +00:00
|
|
|
|
GdkTexture *texture;
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
2017-12-01 14:22:24 +00:00
|
|
|
|
g_return_if_fail (pixbuf == NULL || GDK_IS_PIXBUF (pixbuf));
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
2017-10-23 12:47:50 +00:00
|
|
|
|
if (pixbuf)
|
2017-12-01 14:22:24 +00:00
|
|
|
|
texture = gdk_texture_new_for_pixbuf (pixbuf);
|
|
|
|
|
else
|
|
|
|
|
texture = NULL;
|
2001-08-29 02:20:02 +00:00
|
|
|
|
|
2018-03-16 03:29:42 +00:00
|
|
|
|
gtk_image_set_from_paintable (image, GDK_PAINTABLE (texture));
|
2015-09-06 14:40:46 +00:00
|
|
|
|
|
2017-12-01 14:22:24 +00:00
|
|
|
|
if (texture)
|
|
|
|
|
g_object_unref (texture);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_from_icon_name:
|
|
|
|
|
* @image: a #GtkImage
|
2017-02-17 22:01:32 +00:00
|
|
|
|
* @icon_name: (nullable): an icon name or %NULL
|
2004-10-25 04:36:39 +00:00
|
|
|
|
*
|
|
|
|
|
* See gtk_image_new_from_icon_name() for details.
|
2017-11-15 00:43:13 +00:00
|
|
|
|
*
|
2017-11-15 19:20:40 +00:00
|
|
|
|
* Note: Before 3.94, this function was taking an extra icon size
|
|
|
|
|
* argument. See gtk_image_set_icon_size() for another way to set
|
|
|
|
|
* the icon size.
|
2004-10-25 04:36:39 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
2017-11-15 00:43:13 +00:00
|
|
|
|
gtk_image_set_from_icon_name (GtkImage *image,
|
|
|
|
|
const gchar *icon_name)
|
2004-10-25 04:36:39 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
|
|
|
|
|
2015-04-08 18:13:20 +00:00
|
|
|
|
gtk_image_clear (image);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
|
2015-12-30 14:45:07 +00:00
|
|
|
|
if (icon_name)
|
2018-03-14 00:56:30 +00:00
|
|
|
|
_gtk_icon_helper_set_icon_name (priv->icon_helper, icon_name);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_ICON_NAME]);
|
2015-12-30 14:45:07 +00:00
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-29 14:33:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_from_gicon:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @icon: an icon
|
|
|
|
|
*
|
|
|
|
|
* See gtk_image_new_from_gicon() for details.
|
2017-11-15 00:43:13 +00:00
|
|
|
|
*
|
2017-11-15 19:20:40 +00:00
|
|
|
|
* Note: Before 3.94, this function was taking an extra icon size
|
|
|
|
|
* argument. See gtk_image_set_icon_size() for another way to set
|
|
|
|
|
* the icon size.
|
2008-05-29 14:33:49 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_set_from_gicon (GtkImage *image,
|
2017-11-15 00:43:13 +00:00
|
|
|
|
GIcon *icon)
|
2008-05-29 14:33:49 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2008-05-29 14:33:49 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
|
|
|
|
|
|
|
|
|
if (icon)
|
|
|
|
|
g_object_ref (icon);
|
2011-11-30 04:06:37 +00:00
|
|
|
|
|
2015-04-08 18:13:20 +00:00
|
|
|
|
gtk_image_clear (image);
|
2008-05-29 14:33:49 +00:00
|
|
|
|
|
|
|
|
|
if (icon)
|
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
|
_gtk_icon_helper_set_gicon (priv->icon_helper, icon);
|
2011-11-30 04:06:37 +00:00
|
|
|
|
g_object_unref (icon);
|
2008-05-29 14:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_GICON]);
|
2015-02-11 17:01:36 +00:00
|
|
|
|
|
2008-05-29 14:33:49 +00:00
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-16 09:50:49 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_image_paintable_invalidate_contents (GdkPaintable *paintable,
|
|
|
|
|
GtkImage *image)
|
|
|
|
|
{
|
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (image));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_image_paintable_invalidate_size (GdkPaintable *paintable,
|
|
|
|
|
GtkImage *image)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
gtk_icon_helper_invalidate (priv->icon_helper);
|
2018-02-16 09:50:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_from_paintable:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @paintable: (nullable): a #GdkPaintable or %NULL
|
|
|
|
|
*
|
|
|
|
|
* See gtk_image_new_from_paintable() for details.
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_set_from_paintable (GtkImage *image,
|
|
|
|
|
GdkPaintable *paintable)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
g_return_if_fail (paintable == NULL || GDK_IS_PAINTABLE (paintable));
|
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
|
|
|
|
|
|
|
|
|
if (paintable)
|
|
|
|
|
g_object_ref (paintable);
|
|
|
|
|
|
|
|
|
|
gtk_image_clear (image);
|
|
|
|
|
|
|
|
|
|
if (paintable)
|
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
|
_gtk_icon_helper_set_paintable (priv->icon_helper, paintable);
|
2018-02-16 09:50:49 +00:00
|
|
|
|
g_signal_connect (paintable,
|
|
|
|
|
"invalidate-contents",
|
|
|
|
|
G_CALLBACK (gtk_image_paintable_invalidate_contents),
|
|
|
|
|
image);
|
|
|
|
|
g_signal_connect (paintable,
|
|
|
|
|
"invalidate-size",
|
|
|
|
|
G_CALLBACK (gtk_image_paintable_invalidate_size),
|
|
|
|
|
image);
|
|
|
|
|
g_object_unref (paintable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_PAINTABLE]);
|
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
}
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_storage_type:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the type of representation being used by the #GtkImage
|
|
|
|
|
* to store image data. If the #GtkImage has no image data,
|
|
|
|
|
* the return value will be %GTK_IMAGE_EMPTY.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: image representation being used
|
2001-02-03 01:09:41 +00:00
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
GtkImageType
|
|
|
|
|
gtk_image_get_storage_type (GtkImage *image)
|
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), GTK_IMAGE_EMPTY);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
return _gtk_icon_helper_get_storage_type (priv->icon_helper);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-16 09:50:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_paintable:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the image #GdkPaintable being displayed by the #GtkImage.
|
|
|
|
|
* The storage type of the image must be %GTK_IMAGE_EMPTY or
|
|
|
|
|
* %GTK_IMAGE_PAINTABLE (see gtk_image_get_storage_type()).
|
|
|
|
|
* The caller of this function does not own a reference to the
|
|
|
|
|
* returned paintable.
|
|
|
|
|
*
|
|
|
|
|
* Returns: (nullable) (transfer none): the displayed paintable, or %NULL if
|
|
|
|
|
* the image is empty
|
|
|
|
|
**/
|
|
|
|
|
GdkPaintable *
|
|
|
|
|
gtk_image_get_paintable (GtkImage *image)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), NULL);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
return _gtk_icon_helper_peek_paintable (priv->icon_helper);
|
2018-02-16 09:50:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_icon_name:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the icon name and size being displayed by the #GtkImage.
|
|
|
|
|
* The storage type of the image must be %GTK_IMAGE_EMPTY or
|
|
|
|
|
* %GTK_IMAGE_ICON_NAME (see gtk_image_get_storage_type()).
|
|
|
|
|
* The returned string is owned by the #GtkImage and should not
|
|
|
|
|
* be freed.
|
2017-01-22 21:58:45 +00:00
|
|
|
|
*
|
2017-11-15 18:23:51 +00:00
|
|
|
|
* Note: This function was changed in 3.94 not to use out parameters
|
|
|
|
|
* anymore, but return the icon name directly. See gtk_image_get_icon_size()
|
|
|
|
|
* for a way to get the icon size.
|
|
|
|
|
*
|
2017-01-22 21:58:45 +00:00
|
|
|
|
* Returns: (transfer none) (allow-none): the icon name, or %NULL
|
2004-10-25 04:36:39 +00:00
|
|
|
|
**/
|
2017-01-22 21:58:45 +00:00
|
|
|
|
const gchar *
|
|
|
|
|
gtk_image_get_icon_name (GtkImage *image)
|
2004-10-25 04:36:39 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2017-01-22 21:58:45 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), NULL);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
return _gtk_icon_helper_get_icon_name (priv->icon_helper);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-05-29 14:33:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_gicon:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the #GIcon and size being displayed by the #GtkImage.
|
|
|
|
|
* The storage type of the image must be %GTK_IMAGE_EMPTY or
|
|
|
|
|
* %GTK_IMAGE_GICON (see gtk_image_get_storage_type()).
|
|
|
|
|
* The caller of this function does not own a reference to the
|
|
|
|
|
* returned #GIcon.
|
2017-11-15 18:23:51 +00:00
|
|
|
|
*
|
|
|
|
|
* Note: This function was changed in 3.94 not to use out parameters
|
|
|
|
|
* anymore, but return the GIcon directly. See gtk_image_get_icon_size()
|
|
|
|
|
* for a way to get the icon size.
|
|
|
|
|
*
|
2017-01-22 21:58:45 +00:00
|
|
|
|
* Returns: (transfer none) (allow-none): a #GIcon, or %NULL
|
2008-05-29 14:33:49 +00:00
|
|
|
|
**/
|
2017-01-22 21:58:45 +00:00
|
|
|
|
GIcon *
|
|
|
|
|
gtk_image_get_gicon (GtkImage *image)
|
2008-05-29 14:33:49 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2017-01-22 21:58:45 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), NULL);
|
2008-05-29 14:33:49 +00:00
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
return _gtk_icon_helper_peek_gicon (priv->icon_helper);
|
2008-05-29 14:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-25 03:15:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_new:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new empty #GtkImage widget.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a newly created #GtkImage widget.
|
2001-08-25 03:15:26 +00:00
|
|
|
|
**/
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
GtkWidget*
|
2001-08-25 03:15:26 +00:00
|
|
|
|
gtk_image_new (void)
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
{
|
2001-08-25 03:15:26 +00:00
|
|
|
|
return g_object_new (GTK_TYPE_IMAGE, NULL);
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-01 04:04:19 +00:00
|
|
|
|
static void
|
2017-07-11 07:58:21 +00:00
|
|
|
|
gtk_image_size_allocate (GtkWidget *widget,
|
|
|
|
|
const GtkAllocation *allocation,
|
|
|
|
|
int baseline,
|
|
|
|
|
GtkAllocation *out_clip)
|
2014-10-01 04:04:19 +00:00
|
|
|
|
{
|
2015-01-20 05:25:01 +00:00
|
|
|
|
_gtk_style_context_get_icon_extents (gtk_widget_get_style_context (widget),
|
2017-07-11 07:58:21 +00:00
|
|
|
|
out_clip,
|
2015-01-20 05:25:01 +00:00
|
|
|
|
allocation->x,
|
|
|
|
|
allocation->y,
|
|
|
|
|
allocation->width,
|
|
|
|
|
allocation->height);
|
2014-10-01 04:04:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-27 19:54:51 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_image_unrealize (GtkWidget *widget)
|
|
|
|
|
{
|
2016-11-15 05:36:34 +00:00
|
|
|
|
GtkImage *image = GTK_IMAGE (widget);
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2016-11-15 05:36:34 +00:00
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
gtk_icon_helper_invalidate (priv->icon_helper);
|
2002-09-27 19:54:51 +00:00
|
|
|
|
|
2008-08-12 09:44:32 +00:00
|
|
|
|
GTK_WIDGET_CLASS (gtk_image_parent_class)->unrealize (widget);
|
2002-09-27 19:54:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-26 09:56:53 +00:00
|
|
|
|
static float
|
|
|
|
|
gtk_image_get_baseline_align (GtkImage *image)
|
|
|
|
|
{
|
|
|
|
|
PangoContext *pango_context;
|
|
|
|
|
PangoFontMetrics *metrics;
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2013-03-26 09:56:53 +00:00
|
|
|
|
|
2017-09-30 15:58:29 +00:00
|
|
|
|
|
|
|
|
|
if (priv->baseline_align == 0.0)
|
2013-03-26 09:56:53 +00:00
|
|
|
|
{
|
|
|
|
|
pango_context = gtk_widget_get_pango_context (GTK_WIDGET (image));
|
|
|
|
|
metrics = pango_context_get_metrics (pango_context,
|
|
|
|
|
pango_context_get_font_description (pango_context),
|
|
|
|
|
pango_context_get_language (pango_context));
|
2017-09-30 15:58:29 +00:00
|
|
|
|
priv->baseline_align =
|
|
|
|
|
(float)pango_font_metrics_get_ascent (metrics) /
|
|
|
|
|
(pango_font_metrics_get_ascent (metrics) + pango_font_metrics_get_descent (metrics));
|
2013-04-27 09:08:21 +00:00
|
|
|
|
|
|
|
|
|
pango_font_metrics_unref (metrics);
|
2013-03-26 09:56:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-30 15:58:29 +00:00
|
|
|
|
return priv->baseline_align;
|
2013-03-26 09:56:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-15 05:19:16 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_image_snapshot (GtkWidget *widget,
|
|
|
|
|
GtkSnapshot *snapshot)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
2017-05-03 08:44:18 +00:00
|
|
|
|
GtkImage *image = GTK_IMAGE (widget);
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2018-03-15 17:10:01 +00:00
|
|
|
|
double ratio;
|
|
|
|
|
int x, y, width, height, baseline;
|
|
|
|
|
double w, h;
|
2016-08-18 20:06:31 +00:00
|
|
|
|
|
2017-12-04 11:14:21 +00:00
|
|
|
|
width = gtk_widget_get_width (widget);
|
|
|
|
|
height = gtk_widget_get_height (widget);
|
2018-03-15 17:10:01 +00:00
|
|
|
|
ratio = gdk_paintable_get_intrinsic_aspect_ratio (GDK_PAINTABLE (priv->icon_helper));
|
2002-11-07 22:27:22 +00:00
|
|
|
|
|
2018-03-15 17:10:01 +00:00
|
|
|
|
if (!priv->keep_aspect_ratio || ratio == 0)
|
2018-02-27 00:55:03 +00:00
|
|
|
|
{
|
2018-03-15 08:40:52 +00:00
|
|
|
|
gdk_paintable_snapshot (GDK_PAINTABLE (priv->icon_helper), snapshot, width, height);
|
2018-02-27 00:55:03 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-03-15 17:10:01 +00:00
|
|
|
|
double image_ratio = (double) width / height;
|
2012-06-14 18:06:39 +00:00
|
|
|
|
|
2018-03-15 17:10:01 +00:00
|
|
|
|
if (ratio > image_ratio)
|
|
|
|
|
{
|
|
|
|
|
w = width;
|
|
|
|
|
h = width / ratio;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
w = height * ratio;
|
|
|
|
|
h = height;
|
|
|
|
|
}
|
2013-03-26 09:56:53 +00:00
|
|
|
|
|
2018-03-15 17:10:01 +00:00
|
|
|
|
x = (width - ceil (w)) / 2;
|
|
|
|
|
|
|
|
|
|
baseline = gtk_widget_get_allocated_baseline (widget);
|
2018-02-27 00:55:03 +00:00
|
|
|
|
if (baseline == -1)
|
2018-03-15 17:10:01 +00:00
|
|
|
|
y = floor(height - ceil (h)) / 2;
|
2018-02-27 00:55:03 +00:00
|
|
|
|
else
|
2018-03-15 17:10:01 +00:00
|
|
|
|
y = CLAMP (baseline - h * gtk_image_get_baseline_align (image), 0, height - ceil (h));
|
2016-10-02 16:19:59 +00:00
|
|
|
|
|
2018-02-27 00:55:03 +00:00
|
|
|
|
gtk_snapshot_offset (snapshot, x, y);
|
2018-03-15 08:40:52 +00:00
|
|
|
|
gdk_paintable_snapshot (GDK_PAINTABLE (priv->icon_helper), snapshot, w, h);
|
2018-02-27 00:55:03 +00:00
|
|
|
|
gtk_snapshot_offset (snapshot, -x, -y);
|
|
|
|
|
}
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-03-16 13:59:24 +00:00
|
|
|
|
static void
|
2015-12-02 13:54:15 +00:00
|
|
|
|
gtk_image_notify_for_storage_type (GtkImage *image,
|
|
|
|
|
GtkImageType storage_type)
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
{
|
2011-11-30 04:06:37 +00:00
|
|
|
|
switch (storage_type)
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
{
|
2004-10-25 04:36:39 +00:00
|
|
|
|
case GTK_IMAGE_ICON_NAME:
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_ICON_NAME]);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
break;
|
2008-05-29 14:33:49 +00:00
|
|
|
|
case GTK_IMAGE_GICON:
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_GICON]);
|
2008-05-29 14:33:49 +00:00
|
|
|
|
break;
|
2018-02-16 09:50:49 +00:00
|
|
|
|
case GTK_IMAGE_PAINTABLE:
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_PAINTABLE]);
|
|
|
|
|
break;
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
case GTK_IMAGE_EMPTY:
|
|
|
|
|
default:
|
|
|
|
|
break;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
2015-12-02 13:54:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-02 14:40:44 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_image_set_from_definition (GtkImage *image,
|
2017-01-24 02:14:53 +00:00
|
|
|
|
GtkImageDefinition *def)
|
2015-12-02 14:40:44 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2015-12-02 14:40:44 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
|
|
|
|
|
|
|
|
|
gtk_image_clear (image);
|
|
|
|
|
|
|
|
|
|
if (def != NULL)
|
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
|
_gtk_icon_helper_set_definition (priv->icon_helper, def);
|
2015-12-02 14:40:44 +00:00
|
|
|
|
|
|
|
|
|
gtk_image_notify_for_storage_type (image, gtk_image_definition_get_storage_type (def));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-16 09:19:44 +00:00
|
|
|
|
GtkImageDefinition *
|
|
|
|
|
gtk_image_get_definition (GtkImage *image)
|
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
return gtk_icon_helper_get_definition (priv->icon_helper);
|
2017-06-16 09:19:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-14 16:30:19 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_clear:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Resets the image to be empty.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_clear (GtkImage *image)
|
2015-12-02 13:54:15 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2015-12-02 13:54:15 +00:00
|
|
|
|
GtkImageType storage_type;
|
|
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (image));
|
|
|
|
|
storage_type = gtk_image_get_storage_type (image);
|
|
|
|
|
|
|
|
|
|
if (storage_type != GTK_IMAGE_EMPTY)
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_STORAGE_TYPE]);
|
|
|
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_ICON_SIZE]);
|
|
|
|
|
|
|
|
|
|
gtk_image_notify_for_storage_type (image, storage_type);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2005-06-08 17:38:25 +00:00
|
|
|
|
if (priv->filename)
|
|
|
|
|
{
|
|
|
|
|
g_free (priv->filename);
|
|
|
|
|
priv->filename = NULL;
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_FILE]);
|
2005-06-08 17:38:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-24 22:09:51 +00:00
|
|
|
|
if (priv->resource_path)
|
|
|
|
|
{
|
|
|
|
|
g_free (priv->resource_path);
|
|
|
|
|
priv->resource_path = NULL;
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_RESOURCE]);
|
2013-01-24 22:09:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-16 09:50:49 +00:00
|
|
|
|
if (storage_type == GTK_IMAGE_PAINTABLE)
|
|
|
|
|
{
|
2018-03-14 00:56:30 +00:00
|
|
|
|
GdkPaintable *paintable = _gtk_icon_helper_peek_paintable (priv->icon_helper);
|
2018-02-16 09:50:49 +00:00
|
|
|
|
g_signal_handlers_disconnect_by_func (paintable,
|
|
|
|
|
gtk_image_paintable_invalidate_contents,
|
|
|
|
|
image);
|
|
|
|
|
g_signal_handlers_disconnect_by_func (paintable,
|
|
|
|
|
gtk_image_paintable_invalidate_size,
|
|
|
|
|
image);
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
_gtk_icon_helper_clear (priv->icon_helper);
|
2001-08-29 02:20:02 +00:00
|
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (image));
|
2001-01-24 08:25:41 +00:00
|
|
|
|
}
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
|
2002-11-07 22:27:22 +00:00
|
|
|
|
static void
|
2016-10-22 14:06:14 +00:00
|
|
|
|
gtk_image_measure (GtkWidget *widget,
|
|
|
|
|
GtkOrientation orientation,
|
|
|
|
|
int for_size,
|
|
|
|
|
int *minimum,
|
|
|
|
|
int *natural,
|
|
|
|
|
int *minimum_baseline,
|
|
|
|
|
int *natural_baseline)
|
2010-10-27 03:16:40 +00:00
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (GTK_IMAGE (widget));
|
2017-05-04 08:23:38 +00:00
|
|
|
|
float baseline_align;
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
gtk_icon_helper_measure (priv->icon_helper,
|
2018-02-27 00:55:03 +00:00
|
|
|
|
orientation,
|
|
|
|
|
for_size,
|
|
|
|
|
minimum, natural);
|
2017-05-04 08:23:38 +00:00
|
|
|
|
|
2018-03-15 17:48:44 +00:00
|
|
|
|
if (priv->can_shrink)
|
|
|
|
|
*minimum = 0;
|
|
|
|
|
|
2018-02-27 00:55:03 +00:00
|
|
|
|
if (orientation == GTK_ORIENTATION_VERTICAL)
|
2017-05-04 08:23:38 +00:00
|
|
|
|
{
|
|
|
|
|
baseline_align = gtk_image_get_baseline_align (GTK_IMAGE (widget));
|
|
|
|
|
if (minimum_baseline)
|
2018-02-27 00:55:03 +00:00
|
|
|
|
*minimum_baseline = *minimum * baseline_align;
|
2017-05-04 08:23:38 +00:00
|
|
|
|
if (natural_baseline)
|
2018-02-27 00:55:03 +00:00
|
|
|
|
*natural_baseline = *natural * baseline_align;
|
2017-05-04 08:23:38 +00:00
|
|
|
|
}
|
2011-11-30 04:06:37 +00:00
|
|
|
|
}
|
2002-11-07 22:27:22 +00:00
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
static void
|
2011-01-10 01:45:14 +00:00
|
|
|
|
gtk_image_style_updated (GtkWidget *widget)
|
2004-10-25 04:36:39 +00:00
|
|
|
|
{
|
2013-03-26 09:56:53 +00:00
|
|
|
|
GtkImage *image = GTK_IMAGE (widget);
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
2016-02-07 07:29:49 +00:00
|
|
|
|
GtkStyleContext *context = gtk_widget_get_style_context (widget);
|
|
|
|
|
GtkCssStyleChange *change = gtk_style_context_get_change (context);
|
2016-01-05 02:22:11 +00:00
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
gtk_icon_helper_invalidate_for_change (priv->icon_helper, change);
|
2013-03-26 09:56:53 +00:00
|
|
|
|
|
2011-01-10 01:45:14 +00:00
|
|
|
|
GTK_WIDGET_CLASS (gtk_image_parent_class)->style_updated (widget);
|
2008-08-12 09:44:32 +00:00
|
|
|
|
|
2013-03-26 09:56:53 +00:00
|
|
|
|
priv->baseline_align = 0.0;
|
2004-10-26 19:56:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_pixel_size:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @pixel_size: the new pixel size
|
|
|
|
|
*
|
|
|
|
|
* Sets the pixel size to use for named icons. If the pixel size is set
|
2004-10-26 19:56:57 +00:00
|
|
|
|
* to a value != -1, it is used instead of the icon size set by
|
|
|
|
|
* gtk_image_set_from_icon_name().
|
2004-10-25 04:36:39 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_set_pixel_size (GtkImage *image,
|
|
|
|
|
gint pixel_size)
|
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
2010-06-23 20:40:31 +00:00
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
if (_gtk_icon_helper_set_pixel_size (priv->icon_helper, pixel_size))
|
2004-10-25 04:36:39 +00:00
|
|
|
|
{
|
2011-11-30 04:06:37 +00:00
|
|
|
|
if (gtk_widget_get_visible (GTK_WIDGET (image)))
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (image));
|
2015-09-06 14:40:46 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_PIXEL_SIZE]);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_pixel_size:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the pixel size used for named icons.
|
|
|
|
|
*
|
2004-10-26 19:56:57 +00:00
|
|
|
|
* Returns: the pixel size used for named icons.
|
2004-10-25 04:36:39 +00:00
|
|
|
|
*/
|
|
|
|
|
gint
|
|
|
|
|
gtk_image_get_pixel_size (GtkImage *image)
|
|
|
|
|
{
|
2017-09-30 15:58:29 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
2004-10-25 04:36:39 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), -1);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
return _gtk_icon_helper_get_pixel_size (priv->icon_helper);
|
2004-10-25 04:36:39 +00:00
|
|
|
|
}
|
2017-01-22 21:58:45 +00:00
|
|
|
|
|
2017-11-15 00:43:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_icon_size:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @icon_size: the new icon size
|
|
|
|
|
*
|
|
|
|
|
* Suggests an icon size to the theme for named icons.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_set_icon_size (GtkImage *image,
|
|
|
|
|
GtkIconSize icon_size)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
2017-11-15 03:29:31 +00:00
|
|
|
|
if (priv->icon_size == icon_size)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
priv->icon_size = icon_size;
|
|
|
|
|
gtk_icon_size_set_style_classes (gtk_widget_get_css_node (GTK_WIDGET (image)), icon_size);
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_ICON_SIZE]);
|
2017-11-15 00:43:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-22 21:58:45 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_icon_size:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the icon size used by the @image when rendering icons.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the image size used by icons
|
|
|
|
|
**/
|
|
|
|
|
GtkIconSize
|
|
|
|
|
gtk_image_get_icon_size (GtkImage *image)
|
|
|
|
|
{
|
2017-11-15 00:43:13 +00:00
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
2017-11-15 02:14:47 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), GTK_ICON_SIZE_INHERIT);
|
2017-01-22 21:58:45 +00:00
|
|
|
|
|
2017-11-15 03:29:31 +00:00
|
|
|
|
return priv->icon_size;
|
2017-01-22 21:58:45 +00:00
|
|
|
|
}
|
2017-11-15 04:30:58 +00:00
|
|
|
|
|
2018-03-15 17:10:01 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_keep_aspect_ratio:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @keep_aspect_ratio: whether to keep aspect ratio
|
|
|
|
|
*
|
|
|
|
|
* If set to %TRUE, the @image will render its contents according to
|
|
|
|
|
* their aspect ratio. That means that empty space may show up at the
|
|
|
|
|
* top/bottom or left/right of @image.
|
|
|
|
|
*
|
|
|
|
|
* If set to %FALSE or if the contents provide no aspect ratio, the
|
|
|
|
|
* contents will be stretched over the image's whole area.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_set_keep_aspect_ratio (GtkImage *image,
|
|
|
|
|
gboolean keep_aspect_ratio)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
|
|
|
|
if (priv->keep_aspect_ratio == keep_aspect_ratio)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
priv->keep_aspect_ratio = keep_aspect_ratio;
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_KEEP_ASPECT_RATIO]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_keep_aspect_ratio:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the value set via gtk_image_set_keep_aspect_ratio().
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the image tries to keep the contents' aspect ratio
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_image_get_keep_aspect_ratio (GtkImage *image)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), TRUE);
|
|
|
|
|
|
|
|
|
|
return priv->keep_aspect_ratio;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-15 17:48:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_image_set_can_shrink:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
* @can_shrink: if the @image can be made smaller than its contents
|
|
|
|
|
*
|
|
|
|
|
* If set to %TRUE, the @image can be made smaller than its contents.
|
|
|
|
|
* The contents will be scaled down when rendering.
|
|
|
|
|
*
|
|
|
|
|
* If you want to still force a minimum size manually, consider using
|
|
|
|
|
* gtk_widget_set_size_request().
|
|
|
|
|
*
|
|
|
|
|
* Also of note is that a similar function for growing does not exist
|
|
|
|
|
* because the grow behavior can be controlled via
|
|
|
|
|
* gtk_widget_set_halign() and gtk_widget_set_valign().
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_image_set_can_shrink (GtkImage *image,
|
|
|
|
|
gboolean can_shrink)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_IMAGE (image));
|
|
|
|
|
|
|
|
|
|
if (priv->can_shrink == can_shrink)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
priv->can_shrink = can_shrink;
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (image), image_props[PROP_CAN_SHRINK]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_image_get_can_shrink:
|
|
|
|
|
* @image: a #GtkImage
|
|
|
|
|
*
|
|
|
|
|
* Gets the value set via gtk_image_set_can_shrink().
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if the image can be made smaller than its contents
|
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_image_get_can_shrink (GtkImage *image)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_IMAGE (image), FALSE);
|
|
|
|
|
|
|
|
|
|
return priv->can_shrink;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-15 04:30:58 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_image_get_image_size (GtkImage *image,
|
|
|
|
|
int *width,
|
|
|
|
|
int *height)
|
|
|
|
|
{
|
|
|
|
|
GtkImagePrivate *priv = gtk_image_get_instance_private (image);
|
|
|
|
|
|
2018-03-14 00:56:30 +00:00
|
|
|
|
_gtk_icon_helper_get_size (priv->icon_helper, width, height);
|
2017-11-15 04:30:58 +00:00
|
|
|
|
}
|