1 /*
2  * Copyright (c) 2005 by the gtk2-perl team (see the file AUTHORS)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301  USA.
18  *
19  * $Id$
20  */
21 
22 #include "gtk2perl.h"
23 
24 MODULE = Gtk2::Gdk::PixbufSimpleAnim	PACKAGE = Gtk2::Gdk::PixbufSimpleAnim	PREFIX = gdk_pixbuf_simple_anim_
25 
26 GdkPixbufSimpleAnim_noinc *
27 gdk_pixbuf_simple_anim_new (class, gint width, gint height, gfloat rate)
28     C_ARGS:
29         width, height, rate
30 
31 void gdk_pixbuf_simple_anim_add_frame (GdkPixbufSimpleAnim *animation, GdkPixbuf *pixbuf)
32 
33 #if GTK_CHECK_VERSION (2, 18, 0)
34 
35 void gdk_pixbuf_simple_anim_set_loop (GdkPixbufSimpleAnim *animation, gboolean loop);
36 
37 gboolean gdk_pixbuf_simple_anim_get_loop (GdkPixbufSimpleAnim *animation);
38 
39 #endif /* 2.18 */
40 
41