/************************************************************************ * * MathConverter.java * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * 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 * * Copyright: 2002-2010 by Henrik Just * * All Rights Reserved. * * Version 1.2 (2010-02-19) * */ package writer2latex.xhtml; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; import writer2latex.office.*; public class MathConverter extends ConverterHelper { private boolean bSupportMathML; public MathConverter(OfficeReader ofr, XhtmlConfig config, Converter converter, boolean bSupportMathML) { super(ofr,config,converter); this.bSupportMathML = bSupportMathML; } public void convert(Node onode, Node hnode) { if (bSupportMathML) { convertNode(onode,hnode); } else { Document htmlDOM = hnode.getOwnerDocument(); NodeList annotationList = ((Element) onode).getElementsByTagName(XMLString.ANNOTATION); // Since OOo 3.2 if (annotationList.getLength()>0) { annotationList = ((Element) onode).getElementsByTagName(XMLString.MATH_ANNOTATION); } if (annotationList.getLength()>0 && annotationList.item(0).hasChildNodes()) { // Insert the StarMath annotation as a kbd element Element kbd = htmlDOM.createElement("kbd"); hnode.appendChild(kbd); NodeList list = annotationList.item(0).getChildNodes(); int nLen = list.getLength(); for (int i=0; i-1) { return s.substring(nPos+1); } else { return s; } } // OOo exports some characters (from the OpenSymbol/StarSymbol font) // in the private use area of unicode. These should be replaced // with real unicode positions. private String replacePrivateChars(String s) { int nLen = s.length(); StringBuffer buf = new StringBuffer(nLen); for (int i=0; i