/************************************************************************ * * LaTeXConfig.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-2009 by Henrik Just * * All Rights Reserved. * * Version 1.0 (2009-02-17) * */ package writer2latex.latex; import java.util.LinkedList; import java.util.Hashtable; import java.util.Enumeration; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.Element; import writer2latex.base.BooleanOption; import writer2latex.base.IntegerOption; import writer2latex.base.Option; import writer2latex.latex.util.HeadingMap; import writer2latex.latex.i18n.ClassicI18n; import writer2latex.latex.i18n.ReplacementTrie; import writer2latex.latex.util.StyleMap; import writer2latex.util.Misc; public class LaTeXConfig extends writer2latex.base.ConfigBase { protected int getOptionCount() { return 59; } protected String getDefaultConfigPath() { return "/writer2latex/latex/config/"; } // Override setOption to be backwards compatible public void setOption(String sName,String sValue) { // this option has been renamed: if (sName.equals("keep_image_size")) { sName = "original_image_size"; } super.setOption(sName, sValue); } // Backend public static final int GENERIC = 0; public static final int DVIPS = 1; public static final int PDFTEX = 2; public static final int UNSPECIFIED = 3; public static final int XETEX = 4; // Formatting (must be ordered) public static final int IGNORE_ALL = 0; public static final int IGNORE_MOST = 1; public static final int CONVERT_BASIC = 2; public static final int CONVERT_MOST = 3; public static final int CONVERT_ALL = 4; // Page formatting public static final int CONVERT_HEADER_FOOTER = 5; // Handling of other formatting public static final int IGNORE = 0; public static final int ACCEPT = 1; public static final int WARNING = 2; public static final int ERROR = 3; // Notes //public static final int IGNORE = 0; public static final int COMMENT = 1; public static final int PDFANNOTATION = 2; public static final int MARGINPAR = 3; public static final int CUSTOM = 4; // Options protected int OPTION_COUNT = 59; private static final int BACKEND = 0; private static final int NO_PREAMBLE = 1; private static final int NO_INDEX = 2; private static final int DOCUMENTCLASS = 3; private static final int GLOBAL_OPTIONS = 4; private static final int INPUTENCODING = 5; private static final int MULTILINGUAL = 6; private static final int GREEK_MATH = 7; private static final int USE_OOOMATH = 8; private static final int USE_PIFONT = 9; private static final int USE_IFSYM = 10; private static final int USE_WASYSYM = 11; private static final int USE_BBDING = 12; private static final int USE_EUROSYM = 13; private static final int USE_TIPA = 14; private static final int USE_COLOR = 15; private static final int USE_COLORTBL = 16; private static final int USE_GEOMETRY = 17; private static final int USE_FANCYHDR = 18; private static final int USE_HYPERREF = 19; private static final int USE_CAPTION = 20; private static final int USE_LONGTABLE = 21; private static final int USE_SUPERTABULAR = 22; private static final int USE_TABULARY = 23; private static final int USE_ENDNOTES = 24; private static final int USE_ULEM = 25; private static final int USE_LASTPAGE = 26; private static final int USE_TITLEREF = 27; private static final int USE_OOOREF = 28; private static final int USE_BIBTEX = 29; private static final int BIBTEX_STYLE = 30; private static final int EXTERNAL_BIBTEX_FILES = 31; private static final int FORMATTING = 32; private static final int PAGE_FORMATTING = 33; private static final int OTHER_STYLES = 34; private static final int IMAGE_CONTENT = 35; private static final int TABLE_CONTENT = 36; private static final int IGNORE_HARD_PAGE_BREAKS = 37; private static final int IGNORE_HARD_LINE_BREAKS = 38; private static final int IGNORE_EMPTY_PARAGRAPHS = 39; private static final int IGNORE_DOUBLE_SPACES = 40; private static final int ALIGN_FRAMES = 41; private static final int FLOAT_FIGURES = 42; private static final int FLOAT_TABLES = 43; private static final int FLOAT_OPTIONS = 44; private static final int FIGURE_SEQUENCE_NAME = 45; private static final int TABLE_SEQUENCE_NAME = 46; private static final int IMAGE_OPTIONS = 47; private static final int REMOVE_GRAPHICS_EXTENSION = 48; private static final int ORIGINAL_IMAGE_SIZE = 49; private static final int SIMPLE_TABLE_LIMIT = 50; private static final int NOTES = 51; private static final int METADATA = 52; private static final int TABSTOP = 53; private static final int WRAP_LINES_AFTER = 54; private static final int SPLIT_LINKED_SECTIONS = 55; private static final int SPLIT_TOPLEVEL_SECTIONS = 56; private static final int SAVE_IMAGES_IN_SUBDIR = 57; private static final int DEBUG = 58; protected LinkedList customPreamble = new LinkedList(); protected StyleMap par = new StyleMap(); protected StyleMap parBlock = new StyleMap(); protected StyleMap text = new StyleMap(); protected StyleMap list = new StyleMap(); protected StyleMap listItem = new StyleMap(); protected StyleMap textAttr = new StyleMap(); protected HeadingMap headingMap = new HeadingMap(5); protected Hashtable mathSymbols = new Hashtable(); protected ReplacementTrie stringReplace = new ReplacementTrie(); public LaTeXConfig() { super(); // create options with default values options[NO_PREAMBLE] = new BooleanOption("no_preamble","false"); options[NO_INDEX] = new BooleanOption("no_index","false"); options[DOCUMENTCLASS] = new Option("documentclass","article"); options[GLOBAL_OPTIONS] = new Option("global_options",""); options[BACKEND] = new IntegerOption("backend","pdftex") { public void setString(String sValue) { super.setString(sValue); if ("generic".equals(sValue)) nValue = GENERIC; else if ("dvips".equals(sValue)) nValue = DVIPS; else if ("pdftex".equals(sValue)) nValue = PDFTEX; else if ("unspecified".equals(sValue)) nValue = UNSPECIFIED; else if ("xetex".equals(sValue)) nValue = XETEX; } }; options[INPUTENCODING] = new IntegerOption("inputencoding",ClassicI18n.writeInputenc(ClassicI18n.ASCII)) { public void setString(String sValue) { super.setString(sValue); nValue = ClassicI18n.readInputenc(sValue); } }; options[MULTILINGUAL] = new BooleanOption("multilingual","true"); options[GREEK_MATH] = new BooleanOption("greek_math","true"); options[USE_OOOMATH] = new BooleanOption("use_ooomath","false"); options[USE_PIFONT] = new BooleanOption("use_pifont","false"); options[USE_IFSYM] = new BooleanOption("use_ifsym","false"); options[USE_WASYSYM] = new BooleanOption("use_wasysym","false"); options[USE_BBDING] = new BooleanOption("use_bbding","false"); options[USE_EUROSYM] = new BooleanOption("use_eurosym","false"); options[USE_TIPA] = new BooleanOption("use_tipa","false"); options[USE_COLOR] = new BooleanOption("use_color","true"); options[USE_COLORTBL] = new BooleanOption("use_colortbl","false"); options[USE_GEOMETRY] = new BooleanOption("use_geometry","false"); options[USE_FANCYHDR] = new BooleanOption("use_fancyhdr","false"); options[USE_HYPERREF] = new BooleanOption("use_hyperref","true"); options[USE_CAPTION] = new BooleanOption("use_caption","false"); options[USE_LONGTABLE] = new BooleanOption("use_longtable","false"); options[USE_SUPERTABULAR] = new BooleanOption("use_supertabular","true"); options[USE_TABULARY] = new BooleanOption("use_tabulary","false"); options[USE_ENDNOTES] = new BooleanOption("use_endnotes","false"); options[USE_ULEM] = new BooleanOption("use_ulem","false"); options[USE_LASTPAGE] = new BooleanOption("use_lastpage","false"); options[USE_TITLEREF] = new BooleanOption("use_titleref","false"); options[USE_OOOREF] = new BooleanOption("use_oooref","false"); options[USE_BIBTEX] = new BooleanOption("use_bibtex","false"); options[BIBTEX_STYLE] = new Option("bibtex_style","plain"); options[EXTERNAL_BIBTEX_FILES] = new Option("external_bibtex_files",""); options[FORMATTING] = new IntegerOption("formatting","convert_basic") { public void setString(String sValue) { super.setString(sValue); if ("convert_all".equals(sValue)) nValue = CONVERT_ALL; else if ("convert_most".equals(sValue)) nValue = CONVERT_MOST; else if ("convert_basic".equals(sValue)) nValue = CONVERT_BASIC; else if ("ignore_most".equals(sValue)) nValue = IGNORE_MOST; else if ("ignore_all".equals(sValue)) nValue = IGNORE_ALL; } }; options[PAGE_FORMATTING] = new IntegerOption("page_formatting","convert_all") { public void setString(String sValue) { super.setString(sValue); if ("convert_all".equals(sValue)) nValue = CONVERT_ALL; else if ("convert_header_footer".equals(sValue)) nValue = CONVERT_HEADER_FOOTER; else if ("ignore_all".equals(sValue)) nValue = IGNORE_ALL; } }; options[OTHER_STYLES] = new ContentHandlingOption("other_styles","accept"); options[IMAGE_CONTENT] = new ContentHandlingOption("image_content","accept"); options[TABLE_CONTENT] = new ContentHandlingOption("table_content","accept"); options[IGNORE_HARD_PAGE_BREAKS] = new BooleanOption("ignore_hard_page_breaks","false"); options[IGNORE_HARD_LINE_BREAKS] = new BooleanOption("ignore_hard_line_breaks","false"); options[IGNORE_EMPTY_PARAGRAPHS] = new BooleanOption("ignore_empty_paragraphs","false"); options[IGNORE_DOUBLE_SPACES] = new BooleanOption("ignore_double_spaces","false"); options[ALIGN_FRAMES] = new BooleanOption("align_frames","true"); options[FLOAT_FIGURES] = new BooleanOption("float_figures","false"); options[FLOAT_TABLES] = new BooleanOption("float_tables","false"); options[FLOAT_OPTIONS] = new Option("float_options","h"); options[FIGURE_SEQUENCE_NAME] = new BooleanOption("figure_sequence_name",""); options[TABLE_SEQUENCE_NAME] = new BooleanOption("table_sequence_name",""); options[IMAGE_OPTIONS] = new Option("image_options",""); options[REMOVE_GRAPHICS_EXTENSION] = new BooleanOption("remove_graphics_extension","false"); options[ORIGINAL_IMAGE_SIZE] = new BooleanOption("original_image_size","false"); options[SIMPLE_TABLE_LIMIT] = new IntegerOption("simple_table_limit","0") { public void setString(String sValue) { super.setString(sValue); nValue = Misc.getPosInteger(sValue,0); } }; options[NOTES] = new IntegerOption("notes","comment") { public void setString(String sValue) { super.setString(sValue); if ("ignore".equals(sValue)) nValue = IGNORE; else if ("comment".equals(sValue)) nValue = COMMENT; else if ("pdfannotation".equals(sValue)) nValue = PDFANNOTATION; else if ("marginpar".equals(sValue)) nValue = MARGINPAR; else nValue = CUSTOM; } }; options[METADATA] = new BooleanOption("metadata","true"); options[TABSTOP] = new Option("tabstop",""); options[WRAP_LINES_AFTER] = new IntegerOption("wrap_lines_after","72") { public void setString(String sValue) { super.setString(sValue); nValue = Misc.getPosInteger(sValue,0); } }; options[SPLIT_LINKED_SECTIONS] = new BooleanOption("split_linked_sections","false"); options[SPLIT_TOPLEVEL_SECTIONS] = new BooleanOption("split_toplevel_sections","false"); options[SAVE_IMAGES_IN_SUBDIR] = new BooleanOption("save_images_in_subdir","false"); options[DEBUG] = new BooleanOption("debug","false"); // Headings for article class: headingMap.setLevelData(1,"section",1); headingMap.setLevelData(2,"subsection",2); headingMap.setLevelData(3,"subsubsection",3); headingMap.setLevelData(4,"paragraph",4); headingMap.setLevelData(5,"subparagraph",5); // Standard string replace: // Fix french spacing; replace nonbreaking space // right before em-dash, !, ?, : and ; (babel handles this) stringReplace.put("\u00A0\u2014"," \u2014",ClassicI18n.readFontencs("any")); stringReplace.put("\u00A0!"," !",ClassicI18n.readFontencs("any")); stringReplace.put("\u00A0?"," ?",ClassicI18n.readFontencs("any")); stringReplace.put("\u00A0:"," :",ClassicI18n.readFontencs("any")); stringReplace.put("\u00A0;"," ;",ClassicI18n.readFontencs("any")); // Right after opening guillemet and right before closing guillemet: // Here we must *keep* the non-breaking space // TODO: Use \og and \fg if the document contains french... //stringReplace.put("\u00AB\u00A0","\u00AB ",I18n.readFontencs("any")); //stringReplace.put("\u00A0\u00BB"," \u00BB",I18n.readFontencs("any")); } protected void readInner(Element elm) { if (elm.getTagName().equals("style-map")) { String sName = elm.getAttribute("name"); String sFamily = elm.getAttribute("family"); if (sFamily.length()==0) { // try old name sFamily = elm.getAttribute("class"); } String sBefore = elm.getAttribute("before"); String sAfter = elm.getAttribute("after"); boolean bLineBreak = !"false".equals(elm.getAttribute("line-break")); boolean bVerbatim = "true".equals(elm.getAttribute("verbatim")); if ("paragraph".equals(sFamily)) { par.put(sName,sBefore,sAfter,bLineBreak,bVerbatim); } if ("paragraph-block".equals(sFamily)) { String sNext = elm.getAttribute("next"); parBlock.put(sName,sBefore,sAfter,sNext,bVerbatim); } else if ("text".equals(sFamily)) { text.put(sName,sBefore,sAfter,false,bVerbatim); } else if ("list".equals(sFamily)) { list.put(sName,sBefore,sAfter); } else if ("listitem".equals(sFamily)) { listItem.put(sName,sBefore,sAfter); } else if ("text-attribute".equals(sFamily)) { textAttr.put(sName, sBefore, sAfter); } } else if (elm.getTagName().equals("heading-map")) { readHeadingMap(elm); } else if (elm.getTagName().equals("string-replace")) { String sInput = elm.getAttribute("input"); String sLaTeXCode = elm.getAttribute("latex-code"); String sFontencs = elm.getAttribute("fontencs"); int nFontencs = ClassicI18n.readFontencs(sFontencs.length()>0 ? sFontencs : "any"); stringReplace.put(sInput,sLaTeXCode,nFontencs); } else if (elm.getTagName().equals("custom-preamble")) { Node child = elm.getFirstChild(); while (child!=null) { if (child.getNodeType()==Node.TEXT_NODE) { customPreamble.add(child.getNodeValue()); } child = child.getNextSibling(); } } else if (elm.getTagName().equals("math-symbol-map")) { String sName = elm.getAttribute("name"); String sLatex = elm.getAttribute("latex"); mathSymbols.put(sName,sLatex); } } public void readHeadingMap(Element node) { int nMaxLevel = Misc.getPosInteger(node.getAttribute("max-level"),0); headingMap.reset(nMaxLevel); Node child = node.getFirstChild(); while (child!=null) { if (child.getNodeType()==Node.ELEMENT_NODE) { Element elm = (Element) child; if (elm.getTagName().equals("heading-level-map")) { int nWriterLevel = Misc.getPosInteger(elm.getAttribute("writer-level"),1); String sName = elm.getAttribute("name"); int nLevel = Misc.getPosInteger(elm.getAttribute("level"),0); headingMap.setLevelData(nWriterLevel,sName,nLevel); } } child = child.getNextSibling(); } } protected void writeInner(Document dom) { // Write math symbol map Enumeration msEnum = mathSymbols.keys(); while (msEnum.hasMoreElements()) { String sName = msEnum.nextElement(); String sLatex = mathSymbols.get(sName); Element msNode = dom.createElement("math-symbol-map"); msNode.setAttribute("name",sName); msNode.setAttribute("latex",sLatex); dom.getDocumentElement().appendChild(msNode); } writeStyleMap(dom,par,"paragraph"); writeStyleMap(dom,parBlock,"paragraph-block"); writeStyleMap(dom,text,"text"); writeStyleMap(dom,list,"list"); writeStyleMap(dom,listItem,"listitem"); writeStyleMap(dom,textAttr,"text-attribute"); Element hmNode = dom.createElement("heading-map"); hmNode.setAttribute("max-level",Integer.toString(headingMap.getMaxLevel())); dom.getDocumentElement().appendChild(hmNode); for (int i=1; i<=headingMap.getMaxLevel(); i++) { Element hlmNode = dom.createElement("heading-level-map"); hlmNode.setAttribute("writer-level",Integer.toString(i)); hlmNode.setAttribute("name",headingMap.getName(i)); hlmNode.setAttribute("level",Integer.toString(headingMap.getLevel(i))); hmNode.appendChild(hlmNode); } // TODO: Export string replacements //String[] sInputStrings = stringReplace.getInputStrings(); /* int nSize = sInputStrings.size(); for (int i=0; i smEnum = sm.getNames(); while (smEnum.hasMoreElements()) { String sName = smEnum.nextElement(); Element smNode = dom.createElement("style-map"); smNode.setAttribute("name",sName); smNode.setAttribute("family",sFamily); smNode.setAttribute("before",sm.getBefore(sName)); smNode.setAttribute("after",sm.getAfter(sName)); if (sm.getNext(sName)!=null) { smNode.setAttribute("next",sm.getNext(sName)); } if (!sm.getLineBreak(sName)) { smNode.setAttribute("line-break","false"); } if (sm.getVerbatim(sName)) { smNode.setAttribute("verbatim","true"); } dom.getDocumentElement().appendChild(smNode); } } private void writeContent(Document dom, LinkedList list, String sElement) { Element node = dom.createElement(sElement); int nLen = list.size(); for (int i=0; i getMathSymbols() { return mathSymbols; } public StyleMap getParStyleMap() { return par; } public StyleMap getParBlockStyleMap() { return parBlock; } public StyleMap getTextStyleMap() { return text; } public StyleMap getListStyleMap() { return list; } public StyleMap getListItemStyleMap() { return listItem; } public StyleMap getTextAttributeStyleMap() { return textAttr; } public HeadingMap getHeadingMap() { return headingMap; } public LinkedList getCustomPreamble() { return customPreamble; } }