/* 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 * lsm_svg_tspan_element_get_node_name (LsmDomNode *node) { return "tspan"; } static gboolean lsm_svg_tspan_element_can_append_child (LsmDomNode *self, LsmDomNode *child) { return (LSM_IS_DOM_TEXT (child)); } /* LsmSvgElement implementation */ /* LsmSvgGraphic implementation */ static void lsm_svg_tspan_element_render (LsmSvgElement *self, LsmSvgView *view) { LsmSvgTspanElement *tspan = LSM_SVG_TSPAN_ELEMENT (self); LsmDomNode *node = LSM_DOM_NODE (self); LsmDomNode *iter; GString *string = g_string_new (""); double x, y; lsm_debug_render ("[LsmSvgTspanElement::render] Render"); if (node->first_child == NULL) return; for (iter = LSM_DOM_NODE (self)->first_child; iter != NULL; iter = iter->next_sibling) { if (LSM_IS_DOM_TEXT (iter)) { g_string_append (string, lsm_dom_node_get_node_value (iter)); } } x = lsm_svg_view_normalize_length (view, &tspan->x.length, LSM_SVG_LENGTH_DIRECTION_HORIZONTAL); y = lsm_svg_view_normalize_length (view, &tspan->y.length, LSM_SVG_LENGTH_DIRECTION_VERTICAL); lsm_svg_view_show_text (view, g_strstrip (string->str), x, y); g_string_free (string, TRUE); } /* LsmSvgTspanElement implementation */ LsmDomNode * lsm_svg_tspan_element_new (void) { return g_object_new (LSM_TYPE_SVG_TSPAN_ELEMENT, NULL); } static const LsmSvgLength length_default = { .value_unit = 0.0, .type = LSM_SVG_LENGTH_TYPE_PX}; static void lsm_svg_tspan_element_init (LsmSvgTspanElement *self) { self->x.length = length_default; self->y.length = length_default; } static void lsm_svg_tspan_element_finalize (GObject *object) { parent_class->finalize (object); } /* LsmSvgTspanElement class */ static const LsmAttributeInfos lsm_svg_tspan_element_attribute_infos[] = { { .name = "x", .attribute_offset = offsetof (LsmSvgTspanElement, x), .trait_class = &lsm_svg_length_trait_class, .trait_default = &length_default }, { .name = "y", .attribute_offset = offsetof (LsmSvgTspanElement, y), .trait_class = &lsm_svg_length_trait_class, .trait_default = &length_default } }; static void lsm_svg_tspan_element_class_init (LsmSvgTspanElementClass *s_tspan_class) { GObjectClass *object_class = G_OBJECT_CLASS (s_tspan_class); LsmDomNodeClass *d_node_class = LSM_DOM_NODE_CLASS (s_tspan_class); LsmSvgElementClass *s_element_class = LSM_SVG_ELEMENT_CLASS (s_tspan_class); parent_class = g_type_class_peek_parent (s_tspan_class); object_class->finalize = lsm_svg_tspan_element_finalize; d_node_class->get_node_name = lsm_svg_tspan_element_get_node_name; d_node_class->can_append_child = lsm_svg_tspan_element_can_append_child; s_element_class->category = LSM_SVG_ELEMENT_CATEGORY_TEXT_CONTENT | LSM_SVG_ELEMENT_CATEGORY_TEXT_CONTENT_CHILD; s_element_class->render = lsm_svg_tspan_element_render; 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_tspan_element_attribute_infos), lsm_svg_tspan_element_attribute_infos); } G_DEFINE_TYPE (LsmSvgTspanElement, lsm_svg_tspan_element, LSM_TYPE_SVG_ELEMENT)