// Copyright (C) 2000-2007, Luca Padovani . // // This file is part of GtkMathView, a flexible, high-quality rendering // engine for MathML documents. // // GtkMathView 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 3 of the License, or // (at your option) any later version. // // GtkMathView 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 program. If not, see . #include #include #include #include #include "AbstractLogger.hh" #include "libxml2_Model.hh" #include "libxml2_MathView.hh" #include "SVG_libxml2_StreamRenderingContext.hh" SVG_libxml2_StreamRenderingContext::SVG_libxml2_StreamRenderingContext(const SmartPtr& logger, std::ostream& output, const SmartPtr& _view) : SVG_StreamRenderingContext(logger, output), view(_view) { } SVG_libxml2_StreamRenderingContext::~SVG_libxml2_StreamRenderingContext() { } String SVG_libxml2_StreamRenderingContext::toSVGLength(const scaled& s) const { std::ostringstream buffer; buffer << std::fixed << std::setprecision(2) << (s.toFloat() * 72.27) / 90; return buffer.str(); } String SVG_libxml2_StreamRenderingContext::getId(const SmartPtr& elem) const { assert(elem); if (xmlElement* el = view->modelElementOfElement(elem)) { if (xmlChar* id = xmlGetProp((xmlNode*) el, libxml2_Model::toModelString("id"))) { String res = libxml2_Model::fromModelString(id); xmlFree(id); return res; } } return ""; }