/* Lasem * * Copyright © 2009 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., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * Author: * Emmanuel Pacaud */ #include #include #include #include static GObjectClass *parent_class; /* GdomNode implementation */ static const char * _clip_path_element_get_node_name (LsmDomNode *node) { return "clipPath"; } /* LsmSvgElement implementation */ static void lsm_svg_clip_path_element_render (LsmSvgElement *self, LsmSvgView *view) { LsmSvgClipPathElement *clip = LSM_SVG_CLIP_PATH_ELEMENT (self); gboolean is_object_bounding_box; LsmSvgStyle *style; if (!clip->enable_rendering) { lsm_debug_render ("[LsmSvgClipPathElement::render] Direct rendering not allowed"); return; } else { clip->enable_rendering = FALSE; } style = lsm_svg_style_new_inherited (NULL, &self->property_bag); style->ignore_group_opacity = TRUE; lsm_svg_view_push_composition (view, style); is_object_bounding_box = (clip->units.value == LSM_SVG_PATTERN_UNITS_OBJECT_BOUNDING_BOX); if (is_object_bounding_box) { const LsmBox *viewport; static const LsmBox viewbox = {.x = 0.0, .y = 0.0, .width = 1.0, .height = 1.0}; viewport = lsm_svg_view_get_clip_extents (view); lsm_svg_view_push_viewport (view, viewport, &viewbox, NULL, LSM_SVG_OVERFLOW_HIDDEN); } LSM_SVG_ELEMENT_CLASS (parent_class)->render (self, view); if (is_object_bounding_box) { lsm_svg_view_pop_viewport (view); } lsm_svg_view_pop_composition (view); lsm_svg_style_unref (style); } static void lsm_svg_clip_path_element_enable_rendering (LsmSvgElement *element) { LSM_SVG_CLIP_PATH_ELEMENT (element)->enable_rendering = TRUE; } LsmDomNode * lsm_svg_clip_path_element_new (void) { return g_object_new (LSM_TYPE_SVG_CLIP_PATH_ELEMENT, NULL); } static const LsmSvgPatternUnits units_default = LSM_SVG_PATTERN_UNITS_USER_SPACE_ON_USE; static void lsm_svg_clip_path_element_init (LsmSvgClipPathElement *self) { self->enable_rendering = FALSE; self->units.value = units_default; } /* LsmSvgClipPathElement class */ static const LsmAttributeInfos lsm_svg_clip_path_element_attribute_infos[] = { { .name = "clipPathUnits", .trait_class = &lsm_svg_pattern_units_trait_class, .attribute_offset = offsetof (LsmSvgClipPathElement, units), .trait_default = &units_default } }; static void lsm_svg_clip_path_element_class_init (LsmSvgClipPathElementClass *klass) { LsmDomNodeClass *d_node_class = LSM_DOM_NODE_CLASS (klass); LsmSvgElementClass *s_element_class = LSM_SVG_ELEMENT_CLASS (klass); parent_class = g_type_class_peek_parent (klass); d_node_class->get_node_name = _clip_path_element_get_node_name; s_element_class->category = LSM_SVG_ELEMENT_CATEGORY_NONE; s_element_class->render = lsm_svg_clip_path_element_render; s_element_class->enable_rendering = lsm_svg_clip_path_element_enable_rendering; s_element_class->attribute_manager = lsm_attribute_manager_duplicate (s_element_class->attribute_manager); lsm_attribute_manager_add_attributes (s_element_class->attribute_manager, G_N_ELEMENTS (lsm_svg_clip_path_element_attribute_infos), lsm_svg_clip_path_element_attribute_infos); } G_DEFINE_TYPE (LsmSvgClipPathElement, lsm_svg_clip_path_element, LSM_TYPE_SVG_TRANSFORMABLE)