1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2 /* GdkPixbuf library - Simple transformations of animations
3  *
4  * Copyright (C) 2007 Red Hat, Inc
5  *
6  * Authors: Matthias Clasen <mclasen@redhat.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef GDK_PIXBUF_SCALED_ANIM_H
23 #define GDK_PIXBUF_SCALED_ANIM_H
24 
25 #include <gdk-pixbuf/gdk-pixbuf-animation.h>
26 
27 G_BEGIN_DECLS
28 
29 #define GDK_TYPE_PIXBUF_SCALED_ANIM              (gdk_pixbuf_scaled_anim_get_type ())
30 #define GDK_TYPE_PIXBUF_SCALED_ANIM_ITER         (gdk_pixbuf_scaled_anim_iter_get_type ())
31 
32 typedef struct _GdkPixbufScaledAnim GdkPixbufScaledAnim;
33 typedef struct _GdkPixbufScaledAnimClass GdkPixbufScaledAnimClass;
34 
35 GType gdk_pixbuf_scaled_anim_get_type (void) G_GNUC_CONST;
36 GType gdk_pixbuf_scaled_anim_iter_get_type (void) G_GNUC_CONST;
37 
38 GdkPixbufScaledAnim *_gdk_pixbuf_scaled_anim_new (GdkPixbufAnimation *anim,
39                                                   gdouble             xscale,
40                                                   gdouble             yscale,
41                                                   gdouble             tscale);
42 
43 G_END_DECLS
44 
45 #endif  /* GDK_PIXBUF_SCALED_ANIM_H */
46