1999-11-02 16:10:25 +00:00
|
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
|
/* GdkPixbuf library - Main header file
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 1999 The Free Software Foundation
|
|
|
|
|
*
|
|
|
|
|
* Authors: Mark Crichton <crichton@gimp.org>
|
|
|
|
|
* Miguel de Icaza <miguel@gnu.org>
|
|
|
|
|
* Federico Mena-Quintero <federico@gimp.org>
|
|
|
|
|
* Jonathan Blandford <jrb@redhat.com>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-12-02 20:44:43 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <gtk/gtksignal.h>
|
1999-11-23 20:03:14 +00:00
|
|
|
|
#include "gdk-pixbuf-loader.h"
|
|
|
|
|
#include "gdk-pixbuf-io.h"
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
|
enum {
|
|
|
|
|
AREA_UPDATED,
|
|
|
|
|
AREA_PREPARED,
|
|
|
|
|
CLOSED,
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
|
};
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
static GtkObjectClass *parent_class;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
|
|
|
|
static void gdk_pixbuf_loader_class_init (GdkPixbufLoaderClass *klass);
|
|
|
|
|
static void gdk_pixbuf_loader_init (GdkPixbufLoader *loader);
|
1999-10-26 20:43:39 +00:00
|
|
|
|
static void gdk_pixbuf_loader_destroy (GtkObject *loader);
|
|
|
|
|
static void gdk_pixbuf_loader_finalize (GtkObject *loader);
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
static guint pixbuf_loader_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
|
/* Internal data */
|
1999-11-02 16:10:25 +00:00
|
|
|
|
|
|
|
|
|
#define LOADER_HEADER_SIZE 128
|
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
typedef struct {
|
1999-10-26 03:42:14 +00:00
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
|
gboolean closed;
|
1999-11-02 16:10:25 +00:00
|
|
|
|
gchar header_buf[LOADER_HEADER_SIZE];
|
|
|
|
|
gint header_buf_offset;
|
1999-10-28 14:46:46 +00:00
|
|
|
|
GdkPixbufModule *image_module;
|
1999-10-26 23:19:49 +00:00
|
|
|
|
gpointer context;
|
1999-10-27 17:31:07 +00:00
|
|
|
|
} GdkPixbufLoaderPrivate;
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
|
|
|
|
/* our marshaller */
|
1999-10-27 17:31:07 +00:00
|
|
|
|
typedef void (* GtkSignal_NONE__INT_INT_INT_INT) (GtkObject *object,
|
|
|
|
|
gint arg1, gint arg2, gint arg3, gint arg4,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
static void
|
|
|
|
|
gtk_marshal_NONE__INT_INT_INT_INT (GtkObject *object, GtkSignalFunc func, gpointer func_data,
|
1999-10-26 23:19:49 +00:00
|
|
|
|
GtkArg * args)
|
|
|
|
|
{
|
1999-10-27 17:31:07 +00:00
|
|
|
|
GtkSignal_NONE__INT_INT_INT_INT rfunc;
|
|
|
|
|
|
|
|
|
|
rfunc = (GtkSignal_NONE__INT_INT_INT_INT) func;
|
|
|
|
|
(*rfunc) (object,
|
|
|
|
|
GTK_VALUE_INT (args[0]),
|
|
|
|
|
GTK_VALUE_INT (args[1]),
|
|
|
|
|
GTK_VALUE_INT (args[2]),
|
|
|
|
|
GTK_VALUE_INT (args[3]),
|
|
|
|
|
func_data);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
}
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_loader_get_type:
|
|
|
|
|
* @void:
|
|
|
|
|
*
|
1999-11-04 21:52:08 +00:00
|
|
|
|
* Registers the #GdkPixubfLoader class if necessary, and returns the type ID
|
1999-10-27 17:31:07 +00:00
|
|
|
|
* associated to it.
|
|
|
|
|
*
|
1999-11-04 21:52:08 +00:00
|
|
|
|
* Return value: The type ID of the #GdkPixbufLoader class.
|
1999-10-27 17:31:07 +00:00
|
|
|
|
**/
|
1999-10-26 03:42:14 +00:00
|
|
|
|
GtkType
|
|
|
|
|
gdk_pixbuf_loader_get_type (void)
|
|
|
|
|
{
|
|
|
|
|
static GtkType loader_type = 0;
|
|
|
|
|
|
|
|
|
|
if (!loader_type) {
|
|
|
|
|
static const GtkTypeInfo loader_info = {
|
|
|
|
|
"GdkPixbufLoader",
|
|
|
|
|
sizeof (GdkPixbufLoader),
|
|
|
|
|
sizeof (GdkPixbufLoaderClass),
|
|
|
|
|
(GtkClassInitFunc) gdk_pixbuf_loader_class_init,
|
|
|
|
|
(GtkObjectInitFunc) gdk_pixbuf_loader_init,
|
|
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
|
/* reserved_2 */ NULL,
|
|
|
|
|
(GtkClassInitFunc) NULL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
loader_type = gtk_type_unique (GTK_TYPE_OBJECT, &loader_info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return loader_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1999-10-27 17:31:07 +00:00
|
|
|
|
gdk_pixbuf_loader_class_init (GdkPixbufLoaderClass *class)
|
1999-10-26 03:42:14 +00:00
|
|
|
|
{
|
1999-10-27 17:31:07 +00:00
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass *) class;
|
|
|
|
|
|
|
|
|
|
parent_class = gtk_type_class (gtk_object_get_type ());
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
|
pixbuf_loader_signals[AREA_PREPARED] =
|
|
|
|
|
gtk_signal_new ("area_prepared",
|
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
|
parent_class->type,
|
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, area_prepared),
|
|
|
|
|
gtk_marshal_NONE__NONE,
|
|
|
|
|
GTK_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
|
|
pixbuf_loader_signals[AREA_UPDATED] =
|
|
|
|
|
gtk_signal_new ("area_updated",
|
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
|
parent_class->type,
|
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, area_updated),
|
|
|
|
|
gtk_marshal_NONE__INT_INT_INT_INT,
|
1999-10-27 17:31:07 +00:00
|
|
|
|
GTK_TYPE_NONE, 4,
|
|
|
|
|
GTK_TYPE_INT,
|
|
|
|
|
GTK_TYPE_INT,
|
|
|
|
|
GTK_TYPE_INT,
|
|
|
|
|
GTK_TYPE_INT);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
|
|
|
|
pixbuf_loader_signals[CLOSED] =
|
|
|
|
|
gtk_signal_new ("closed",
|
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
|
parent_class->type,
|
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, closed),
|
|
|
|
|
gtk_marshal_NONE__NONE,
|
|
|
|
|
GTK_TYPE_NONE, 0);
|
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
gtk_object_class_add_signals (object_class, pixbuf_loader_signals, LAST_SIGNAL);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
object_class->destroy = gdk_pixbuf_loader_destroy;
|
|
|
|
|
object_class->finalize = gdk_pixbuf_loader_finalize;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gdk_pixbuf_loader_init (GdkPixbufLoader *loader)
|
|
|
|
|
{
|
1999-10-26 20:43:39 +00:00
|
|
|
|
GdkPixbufLoaderPrivate *priv;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
priv = g_new0 (GdkPixbufLoaderPrivate, 1);
|
1999-10-26 20:43:39 +00:00
|
|
|
|
loader->private = priv;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1999-10-27 19:15:37 +00:00
|
|
|
|
gdk_pixbuf_loader_destroy (GtkObject *object)
|
1999-10-26 03:42:14 +00:00
|
|
|
|
{
|
1999-10-27 19:15:37 +00:00
|
|
|
|
GdkPixbufLoader *loader;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-27 19:15:37 +00:00
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
|
g_return_if_fail (GDK_IS_PIXBUF_LOADER (object));
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
1999-10-27 19:15:37 +00:00
|
|
|
|
loader = GDK_PIXBUF_LOADER (object);
|
|
|
|
|
priv = loader->private;
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
1999-10-27 17:08:21 +00:00
|
|
|
|
if (!priv->closed)
|
1999-10-27 19:15:37 +00:00
|
|
|
|
gdk_pixbuf_loader_close (loader);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
|
|
|
|
if (priv->pixbuf)
|
|
|
|
|
gdk_pixbuf_unref (priv->pixbuf);
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
|
|
|
|
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
1999-10-27 19:15:37 +00:00
|
|
|
|
(* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1999-10-27 19:15:37 +00:00
|
|
|
|
gdk_pixbuf_loader_finalize (GtkObject *object)
|
1999-10-26 03:42:14 +00:00
|
|
|
|
{
|
1999-10-27 19:15:37 +00:00
|
|
|
|
GdkPixbufLoader *loader;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
1999-10-27 19:15:37 +00:00
|
|
|
|
loader = GDK_PIXBUF_LOADER (object);
|
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
|
g_free (priv);
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
|
|
|
|
if (GTK_OBJECT_CLASS (parent_class)->finalize)
|
1999-10-27 19:15:37 +00:00
|
|
|
|
(* GTK_OBJECT_CLASS (parent_class)->finalize) (object);
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
|
static void
|
|
|
|
|
gdk_pixbuf_loader_prepare (GdkPixbuf *pixbuf, gpointer loader)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
|
|
|
|
|
|
priv = GDK_PIXBUF_LOADER (loader)->private;
|
|
|
|
|
gdk_pixbuf_ref (pixbuf);
|
|
|
|
|
g_assert (priv->pixbuf == NULL);
|
|
|
|
|
|
|
|
|
|
priv->pixbuf = pixbuf;
|
1999-10-26 23:26:16 +00:00
|
|
|
|
gtk_signal_emit (GTK_OBJECT (loader), pixbuf_loader_signals[AREA_PREPARED]);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 18:18:07 +00:00
|
|
|
|
static void
|
|
|
|
|
gdk_pixbuf_loader_update (GdkPixbuf *pixbuf, gpointer loader, guint x, guint y, guint width, guint height)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
|
|
|
|
|
|
priv = GDK_PIXBUF_LOADER (loader)->private;
|
|
|
|
|
|
|
|
|
|
gtk_signal_emit (GTK_OBJECT (loader),
|
|
|
|
|
pixbuf_loader_signals[AREA_UPDATED],
|
|
|
|
|
x, y,
|
|
|
|
|
/* sanity check in here. Defend against an errant loader */
|
|
|
|
|
MIN (width, gdk_pixbuf_get_width (priv->pixbuf)),
|
|
|
|
|
MIN (height, gdk_pixbuf_get_height (priv->pixbuf)));
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_loader_new:
|
|
|
|
|
* @void:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new pixbuf loader object.
|
|
|
|
|
*
|
|
|
|
|
* Return value: A newly-created pixbuf loader.
|
|
|
|
|
**/
|
|
|
|
|
GdkPixbufLoader *
|
1999-10-26 03:42:14 +00:00
|
|
|
|
gdk_pixbuf_loader_new (void)
|
|
|
|
|
{
|
1999-10-27 17:31:07 +00:00
|
|
|
|
return gtk_type_new (gdk_pixbuf_loader_get_type ());
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-02 16:10:25 +00:00
|
|
|
|
static int
|
|
|
|
|
gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoaderPrivate *priv = loader->private;
|
|
|
|
|
|
|
|
|
|
priv->image_module = gdk_pixbuf_get_module (priv->header_buf, priv->header_buf_offset);
|
|
|
|
|
|
|
|
|
|
if (priv->image_module == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (priv->image_module->module == NULL)
|
|
|
|
|
gdk_pixbuf_load_module (priv->image_module);
|
|
|
|
|
|
|
|
|
|
if (priv->image_module->module == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if ((priv->image_module->begin_load == NULL) ||
|
|
|
|
|
(priv->image_module->stop_load == NULL) ||
|
|
|
|
|
(priv->image_module->load_increment == NULL)) {
|
|
|
|
|
g_warning ("module %s does not support incremental loading.\n",
|
|
|
|
|
priv->image_module->module_name);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 18:18:07 +00:00
|
|
|
|
priv->context = (*priv->image_module->begin_load) (gdk_pixbuf_loader_prepare, gdk_pixbuf_loader_update, loader);
|
1999-11-02 16:10:25 +00:00
|
|
|
|
|
|
|
|
|
if (priv->context == NULL) {
|
|
|
|
|
g_warning("Failed to begin progressive load");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( (* priv->image_module->load_increment) (priv->context, priv->header_buf, priv->header_buf_offset) )
|
|
|
|
|
return priv->header_buf_offset;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
1999-11-02 23:44:32 +00:00
|
|
|
|
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
|
1999-11-02 16:10:25 +00:00
|
|
|
|
{
|
|
|
|
|
int nbytes;
|
|
|
|
|
GdkPixbufLoaderPrivate *priv = loader->private;
|
|
|
|
|
|
|
|
|
|
nbytes = MIN(LOADER_HEADER_SIZE - priv->header_buf_offset, count);
|
|
|
|
|
memcpy (priv->header_buf + priv->header_buf_offset, buf, nbytes);
|
|
|
|
|
|
|
|
|
|
priv->header_buf_offset += nbytes;
|
|
|
|
|
|
1999-11-02 21:49:46 +00:00
|
|
|
|
if(priv->header_buf_offset >= LOADER_HEADER_SIZE)
|
|
|
|
|
gdk_pixbuf_loader_load_module(loader);
|
|
|
|
|
|
|
|
|
|
return nbytes;
|
1999-11-02 16:10:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_loader_write:
|
1999-10-27 17:31:07 +00:00
|
|
|
|
* @loader: A pixbuf loader.
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* @buf: Pointer to image data.
|
|
|
|
|
* @count: Length of the @buf buffer in bytes.
|
1999-10-26 20:43:39 +00:00
|
|
|
|
*
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* This will cause a pixbuf loader to parse the next @count bytes of an image.
|
|
|
|
|
* It will return TRUE if the data was loaded successfully, and FALSE if an
|
|
|
|
|
* error occurred. In the latter case, the loader will be closed, and will not
|
|
|
|
|
* accept further writes.
|
1999-10-26 20:43:39 +00:00
|
|
|
|
*
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* Return value: #TRUE if the write was successful, or #FALSE if the loader
|
|
|
|
|
* cannot parse the buffer.
|
1999-10-26 03:42:14 +00:00
|
|
|
|
**/
|
|
|
|
|
gboolean
|
1999-11-02 23:44:32 +00:00
|
|
|
|
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
|
1999-10-26 03:42:14 +00:00
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (loader != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), FALSE);
|
1999-11-02 16:10:25 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
g_return_val_if_fail (buf != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (count >= 0, FALSE);
|
1999-10-26 03:42:14 +00:00
|
|
|
|
|
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
|
|
/* we expect it's not to be closed */
|
|
|
|
|
g_return_val_if_fail (priv->closed == FALSE, FALSE);
|
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
if (priv->image_module == NULL) {
|
1999-11-02 16:10:25 +00:00
|
|
|
|
int eaten;
|
|
|
|
|
|
|
|
|
|
eaten = gdk_pixbuf_loader_eat_header_write(loader, buf, count);
|
|
|
|
|
if (eaten <= 0)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
count -= eaten;
|
|
|
|
|
buf += eaten;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
}
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
1999-11-02 16:10:25 +00:00
|
|
|
|
if (count > 0 && priv->image_module->load_increment)
|
1999-10-27 17:31:07 +00:00
|
|
|
|
return (* priv->image_module->load_increment) (priv->context, buf, count);
|
|
|
|
|
|
1999-11-02 20:20:05 +00:00
|
|
|
|
return TRUE;
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_loader_get_pixbuf:
|
1999-10-27 17:31:07 +00:00
|
|
|
|
* @loader: A pixbuf loader.
|
1999-10-26 20:43:39 +00:00
|
|
|
|
*
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* Queries the GdkPixbuf that a pixbuf loader is currently creating. In general
|
|
|
|
|
* it only makes sense to call this function afer the "area_prepared" signal has
|
|
|
|
|
* been emitted by the loader; this means that enough data has been read to know
|
|
|
|
|
* the size of the image that will be allocated. If the loader has not received
|
|
|
|
|
* enough data via gdk_pixbuf_loader_write(), then this function returns NULL.
|
|
|
|
|
* The returned pixbuf will be the same in all future calls to the loader, so
|
|
|
|
|
* simply calling gdk_pixbuf_ref() should be sufficient to continue using it.
|
1999-10-26 20:43:39 +00:00
|
|
|
|
*
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* Return value: The GdkPixbuf that the loader is creating, or NULL if not
|
|
|
|
|
* enough data has been read to determine how to create the image buffer.
|
1999-10-26 03:42:14 +00:00
|
|
|
|
**/
|
|
|
|
|
GdkPixbuf *
|
|
|
|
|
gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (loader != NULL, NULL);
|
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), NULL);
|
1999-10-27 17:31:07 +00:00
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
|
|
return priv->pixbuf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_loader_close:
|
1999-10-27 17:31:07 +00:00
|
|
|
|
* @loader: A pixbuf loader.
|
1999-10-26 03:42:14 +00:00
|
|
|
|
*
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* Informs a pixbuf loader that no further writes with gdk_pixbuf_load_write()
|
|
|
|
|
* will occur, so that it can free its internal loading structures.
|
1999-10-26 03:42:14 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gdk_pixbuf_loader_close (GdkPixbufLoader *loader)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (loader != NULL);
|
|
|
|
|
g_return_if_fail (GDK_IS_PIXBUF_LOADER (loader));
|
|
|
|
|
|
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
|
|
/* we expect it's not closed */
|
|
|
|
|
g_return_if_fail (priv->closed == FALSE);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
|
|
|
|
/* We have less the 128 bytes in the image. Flush it, and keep going. */
|
1999-11-02 16:10:25 +00:00
|
|
|
|
if (priv->image_module == NULL)
|
|
|
|
|
gdk_pixbuf_loader_load_module (loader);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
|
|
|
|
if (priv->image_module && priv->image_module->stop_load)
|
1999-10-27 17:31:07 +00:00
|
|
|
|
(* priv->image_module->stop_load) (priv->context);
|
1999-10-26 23:19:49 +00:00
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
|
priv->closed = TRUE;
|
1999-11-10 21:06:40 +00:00
|
|
|
|
|
|
|
|
|
gtk_signal_emit (GTK_OBJECT (loader),
|
1999-11-10 21:11:26 +00:00
|
|
|
|
pixbuf_loader_signals[CLOSED]);
|
1999-10-26 03:42:14 +00:00
|
|
|
|
}
|