2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2004-10-05 03:54:42 +04:00
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
|
2003-06-05 17:24:28 +04:00
|
|
|
*/
|
|
|
|
|
2004-10-05 03:54:42 +04:00
|
|
|
#ifndef _NETSURF_IMAGE_GIF_H_
|
|
|
|
#define _NETSURF_IMAGE_GIF_H_
|
2003-06-05 17:24:28 +04:00
|
|
|
|
2005-02-03 16:05:29 +03:00
|
|
|
#include <stdbool.h>
|
2004-10-05 03:54:42 +04:00
|
|
|
#include "netsurf/image/gifread.h"
|
2003-09-08 01:08:13 +04:00
|
|
|
|
|
|
|
struct content;
|
|
|
|
|
|
|
|
struct content_gif_data {
|
2004-10-05 03:54:42 +04:00
|
|
|
struct gif_animation *gif; /**< GIF animation data */
|
2004-11-10 02:34:01 +03:00
|
|
|
int current_frame; /**< current frame to display [0...(max-1)] */
|
2003-09-08 01:08:13 +04:00
|
|
|
};
|
2003-06-05 17:24:28 +04:00
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool nsgif_create(struct content *c, const char *params[]);
|
|
|
|
bool nsgif_convert(struct content *c, int width, int height);
|
2003-06-05 17:24:28 +04:00
|
|
|
void nsgif_destroy(struct content *c);
|
2004-08-11 20:26:13 +04:00
|
|
|
bool nsgif_redraw(struct content *c, int x, int y,
|
2004-06-11 00:41:26 +04:00
|
|
|
int width, int height,
|
|
|
|
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
|
2004-08-15 23:06:24 +04:00
|
|
|
float scale, unsigned long background_colour);
|
2006-02-21 23:49:12 +03:00
|
|
|
bool nsgif_redraw_tiled(struct content *c, int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
|
|
|
|
float scale, unsigned long background_colour,
|
|
|
|
bool repeat_x, bool repeat_y);
|
2004-03-19 21:14:50 +03:00
|
|
|
|
2003-06-05 17:24:28 +04:00
|
|
|
#endif
|