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
|
|
|
|
* Copyright 2003 Philip Pemberton <philpem@users.sourceforge.net>
|
2004-04-07 03:13:25 +04:00
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@sourceforge.net>
|
2003-06-05 17:24:28 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RISCOS_GIF_H_
|
|
|
|
#define _NETSURF_RISCOS_GIF_H_
|
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
#include "oslib/osspriteop.h"
|
2004-04-07 03:13:25 +04:00
|
|
|
#include "netsurf/riscos/gifread.h"
|
2003-09-08 01:08:13 +04:00
|
|
|
|
|
|
|
struct content;
|
|
|
|
|
|
|
|
struct content_gif_data {
|
2004-03-18 00:05:55 +03:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* The GIF data
|
2004-03-18 00:05:55 +03:00
|
|
|
*/
|
2004-04-07 03:13:25 +04:00
|
|
|
struct gif_animation *gif;
|
2004-03-18 00:05:55 +03:00
|
|
|
|
|
|
|
/** The current frame number of the GIF to display, [0...(max-1)]
|
|
|
|
*/
|
|
|
|
unsigned int current_frame;
|
2003-09-08 01:08:13 +04:00
|
|
|
};
|
2003-06-05 17:24:28 +04:00
|
|
|
|
|
|
|
void nsgif_init(void);
|
2003-12-27 23:15:23 +03:00
|
|
|
void nsgif_create(struct content *c, const char *params[]);
|
2003-06-05 17:24:28 +04:00
|
|
|
int nsgif_convert(struct content *c, unsigned int width, unsigned int height);
|
|
|
|
void nsgif_destroy(struct content *c);
|
|
|
|
void nsgif_redraw(struct content *c, long x, long y,
|
2003-09-10 21:10:25 +04:00
|
|
|
unsigned long width, unsigned long height,
|
2004-02-25 18:12:58 +03:00
|
|
|
long clip_x0, long clip_y0, long clip_x1, long clip_y1,
|
|
|
|
float scale);
|
2004-03-19 21:14:50 +03:00
|
|
|
|
2003-06-05 17:24:28 +04:00
|
|
|
#endif
|