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
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-10-26 03:42:14 +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.
|
1999-10-26 03:42:14 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-10-26 03:42:14 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2000-07-14 20:25:22 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-04-11 07:03:25 +00:00
|
|
|
#include "gdk-pixbuf-private.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
|
|
|
|
2000-06-21 20:47:22 +00:00
|
|
|
#include "gtksignal.h"
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
enum {
|
2000-06-24 22:32:05 +00:00
|
|
|
AREA_UPDATED,
|
|
|
|
AREA_PREPARED,
|
|
|
|
FRAME_DONE,
|
|
|
|
ANIMATION_DONE,
|
|
|
|
CLOSED,
|
|
|
|
LAST_SIGNAL
|
1999-10-26 23:19:49 +00:00
|
|
|
};
|
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);
|
2000-06-21 20:47:22 +00:00
|
|
|
static void gdk_pixbuf_loader_finalize (GObject *loader);
|
1999-10-26 03:42:14 +00:00
|
|
|
|
2000-06-24 22:32:05 +00:00
|
|
|
static gpointer parent_class = NULL;
|
|
|
|
static guint pixbuf_loader_signals[LAST_SIGNAL] = { 0 };
|
1999-10-27 17:31:07 +00:00
|
|
|
|
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
|
|
|
|
|
2000-06-24 22:32:05 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
GdkPixbufAnimation *animation;
|
|
|
|
gboolean closed;
|
|
|
|
guchar header_buf[LOADER_HEADER_SIZE];
|
|
|
|
gint header_buf_offset;
|
|
|
|
GdkPixbufModule *image_module;
|
|
|
|
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
|
|
|
/**
|
|
|
|
* gdk_pixbuf_loader_get_type:
|
2000-01-07 18:29:13 +00:00
|
|
|
* @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.
|
2000-01-07 18:29:13 +00:00
|
|
|
*
|
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)
|
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
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;
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass *) class;
|
|
|
|
gobject_class = (GObjectClass *) class;
|
|
|
|
|
|
|
|
parent_class = gtk_type_class (GTK_TYPE_OBJECT);
|
|
|
|
|
|
|
|
pixbuf_loader_signals[AREA_PREPARED] =
|
|
|
|
gtk_signal_new ("area_prepared",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, area_prepared),
|
urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org>
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
couldn't they at least give it a non-standard name?
* gtk/gtktextlayout.c: arg! yet another implementation of
gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
* gtk/gtktextbuffer.c: gotcha! captured a vagabonding
gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
home. now i know this _is_ a conspiracy.
* gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
::state-changed.
* gtk/gtkaccelgroup.c (gtk_accel_group_create_remove):
(gtk_accel_group_create_add): marshaller signature fixups.
* gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
* gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
anymore.
Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org>
* docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
due to the signal system changes, it wouldn't build currently. to
be fixed soon.
* docs/Changes-2.0.txt: GtkSignal/GSignal updates.
* gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
so it needs gtk_marshal_VOID__ENUM() instead of
gtk_marshal_NONE__UINT().
* gdk/gdk*.c: adapted type registration functions.
* gtk/gtkbindings.c:
* gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
gone.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
* gtk/gtkobject.c:
(gtk_object_destroy):
(gtk_object_shutdown): fixed recursion guards. basically we have to
catch the case where any of GObject.shutdown() or gtk_object_destroy()
is called during ::destroy, and avoid recursion there.
* gtk/gtktypeutils.c:
* gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
boxed_copy/boxed_free. this needs a more general solution based on a
publically installed code-generator utility.
* gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
glib's gobject has support for that now.
define GtkSignalMarshaller in terms of GSignalCMarshaller.
Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]:
* gtk/gtkmarshal.[hc]:
* gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
care of that.
* *.c: marshaller name fixups.
* gtk/gtkmarshal.list: added a comment briefing the format.
Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]: nuked old implementation. we mostly have
compatibility macros here now. more specifically, most of
the API is preserved (yes, _most_, nonwithstanding the
following exceptions listed, the API is stil lHUGE ;)
things that got removed completely:
GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
gtk_signal_remove_emission_hook().
non-functional functions variants:
gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
the GtkCallbackMarshal argument to gtk_signal_connect_full() is
not supported anymore.
(gtk_signal_compat_matched): new internal function to aid
implementation of the compatibility macros, it provides
functionality to block/unblock/disconnect handlers based
on func/data.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
* *.c: adaptions to new type registration API signatures.
Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
2000-10-25 22:34:14 +00:00
|
|
|
gtk_marshal_VOID__VOID,
|
2000-06-24 22:32:05 +00:00
|
|
|
GTK_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
pixbuf_loader_signals[AREA_UPDATED] =
|
|
|
|
gtk_signal_new ("area_updated",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, area_updated),
|
urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org>
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
couldn't they at least give it a non-standard name?
* gtk/gtktextlayout.c: arg! yet another implementation of
gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
* gtk/gtktextbuffer.c: gotcha! captured a vagabonding
gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
home. now i know this _is_ a conspiracy.
* gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
::state-changed.
* gtk/gtkaccelgroup.c (gtk_accel_group_create_remove):
(gtk_accel_group_create_add): marshaller signature fixups.
* gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
* gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
anymore.
Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org>
* docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
due to the signal system changes, it wouldn't build currently. to
be fixed soon.
* docs/Changes-2.0.txt: GtkSignal/GSignal updates.
* gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
so it needs gtk_marshal_VOID__ENUM() instead of
gtk_marshal_NONE__UINT().
* gdk/gdk*.c: adapted type registration functions.
* gtk/gtkbindings.c:
* gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
gone.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
* gtk/gtkobject.c:
(gtk_object_destroy):
(gtk_object_shutdown): fixed recursion guards. basically we have to
catch the case where any of GObject.shutdown() or gtk_object_destroy()
is called during ::destroy, and avoid recursion there.
* gtk/gtktypeutils.c:
* gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
boxed_copy/boxed_free. this needs a more general solution based on a
publically installed code-generator utility.
* gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
glib's gobject has support for that now.
define GtkSignalMarshaller in terms of GSignalCMarshaller.
Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]:
* gtk/gtkmarshal.[hc]:
* gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
care of that.
* *.c: marshaller name fixups.
* gtk/gtkmarshal.list: added a comment briefing the format.
Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]: nuked old implementation. we mostly have
compatibility macros here now. more specifically, most of
the API is preserved (yes, _most_, nonwithstanding the
following exceptions listed, the API is stil lHUGE ;)
things that got removed completely:
GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
gtk_signal_remove_emission_hook().
non-functional functions variants:
gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
the GtkCallbackMarshal argument to gtk_signal_connect_full() is
not supported anymore.
(gtk_signal_compat_matched): new internal function to aid
implementation of the compatibility macros, it provides
functionality to block/unblock/disconnect handlers based
on func/data.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
* *.c: adaptions to new type registration API signatures.
Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
2000-10-25 22:34:14 +00:00
|
|
|
gtk_marshal_VOID__INT_INT_INT_INT,
|
2000-06-24 22:32:05 +00:00
|
|
|
GTK_TYPE_NONE, 4,
|
|
|
|
GTK_TYPE_INT,
|
|
|
|
GTK_TYPE_INT,
|
|
|
|
GTK_TYPE_INT,
|
|
|
|
GTK_TYPE_INT);
|
|
|
|
|
|
|
|
pixbuf_loader_signals[FRAME_DONE] =
|
|
|
|
gtk_signal_new ("frame_done",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, frame_done),
|
urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org>
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
couldn't they at least give it a non-standard name?
* gtk/gtktextlayout.c: arg! yet another implementation of
gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
* gtk/gtktextbuffer.c: gotcha! captured a vagabonding
gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
home. now i know this _is_ a conspiracy.
* gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
::state-changed.
* gtk/gtkaccelgroup.c (gtk_accel_group_create_remove):
(gtk_accel_group_create_add): marshaller signature fixups.
* gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
* gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
anymore.
Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org>
* docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
due to the signal system changes, it wouldn't build currently. to
be fixed soon.
* docs/Changes-2.0.txt: GtkSignal/GSignal updates.
* gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
so it needs gtk_marshal_VOID__ENUM() instead of
gtk_marshal_NONE__UINT().
* gdk/gdk*.c: adapted type registration functions.
* gtk/gtkbindings.c:
* gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
gone.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
* gtk/gtkobject.c:
(gtk_object_destroy):
(gtk_object_shutdown): fixed recursion guards. basically we have to
catch the case where any of GObject.shutdown() or gtk_object_destroy()
is called during ::destroy, and avoid recursion there.
* gtk/gtktypeutils.c:
* gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
boxed_copy/boxed_free. this needs a more general solution based on a
publically installed code-generator utility.
* gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
glib's gobject has support for that now.
define GtkSignalMarshaller in terms of GSignalCMarshaller.
Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]:
* gtk/gtkmarshal.[hc]:
* gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
care of that.
* *.c: marshaller name fixups.
* gtk/gtkmarshal.list: added a comment briefing the format.
Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]: nuked old implementation. we mostly have
compatibility macros here now. more specifically, most of
the API is preserved (yes, _most_, nonwithstanding the
following exceptions listed, the API is stil lHUGE ;)
things that got removed completely:
GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
gtk_signal_remove_emission_hook().
non-functional functions variants:
gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
the GtkCallbackMarshal argument to gtk_signal_connect_full() is
not supported anymore.
(gtk_signal_compat_matched): new internal function to aid
implementation of the compatibility macros, it provides
functionality to block/unblock/disconnect handlers based
on func/data.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
* *.c: adaptions to new type registration API signatures.
Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
2000-10-25 22:34:14 +00:00
|
|
|
gtk_marshal_VOID__POINTER,
|
2000-06-24 22:32:05 +00:00
|
|
|
GTK_TYPE_NONE, 1,
|
|
|
|
GTK_TYPE_POINTER);
|
|
|
|
|
|
|
|
pixbuf_loader_signals[ANIMATION_DONE] =
|
|
|
|
gtk_signal_new ("animation_done",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, animation_done),
|
urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org>
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
couldn't they at least give it a non-standard name?
* gtk/gtktextlayout.c: arg! yet another implementation of
gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
* gtk/gtktextbuffer.c: gotcha! captured a vagabonding
gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
home. now i know this _is_ a conspiracy.
* gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
::state-changed.
* gtk/gtkaccelgroup.c (gtk_accel_group_create_remove):
(gtk_accel_group_create_add): marshaller signature fixups.
* gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
* gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
anymore.
Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org>
* docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
due to the signal system changes, it wouldn't build currently. to
be fixed soon.
* docs/Changes-2.0.txt: GtkSignal/GSignal updates.
* gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
so it needs gtk_marshal_VOID__ENUM() instead of
gtk_marshal_NONE__UINT().
* gdk/gdk*.c: adapted type registration functions.
* gtk/gtkbindings.c:
* gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
gone.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
* gtk/gtkobject.c:
(gtk_object_destroy):
(gtk_object_shutdown): fixed recursion guards. basically we have to
catch the case where any of GObject.shutdown() or gtk_object_destroy()
is called during ::destroy, and avoid recursion there.
* gtk/gtktypeutils.c:
* gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
boxed_copy/boxed_free. this needs a more general solution based on a
publically installed code-generator utility.
* gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
glib's gobject has support for that now.
define GtkSignalMarshaller in terms of GSignalCMarshaller.
Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]:
* gtk/gtkmarshal.[hc]:
* gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
care of that.
* *.c: marshaller name fixups.
* gtk/gtkmarshal.list: added a comment briefing the format.
Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]: nuked old implementation. we mostly have
compatibility macros here now. more specifically, most of
the API is preserved (yes, _most_, nonwithstanding the
following exceptions listed, the API is stil lHUGE ;)
things that got removed completely:
GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
gtk_signal_remove_emission_hook().
non-functional functions variants:
gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
the GtkCallbackMarshal argument to gtk_signal_connect_full() is
not supported anymore.
(gtk_signal_compat_matched): new internal function to aid
implementation of the compatibility macros, it provides
functionality to block/unblock/disconnect handlers based
on func/data.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
* *.c: adaptions to new type registration API signatures.
Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
2000-10-25 22:34:14 +00:00
|
|
|
gtk_marshal_VOID__VOID,
|
2000-06-24 22:32:05 +00:00
|
|
|
GTK_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
pixbuf_loader_signals[CLOSED] =
|
|
|
|
gtk_signal_new ("closed",
|
|
|
|
GTK_RUN_LAST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
|
|
|
GTK_SIGNAL_OFFSET (GdkPixbufLoaderClass, closed),
|
urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org>
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
couldn't they at least give it a non-standard name?
* gtk/gtktextlayout.c: arg! yet another implementation of
gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
* gtk/gtktextbuffer.c: gotcha! captured a vagabonding
gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
home. now i know this _is_ a conspiracy.
* gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
::state-changed.
* gtk/gtkaccelgroup.c (gtk_accel_group_create_remove):
(gtk_accel_group_create_add): marshaller signature fixups.
* gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
* gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
anymore.
Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org>
* docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
due to the signal system changes, it wouldn't build currently. to
be fixed soon.
* docs/Changes-2.0.txt: GtkSignal/GSignal updates.
* gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
so it needs gtk_marshal_VOID__ENUM() instead of
gtk_marshal_NONE__UINT().
* gdk/gdk*.c: adapted type registration functions.
* gtk/gtkbindings.c:
* gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
gone.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
* gtk/gtkobject.c:
(gtk_object_destroy):
(gtk_object_shutdown): fixed recursion guards. basically we have to
catch the case where any of GObject.shutdown() or gtk_object_destroy()
is called during ::destroy, and avoid recursion there.
* gtk/gtktypeutils.c:
* gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
boxed_copy/boxed_free. this needs a more general solution based on a
publically installed code-generator utility.
* gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
glib's gobject has support for that now.
define GtkSignalMarshaller in terms of GSignalCMarshaller.
Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]:
* gtk/gtkmarshal.[hc]:
* gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
care of that.
* *.c: marshaller name fixups.
* gtk/gtkmarshal.list: added a comment briefing the format.
Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]: nuked old implementation. we mostly have
compatibility macros here now. more specifically, most of
the API is preserved (yes, _most_, nonwithstanding the
following exceptions listed, the API is stil lHUGE ;)
things that got removed completely:
GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
gtk_signal_remove_emission_hook().
non-functional functions variants:
gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
the GtkCallbackMarshal argument to gtk_signal_connect_full() is
not supported anymore.
(gtk_signal_compat_matched): new internal function to aid
implementation of the compatibility macros, it provides
functionality to block/unblock/disconnect handlers based
on func/data.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
* *.c: adaptions to new type registration API signatures.
Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
2000-10-25 22:34:14 +00:00
|
|
|
gtk_marshal_VOID__VOID,
|
2000-06-24 22:32:05 +00:00
|
|
|
GTK_TYPE_NONE, 0);
|
|
|
|
|
|
|
|
gtk_object_class_add_signals (object_class, pixbuf_loader_signals, LAST_SIGNAL);
|
|
|
|
|
|
|
|
object_class->destroy = gdk_pixbuf_loader_destroy;
|
|
|
|
gobject_class->finalize = gdk_pixbuf_loader_finalize;
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_pixbuf_loader_init (GdkPixbufLoader *loader)
|
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
priv = g_new0 (GdkPixbufLoaderPrivate, 1);
|
|
|
|
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
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoader *loader;
|
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
|
|
|
|
g_return_if_fail (object != NULL);
|
|
|
|
g_return_if_fail (GDK_IS_PIXBUF_LOADER (object));
|
|
|
|
|
|
|
|
loader = GDK_PIXBUF_LOADER (object);
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
if (!priv->closed)
|
|
|
|
gdk_pixbuf_loader_close (loader);
|
|
|
|
|
|
|
|
if (priv->animation)
|
|
|
|
gdk_pixbuf_animation_unref (priv->animation);
|
|
|
|
if (priv->pixbuf)
|
|
|
|
gdk_pixbuf_unref (priv->pixbuf);
|
|
|
|
|
|
|
|
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
|
|
|
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-06-21 20:47:22 +00:00
|
|
|
gdk_pixbuf_loader_finalize (GObject *object)
|
1999-10-26 03:42:14 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoader *loader;
|
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
|
|
|
|
loader = GDK_PIXBUF_LOADER (object);
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
g_free (priv);
|
|
|
|
|
|
|
|
if (G_OBJECT_CLASS (parent_class)->finalize)
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
1999-10-26 23:19:49 +00:00
|
|
|
static void
|
2000-06-24 22:32:05 +00:00
|
|
|
gdk_pixbuf_loader_prepare (GdkPixbuf *pixbuf,
|
|
|
|
gpointer loader)
|
1999-10-26 23:19:49 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
|
|
|
|
priv = GDK_PIXBUF_LOADER (loader)->private;
|
|
|
|
gdk_pixbuf_ref (pixbuf);
|
|
|
|
|
|
|
|
g_assert (priv->pixbuf == NULL);
|
|
|
|
|
|
|
|
priv->pixbuf = pixbuf;
|
|
|
|
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
|
2000-06-24 22:32:05 +00:00
|
|
|
gdk_pixbuf_loader_update (GdkPixbuf *pixbuf,
|
|
|
|
guint x,
|
|
|
|
guint y,
|
|
|
|
guint width,
|
|
|
|
guint height,
|
|
|
|
gpointer loader)
|
1999-11-04 18:18:07 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
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-11-04 18:18:07 +00:00
|
|
|
}
|
|
|
|
|
2000-01-07 18:29:13 +00:00
|
|
|
static void
|
2000-06-24 22:32:05 +00:00
|
|
|
gdk_pixbuf_loader_frame_done (GdkPixbufFrame *frame,
|
|
|
|
gpointer loader)
|
2000-01-07 18:29:13 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
|
|
|
|
priv = GDK_PIXBUF_LOADER (loader)->private;
|
|
|
|
|
|
|
|
priv->pixbuf = NULL;
|
|
|
|
|
|
|
|
if (priv->animation == NULL)
|
|
|
|
{
|
2000-07-11 04:46:11 +00:00
|
|
|
priv->animation = g_object_new (GDK_TYPE_PIXBUF_ANIMATION, NULL);
|
2000-06-24 22:32:05 +00:00
|
|
|
|
|
|
|
priv->animation->n_frames = 0;
|
|
|
|
priv->animation->width = gdk_pixbuf_get_width (frame->pixbuf) + frame->x_offset;
|
|
|
|
priv->animation->height = gdk_pixbuf_get_height (frame->pixbuf) + frame->y_offset;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int w, h;
|
|
|
|
|
|
|
|
/* update bbox size */
|
|
|
|
w = gdk_pixbuf_get_width (frame->pixbuf) + frame->x_offset;
|
|
|
|
h = gdk_pixbuf_get_height (frame->pixbuf) + frame->y_offset;
|
|
|
|
|
|
|
|
if (w > priv->animation->width) {
|
|
|
|
priv->animation->width = w;
|
|
|
|
}
|
|
|
|
if (h > priv->animation->height) {
|
|
|
|
priv->animation->height = h;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->animation->frames = g_list_append (priv->animation->frames, frame);
|
|
|
|
priv->animation->n_frames++;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (loader),
|
|
|
|
pixbuf_loader_signals[FRAME_DONE],
|
|
|
|
frame);
|
2000-01-07 18:29:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-06-24 22:32:05 +00:00
|
|
|
gdk_pixbuf_loader_animation_done (GdkPixbuf *pixbuf,
|
|
|
|
gpointer loader)
|
2000-01-07 18:29:13 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv = NULL;
|
|
|
|
GdkPixbufFrame *frame;
|
|
|
|
GList *current = NULL;
|
|
|
|
gint h, w;
|
|
|
|
|
|
|
|
priv = GDK_PIXBUF_LOADER (loader)->private;
|
|
|
|
priv->pixbuf = NULL;
|
|
|
|
|
|
|
|
current = gdk_pixbuf_animation_get_frames (priv->animation);
|
|
|
|
|
|
|
|
while (current)
|
|
|
|
{
|
|
|
|
frame = (GdkPixbufFrame *) current->data;
|
|
|
|
|
|
|
|
/* update bbox size */
|
|
|
|
w = gdk_pixbuf_get_width (frame->pixbuf) + frame->x_offset;
|
|
|
|
h = gdk_pixbuf_get_height (frame->pixbuf) + frame->y_offset;
|
|
|
|
|
|
|
|
if (w > priv->animation->width)
|
|
|
|
priv->animation->width = w;
|
|
|
|
if (h > priv->animation->height)
|
|
|
|
priv->animation->height = h;
|
|
|
|
current = current->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_signal_emit (GTK_OBJECT (loader), pixbuf_loader_signals[ANIMATION_DONE]);
|
2000-01-07 18:29:13 +00:00
|
|
|
}
|
|
|
|
|
2000-06-24 22:32:05 +00:00
|
|
|
static gint
|
2000-10-18 18:42:54 +00:00
|
|
|
gdk_pixbuf_loader_load_module (GdkPixbufLoader *loader,
|
|
|
|
const char *image_type,
|
|
|
|
GError **error)
|
1999-11-02 16:10:25 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv = loader->private;
|
2000-07-28 00:09:36 +00:00
|
|
|
|
2000-10-18 18:42:54 +00:00
|
|
|
if (image_type)
|
|
|
|
{
|
|
|
|
priv->image_module = gdk_pixbuf_get_named_module (image_type,
|
|
|
|
error);
|
|
|
|
}
|
2000-07-28 00:09:36 +00:00
|
|
|
else
|
2000-10-18 18:42:54 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (priv->header_buf_offset > 0, 0);
|
|
|
|
priv->image_module = gdk_pixbuf_get_module (priv->header_buf,
|
|
|
|
priv->header_buf_offset,
|
|
|
|
NULL,
|
|
|
|
error);
|
|
|
|
}
|
2000-06-24 22:32:05 +00:00
|
|
|
|
|
|
|
if (priv->image_module == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (priv->image_module->module == NULL)
|
2000-10-18 18:42:54 +00:00
|
|
|
if (!gdk_pixbuf_load_module (priv->image_module, error))
|
|
|
|
return 0;
|
2000-06-24 22:32:05 +00:00
|
|
|
|
|
|
|
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))
|
|
|
|
{
|
2000-10-18 18:42:54 +00:00
|
|
|
g_set_error (error,
|
|
|
|
GDK_PIXBUF_ERROR,
|
|
|
|
GDK_PIXBUF_ERROR_UNSUPPORTED_OPERATION,
|
|
|
|
_("Incremental loading of image type '%s' is not supported"),
|
|
|
|
image_type);
|
|
|
|
|
2000-06-24 22:32:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->context = priv->image_module->begin_load (gdk_pixbuf_loader_prepare,
|
|
|
|
gdk_pixbuf_loader_update,
|
|
|
|
gdk_pixbuf_loader_frame_done,
|
|
|
|
gdk_pixbuf_loader_animation_done,
|
2000-10-18 18:42:54 +00:00
|
|
|
loader,
|
|
|
|
error);
|
2000-06-24 22:32:05 +00:00
|
|
|
|
|
|
|
if (priv->context == NULL)
|
|
|
|
{
|
2000-10-18 18:42:54 +00:00
|
|
|
/* Defense against broken loaders; DO NOT take this as a GError
|
|
|
|
* example
|
|
|
|
*/
|
|
|
|
if (error && *error == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Bug! loader '%s' didn't set an error on failure",
|
|
|
|
priv->image_module->module_name);
|
|
|
|
g_set_error (error,
|
|
|
|
GDK_PIXBUF_ERROR,
|
|
|
|
GDK_PIXBUF_ERROR_FAILED,
|
|
|
|
_("Internal error: Image loader module '%s'"
|
|
|
|
" failed to begin loading an image, but didn't"
|
|
|
|
" give a reason for the failure"),
|
|
|
|
priv->image_module->module_name);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-06-24 22:32:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
if (priv->header_buf_offset
|
2000-10-18 18:42:54 +00:00
|
|
|
&& priv->image_module->load_increment (priv->context, priv->header_buf, priv->header_buf_offset, error))
|
2000-06-24 22:32:05 +00:00
|
|
|
return priv->header_buf_offset;
|
|
|
|
|
|
|
|
return 0;
|
1999-11-02 16:10:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-06-24 22:32:05 +00:00
|
|
|
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader,
|
|
|
|
const guchar *buf,
|
2000-10-18 18:42:54 +00:00
|
|
|
gsize count,
|
|
|
|
GError **error)
|
1999-11-02 16:10:25 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
gint n_bytes;
|
|
|
|
GdkPixbufLoaderPrivate *priv = loader->private;
|
|
|
|
|
|
|
|
n_bytes = MIN(LOADER_HEADER_SIZE - priv->header_buf_offset, count);
|
|
|
|
memcpy (priv->header_buf + priv->header_buf_offset, buf, n_bytes);
|
|
|
|
|
|
|
|
priv->header_buf_offset += n_bytes;
|
|
|
|
|
|
|
|
if (priv->header_buf_offset >= LOADER_HEADER_SIZE)
|
|
|
|
{
|
2000-10-18 18:42:54 +00:00
|
|
|
if (gdk_pixbuf_loader_load_module (loader, NULL, error) == 0)
|
2000-06-24 22:32:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n_bytes;
|
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.
|
2000-10-18 18:42:54 +00:00
|
|
|
* @error: return location for errors
|
1999-10-26 20:43:39 +00:00
|
|
|
*
|
2000-10-18 18:42:54 +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. If FALSE is
|
|
|
|
* returned, @error will be set to an error from the #GDK_PIXBUF_ERROR
|
|
|
|
* domain.
|
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
|
2000-06-24 22:32:05 +00:00
|
|
|
gdk_pixbuf_loader_write (GdkPixbufLoader *loader,
|
|
|
|
const guchar *buf,
|
2000-10-18 18:42:54 +00:00
|
|
|
gsize count,
|
|
|
|
GError **error)
|
1999-10-26 03:42:14 +00:00
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (loader != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), FALSE);
|
|
|
|
|
|
|
|
g_return_val_if_fail (buf != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (count >= 0, FALSE);
|
|
|
|
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
/* we expect it's not to be closed */
|
|
|
|
g_return_val_if_fail (priv->closed == FALSE, FALSE);
|
|
|
|
|
|
|
|
if (priv->image_module == NULL)
|
|
|
|
{
|
|
|
|
gint eaten;
|
|
|
|
|
2000-10-18 18:42:54 +00:00
|
|
|
eaten = gdk_pixbuf_loader_eat_header_write(loader, buf, count, error);
|
2000-06-24 22:32:05 +00:00
|
|
|
if (eaten <= 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
count -= eaten;
|
|
|
|
buf += eaten;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count > 0 && priv->image_module->load_increment)
|
2000-10-18 18:42:54 +00:00
|
|
|
{
|
|
|
|
gboolean retval;
|
|
|
|
retval = priv->image_module->load_increment (priv->context, buf, count,
|
|
|
|
error);
|
|
|
|
if (!retval && error && *error == NULL)
|
|
|
|
{
|
|
|
|
/* Fix up busted image loader */
|
|
|
|
g_warning ("Bug! loader '%s' didn't set an error on failure",
|
|
|
|
priv->image_module->module_name);
|
|
|
|
g_set_error (error,
|
|
|
|
GDK_PIXBUF_ERROR,
|
|
|
|
GDK_PIXBUF_ERROR_FAILED,
|
|
|
|
_("Internal error: Image loader module '%s'"
|
|
|
|
" failed to begin loading an image, but didn't"
|
|
|
|
" give a reason for the failure"),
|
|
|
|
priv->image_module->module_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2000-06-24 22:32:05 +00:00
|
|
|
return TRUE;
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
/**
|
|
|
|
* gdk_pixbuf_loader_new:
|
|
|
|
*
|
|
|
|
* Creates a new pixbuf loader object.
|
|
|
|
*
|
|
|
|
* Return value: A newly-created pixbuf loader.
|
|
|
|
**/
|
|
|
|
GdkPixbufLoader *
|
|
|
|
gdk_pixbuf_loader_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GDK_TYPE_PIXBUF_LOADER, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_pixbuf_loader_new_with_type:
|
|
|
|
*
|
|
|
|
* Creates a new pixbuf loader object.
|
|
|
|
*
|
|
|
|
* Return value: A newly-created pixbuf loader.
|
|
|
|
**/
|
|
|
|
GdkPixbufLoader *
|
2000-10-18 18:42:54 +00:00
|
|
|
gdk_pixbuf_loader_new_with_type (const char *image_type,
|
|
|
|
GError **error)
|
2000-07-28 00:09:36 +00:00
|
|
|
{
|
|
|
|
GdkPixbufLoader *retval;
|
2000-10-18 18:42:54 +00:00
|
|
|
GError *tmp;
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
retval = g_object_new (GDK_TYPE_PIXBUF_LOADER, NULL);
|
|
|
|
|
2000-10-18 18:42:54 +00:00
|
|
|
tmp = NULL;
|
|
|
|
gdk_pixbuf_loader_load_module(retval, image_type, &tmp);
|
|
|
|
if (tmp != NULL)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, tmp);
|
|
|
|
g_object_unref (G_OBJECT (retval));
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-07-28 00:09:36 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
2000-10-09 17:22:20 +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. Additionally, if the loader is an animation, it will
|
|
|
|
* return the first frame of the animation.
|
|
|
|
*
|
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)
|
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (loader != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), NULL);
|
|
|
|
|
|
|
|
priv = loader->private;
|
2000-10-09 17:22:20 +00:00
|
|
|
|
|
|
|
if (priv->animation)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
list = gdk_pixbuf_animation_get_frames (priv->animation);
|
|
|
|
if (list != NULL)
|
|
|
|
{
|
|
|
|
GdkPixbufFrame *frame = list->data;
|
|
|
|
|
|
|
|
return gdk_pixbuf_frame_get_pixbuf (frame);
|
|
|
|
}
|
|
|
|
}
|
2000-06-24 22:32:05 +00:00
|
|
|
|
|
|
|
return priv->pixbuf;
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|
|
|
|
|
1999-12-17 21:42:47 +00:00
|
|
|
/**
|
|
|
|
* gdk_pixbuf_loader_get_animation:
|
|
|
|
* @loader: A pixbuf loader
|
2000-01-07 18:29:13 +00:00
|
|
|
*
|
1999-12-17 21:42:47 +00:00
|
|
|
* Queries the GdkPixbufAnimation that a pixbuf loader is currently creating.
|
|
|
|
* In general it only makes sense to call this function afer the "area_prepared"
|
2000-01-07 18:29:13 +00:00
|
|
|
* signal has been emitted by the loader. If the image is not an animation,
|
|
|
|
* then it will return NULL.
|
|
|
|
*
|
1999-12-17 21:42:47 +00:00
|
|
|
* Return value: The GdkPixbufAnimation that the loader is loading, or NULL if
|
|
|
|
not enough data has been read to determine the information.
|
2000-06-24 22:32:05 +00:00
|
|
|
**/
|
1999-12-17 21:42:47 +00:00
|
|
|
GdkPixbufAnimation *
|
|
|
|
gdk_pixbuf_loader_get_animation (GdkPixbufLoader *loader)
|
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
GdkPixbufLoaderPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (loader != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF_LOADER (loader), NULL);
|
|
|
|
|
|
|
|
priv = loader->private;
|
|
|
|
|
|
|
|
return priv->animation;
|
1999-12-17 21:42:47 +00:00
|
|
|
}
|
|
|
|
|
1999-10-26 03:42:14 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2000-06-24 22:32:05 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
/* We have less the 128 bytes in the image. Flush it, and keep going. */
|
|
|
|
if (priv->image_module == NULL)
|
2000-10-18 18:42:54 +00:00
|
|
|
gdk_pixbuf_loader_load_module (loader, NULL, NULL);
|
2000-06-24 22:32:05 +00:00
|
|
|
|
|
|
|
if (priv->image_module && priv->image_module->stop_load)
|
|
|
|
priv->image_module->stop_load (priv->context);
|
|
|
|
|
|
|
|
priv->closed = TRUE;
|
|
|
|
|
|
|
|
gtk_signal_emit (GTK_OBJECT (loader), pixbuf_loader_signals[CLOSED]);
|
1999-10-26 03:42:14 +00:00
|
|
|
}
|