/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ /* GdkPixbuf library - GIF loader declarations * * Copyright (C) 1999 The Free Software Foundation * * Authors: Mark Crichton * Miguel de Icaza * Federico Mena-Quintero * Havoc Pennington * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ #ifndef GDK_PIXBUF_GIF_H #define GDK_PIXBUF_GIF_H #include "gdk-pixbuf-animation.h" typedef enum { /* Keep this frame and composite next frame over it */ /* (GIF disposal method 1) */ GDK_PIXBUF_FRAME_RETAIN, /* Revert to background color before compositing next frame */ /* (GIF disposal method 2) */ GDK_PIXBUF_FRAME_DISPOSE, /* Revert to previously-displayed composite image after * displaying this frame */ /* (GIF disposal method 3) */ GDK_PIXBUF_FRAME_REVERT } GdkPixbufFrameAction; typedef struct _GdkPixbufGifAnim GdkPixbufGifAnim; typedef struct _GdkPixbufGifAnimClass GdkPixbufGifAnimClass; typedef struct _GdkPixbufFrame GdkPixbufFrame; #define GDK_TYPE_PIXBUF_GIF_ANIM (gdk_pixbuf_gif_anim_get_type ()) #define GDK_PIXBUF_GIF_ANIM(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_GIF_ANIM, GdkPixbufGifAnim)) #define GDK_IS_PIXBUF_GIF_ANIM(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_GIF_ANIM)) #define GDK_PIXBUF_GIF_ANIM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_PIXBUF_GIF_ANIM, GdkPixbufGifAnimClass)) #define GDK_IS_PIXBUF_GIF_ANIM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_PIXBUF_GIF_ANIM)) #define GDK_PIXBUF_GIF_ANIM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_PIXBUF_GIF_ANIM, GdkPixbufGifAnimClass)) /* Private part of the GdkPixbufGifAnim structure */ struct _GdkPixbufGifAnim { GdkPixbufAnimation parent_instance; /* Total length of animation */ int total_time; /* Color map */ guchar color_map[256 * 3]; /* List of GdkPixbufFrame structures */ GList *frames; /* bounding box size */ int width, height; int loop; /* Last rendered frames */ GdkPixbuf *last_frame_data; GdkPixbufFrame *last_frame; GdkPixbuf *last_frame_revert_data; }; struct _GdkPixbufGifAnimClass { GdkPixbufAnimationClass parent_class; }; GType gdk_pixbuf_gif_anim_get_type (void) G_GNUC_CONST; typedef struct _GdkPixbufGifAnimIter GdkPixbufGifAnimIter; typedef struct _GdkPixbufGifAnimIterClass GdkPixbufGifAnimIterClass; #define GDK_TYPE_PIXBUF_GIF_ANIM_ITER (gdk_pixbuf_gif_anim_iter_get_type ()) #define GDK_PIXBUF_GIF_ANIM_ITER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_GIF_ANIM_ITER, GdkPixbufGifAnimIter)) #define GDK_IS_PIXBUF_GIF_ANIM_ITER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_GIF_ANIM_ITER)) #define GDK_PIXBUF_GIF_ANIM_ITER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_PIXBUF_GIF_ANIM_ITER, GdkPixbufGifAnimIterClass)) #define GDK_IS_PIXBUF_GIF_ANIM_ITER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_PIXBUF_GIF_ANIM_ITER)) #define GDK_PIXBUF_GIF_ANIM_ITER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_PIXBUF_GIF_ANIM_ITER, GdkPixbufGifAnimIterClass)) G_GNUC_BEGIN_IGNORE_DEPRECATIONS struct _GdkPixbufGifAnimIter { GdkPixbufAnimationIter parent_instance; GdkPixbufGifAnim *gif_anim; GTimeVal start_time; GTimeVal current_time; /* Time in milliseconds into this run of the animation */ gint position; GList *current_frame; gint first_loop_slowness; }; G_GNUC_END_IGNORE_DEPRECATIONS struct _GdkPixbufGifAnimIterClass { GdkPixbufAnimationIterClass parent_class; }; GType gdk_pixbuf_gif_anim_iter_get_type (void) G_GNUC_CONST; struct _GdkPixbufFrame { /* Compressed frame data */ GByteArray *lzw_data; guint8 lzw_code_size; /* Position of frame data in image */ int x_offset; int y_offset; guint16 width; guint16 height; /* Layout of pixels */ gboolean interlace; /* Color map */ gboolean color_map_allocated; guchar *color_map; /* Transparency */ int transparent_index; /* Frame duration in ms */ int delay_time; /* Sum of preceding delay times */ int elapsed; /* Overlay mode */ GdkPixbufFrameAction action; }; #endif