/* Lasem * * Copyright © 2012 Emmanuel Pacaud * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1335, USA. * * Author: * Emmanuel Pacaud */ #include #include static GObjectClass *parent_class; /* GdomNode implementation */ static const char * lsm_svg_filter_flood_get_node_name (LsmDomNode *node) { return "feFlood"; } /* LsmSvgElement implementation */ static void lsm_svg_filter_flood_apply (LsmSvgFilterPrimitive *self, LsmSvgView *view, const char *input, const char *output, const LsmBox *subregion) { lsm_svg_view_apply_flood (view, output, subregion); } /* LsmSvgFilterFlood implementation */ LsmDomNode * lsm_svg_filter_flood_new (void) { return g_object_new (LSM_TYPE_SVG_FILTER_FLOOD, NULL); } static void lsm_svg_filter_flood_init (LsmSvgFilterFlood *self) { } static void lsm_svg_filter_flood_finalize (GObject *object) { parent_class->finalize (object); } /* LsmSvgFilterFlood class */ static void lsm_svg_filter_flood_class_init (LsmSvgFilterFloodClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); LsmDomNodeClass *d_node_class = LSM_DOM_NODE_CLASS (klass); LsmSvgElementClass *s_element_class = LSM_SVG_ELEMENT_CLASS (klass); LsmSvgFilterPrimitiveClass *f_primitive_class = LSM_SVG_FILTER_PRIMITIVE_CLASS (klass); parent_class = g_type_class_peek_parent (klass); object_class->finalize = lsm_svg_filter_flood_finalize; d_node_class->get_node_name = lsm_svg_filter_flood_get_node_name; s_element_class->attribute_manager = lsm_attribute_manager_duplicate (s_element_class->attribute_manager); f_primitive_class->apply = lsm_svg_filter_flood_apply; } G_DEFINE_TYPE (LsmSvgFilterFlood, lsm_svg_filter_flood, LSM_TYPE_SVG_FILTER_PRIMITIVE)