mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
b4e4a0ed9d
2001-05-04 Havoc Pennington <hp@redhat.com> * configure.in: fix some shell typos * gtk/gtkcolorsel.c (gtk_color_selection_destroy): warning fix * gtk/gtkimage.c: handle animations * gtk/gtkcheckbutton.c (gtk_check_button_size_request): request border_width * 2, not just border_width * gtk/gtkscale.c: add "format_value" signal to allow people to override the way values are drawn. (gtk_scale_get_value_size): fix width/height mistake, and compute size from actual displayed text, not from made-up text. * gtk/gtktexttag.c (gtk_text_tag_class_init): fix return type in signal registration * tests/testtext.c: Add "Remove all tags" menu item for testing * gtk/gtktextbuffer.c (gtk_text_buffer_remove_all_tags): implement * demos/gtk-demo/main.c (main): add hack so we can find modules without installing gtk * demos/gtk-demo/textview.c (insert_text): demo font scaling * gtk/gtkcellrenderertext.c: Add "scale" property (font scaling factor) (gtk_cell_renderer_text_set_property): remove some bogus g_object_notify * gtk/gtktexttag.c: add "scale" property which is a font scaling factor * gtk/gtktextlayout.c (add_text_attrs): add font scale attribute to layout * gtk/gtktextiter.c (gtk_text_iter_is_start): rename from gtk_text_iter_is_first 2001-05-04 Havoc Pennington <hp@redhat.com> * pixops/pixops.c (pixops_process): merge fix from stable: Patch from hoshem@mel.comcen.com.au to fix nonzero X offsets. Fixes bug #50371. * gdk-pixbuf/pixops/pixops.c (pixops_composite_nearest): merge from stable: Patch from OKADA Mitsuru <m-okada@fjb.co.jp> to fix confusion of using "src" instead of "p". (pixops_composite_color_nearest): Use a more accurate (and correct, to begin with) compositing method. This cures checks showing through on images with no alpha. * gdk-pixbuf.c (gdk_pixbuf_fill): fix bug that left some trailing bytes unfilled. * gdk-pixbuf-io.h: fix UpdatedNotifyFunc to use signed ints * gdk-pixbuf-loader.h (struct _GdkPixbufLoaderClass): Change area_updated signal to use signed ints. Removed animation-related signals. * io-gif.c, io-gif-animation.h, io-gif-animation.c: Massive rewrite action * gdk-pixbuf-animation.c: Add GdkPixbufAnimationIter to abstract all the pesky details. Remove old frame-based API. Make GdkPixbufAnimation an abstract base class, derived by the loaders.
170 lines
5.6 KiB
C
170 lines
5.6 KiB
C
/* -*- 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 <crichton@gimp.org>
|
||
* Miguel de Icaza <miguel@gnu.org>
|
||
* Federico Mena-Quintero <federico@gimp.org>
|
||
* Havoc Pennington <hp@redhat.com>
|
||
*
|
||
* 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, write to the
|
||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||
* Boston, MA 02111-1307, USA.
|
||
*/
|
||
|
||
#ifndef GDK_PIXBUF_GIF_H
|
||
#define GDK_PIXBUF_GIF_H
|
||
|
||
#include "gdk-pixbuf-private.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;
|
||
|
||
#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;
|
||
|
||
/* Number of frames */
|
||
int n_frames;
|
||
|
||
/* Total length of animation */
|
||
int total_time;
|
||
|
||
/* List of GdkPixbufFrame structures */
|
||
GList *frames;
|
||
|
||
/* bounding box size */
|
||
int width, height;
|
||
|
||
guchar bg_red;
|
||
guchar bg_green;
|
||
guchar bg_blue;
|
||
};
|
||
|
||
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))
|
||
|
||
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;
|
||
};
|
||
|
||
struct _GdkPixbufGifAnimIterClass {
|
||
GdkPixbufAnimationIterClass parent_class;
|
||
|
||
};
|
||
|
||
GType gdk_pixbuf_gif_anim_iter_get_type (void) G_GNUC_CONST;
|
||
|
||
|
||
|
||
struct _GdkPixbufFrame {
|
||
/* The pixbuf with this frame's image data */
|
||
GdkPixbuf *pixbuf;
|
||
|
||
/* Offsets for overlaying onto the GIF graphic area */
|
||
int x_offset;
|
||
int y_offset;
|
||
|
||
/* Frame duration in ms */
|
||
int delay_time;
|
||
|
||
/* Sum of preceding delay times */
|
||
int elapsed;
|
||
|
||
/* Overlay mode */
|
||
GdkPixbufFrameAction action;
|
||
|
||
/* TRUE if the pixbuf has been modified since
|
||
* the last frame composite operation
|
||
*/
|
||
gboolean need_recomposite;
|
||
|
||
/* TRUE if the background for this frame is transparent */
|
||
gboolean bg_transparent;
|
||
|
||
/* The below reflects the "use hell of a lot of RAM"
|
||
* philosophy of coding
|
||
*/
|
||
|
||
/* Cached composite image (the image you actually display
|
||
* for this frame)
|
||
*/
|
||
GdkPixbuf *composited;
|
||
|
||
/* Cached revert image (the contents of the area
|
||
* covered by the frame prior to compositing;
|
||
* same size as pixbuf, not as the composite image; only
|
||
* used for FRAME_REVERT frames)
|
||
*/
|
||
GdkPixbuf *revert;
|
||
};
|
||
|
||
void gdk_pixbuf_gif_anim_frame_composite (GdkPixbufGifAnim *gif_anim,
|
||
GdkPixbufFrame *frame);
|
||
|
||
#endif
|