fix build for --disable-gtk-doc
[swfdec.git] / swfdec / swfdec_graphic.c
blobbc40093dcfe27d2d52b1cdee26f96be2bcb21f96
1 /* Swfdec
2 * Copyright (C) 2003-2006 David Schleef <ds@schleef.org>
3 * 2005-2006 Eric Anholt <eric@anholt.net>
4 * 2006-2008 Benjamin Otte <otte@gnome.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301 USA
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
26 #include "swfdec_graphic.h"
27 #include "swfdec_graphic_movie.h"
30 G_DEFINE_ABSTRACT_TYPE (SwfdecGraphic, swfdec_graphic, SWFDEC_TYPE_CHARACTER)
32 static void
33 swfdec_graphic_class_init (SwfdecGraphicClass *klass)
35 klass->movie_type = SWFDEC_TYPE_GRAPHIC_MOVIE;
38 static void
39 swfdec_graphic_init (SwfdecGraphic *graphic)
43 void
44 swfdec_graphic_render (SwfdecGraphic *graphic, cairo_t *cr,
45 const SwfdecColorTransform *trans)
47 SwfdecGraphicClass *klass = SWFDEC_GRAPHIC_GET_CLASS (graphic);
49 if (klass->render)
50 klass->render (graphic, cr, trans);
53 gboolean
54 swfdec_graphic_mouse_in (SwfdecGraphic *graphic, double x, double y)
56 SwfdecGraphicClass *klass = SWFDEC_GRAPHIC_GET_CLASS (graphic);
58 if (klass->mouse_in)
59 return klass->mouse_in (graphic, x, y);
60 else
61 return FALSE;