2009-02-20 09:37:06 +00:00
|
|
|
/************************************************************************
|
|
|
|
*
|
|
|
|
* ParStyleConverter.java
|
|
|
|
*
|
2010-03-05 08:43:18 +00:00
|
|
|
* Copyright: 2002-2010 by Henrik Just
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
2018-03-06 20:06:05 +00:00
|
|
|
* This file is part of Writer2LaTeX.
|
|
|
|
*
|
|
|
|
* Writer2LaTeX is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Writer2LaTeX 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Writer2LaTeX. If not, see <http://www.gnu.org/licenses/>.
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
2010-05-17 07:42:33 +00:00
|
|
|
* Version 1.2 (2010-05-13)
|
2009-02-20 09:37:06 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-01-29 11:40:29 +01:00
|
|
|
package writer2latex.xhtml.style;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
import writer2latex.office.OfficeReader;
|
|
|
|
import writer2latex.office.OfficeStyleFamily;
|
|
|
|
import writer2latex.office.StyleWithProperties;
|
|
|
|
import writer2latex.office.XMLString;
|
|
|
|
import writer2latex.util.CSVList;
|
2020-01-29 11:40:29 +01:00
|
|
|
import writer2latex.xhtml.Converter;
|
|
|
|
import writer2latex.xhtml.XhtmlConfig;
|
2020-02-03 16:34:57 +01:00
|
|
|
import writer2latex.xhtml.style.properties.Properties;
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
TODO: drop caps (contained in a child of the style:properties element)
|
|
|
|
The CSS attributes should be applied to the :first-letter
|
|
|
|
pseudo-element or to an additional inline element.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class converts OpenDocument paragraph styles to CSS2 styles for
|
2010-05-09 13:40:00 +00:00
|
|
|
* use in ordinary paragraphs.
|
2009-02-20 09:37:06 +00:00
|
|
|
* This also includes conversion of paragraph properties in other styles
|
2010-05-09 13:40:00 +00:00
|
|
|
* (heading styles, cell styles).
|
2009-02-20 09:37:06 +00:00
|
|
|
*/
|
2020-01-29 11:09:59 +01:00
|
|
|
public class ParStyleParser extends StyleWithPropertiesParser {
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
/** Create a new <code>ParStyleConverter</code>
|
|
|
|
* @param ofr an <code>OfficeReader</code> to read style information from
|
|
|
|
* @param config the configuration to use
|
|
|
|
* @param converter the main <code>Converter</code> class
|
2010-05-09 13:40:00 +00:00
|
|
|
* @param nType the type of XHTML to use
|
2009-02-20 09:37:06 +00:00
|
|
|
*/
|
2020-01-29 11:09:59 +01:00
|
|
|
public ParStyleParser(OfficeReader ofr, XhtmlConfig config, Converter converter, int nType) {
|
2009-02-20 09:37:06 +00:00
|
|
|
super(ofr,config,converter,nType);
|
|
|
|
this.styleMap = config.getXParStyleMap();
|
|
|
|
this.bConvertStyles = config.xhtmlFormatting()==XhtmlConfig.CONVERT_ALL || config.xhtmlFormatting()==XhtmlConfig.IGNORE_HARD;
|
|
|
|
this.bConvertHard = config.xhtmlFormatting()==XhtmlConfig.CONVERT_ALL || config.xhtmlFormatting()==XhtmlConfig.IGNORE_STYLES;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the family of paragraph styles
|
|
|
|
* @return the style family
|
|
|
|
*/
|
|
|
|
public OfficeStyleFamily getStyles() {
|
|
|
|
return ofr.getParStyles();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Create default tag name to represent a paragraph
|
|
|
|
* @param style to use
|
|
|
|
* @return the tag name.
|
|
|
|
*/
|
2020-01-29 17:02:15 +01:00
|
|
|
public String getStyleTag() {
|
2009-02-20 09:37:06 +00:00
|
|
|
return "p";
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Convert formatting properties for a specific Par style.
|
|
|
|
* @param style the style to convert
|
|
|
|
* @param props the <code>CSVList</code> object to add information to
|
|
|
|
* @param bInherit true if properties should be inherited from parent style(s)
|
|
|
|
*/
|
2020-02-03 16:34:57 +01:00
|
|
|
public void applyProperties(StyleWithProperties style, Properties props, boolean bInherit) {
|
|
|
|
cssPageBreak(style, props, bInherit);
|
2020-03-09 11:39:28 +01:00
|
|
|
getFrameSP().cssMargins(style, props, bInherit);
|
|
|
|
getFrameSP().cssBorder(style, props, bInherit);
|
|
|
|
getFrameSP().cssPadding(style, props, bInherit);
|
|
|
|
getFrameSP().cssBackgroundCommon(style, props, bInherit);
|
2020-02-03 16:34:57 +01:00
|
|
|
cssPar(style, props, bInherit);
|
|
|
|
getTextSP().cssTextCommon(style, props, bInherit);
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
public String getTextBackground(String sStyleName) {
|
2020-02-03 16:34:57 +01:00
|
|
|
Properties props = new Properties(";");
|
2009-02-20 09:37:06 +00:00
|
|
|
StyleWithProperties style = ofr.getParStyle(sStyleName);
|
|
|
|
if (style!=null) {
|
2020-02-03 16:34:57 +01:00
|
|
|
getTextSP().cssTextBackground(style,props,true);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
return props.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: get rid of this
|
|
|
|
public String getRealParStyleName(String sStyleName) {
|
|
|
|
if (sStyleName==null) { return sStyleName; }
|
|
|
|
StyleWithProperties style = ofr.getParStyle(sStyleName);
|
|
|
|
if (style==null || !style.isAutomatic()) { return sStyleName; }
|
|
|
|
return style.getParentName();
|
|
|
|
}
|
2010-05-17 07:42:33 +00:00
|
|
|
|
2020-02-03 16:34:57 +01:00
|
|
|
public void cssPageBreak(StyleWithProperties style, Properties props, boolean bInherit) {
|
2010-05-17 07:42:33 +00:00
|
|
|
if ("page".equals(style.getProperty(XMLString.FO_BREAK_BEFORE, bInherit))) {
|
2020-02-03 16:34:57 +01:00
|
|
|
props.addProperty("page-break-before", "always");
|
2010-05-17 07:42:33 +00:00
|
|
|
}
|
|
|
|
else if ("page".equals(style.getProperty(XMLString.FO_BREAK_AFTER, bInherit))) {
|
2020-02-03 16:34:57 +01:00
|
|
|
props.addProperty("page-break-after", "always");
|
2010-05-17 07:42:33 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-20 09:37:06 +00:00
|
|
|
|
2020-02-03 16:34:57 +01:00
|
|
|
public void cssPar(StyleWithProperties style, Properties props, boolean bInherit){
|
2009-02-20 09:37:06 +00:00
|
|
|
String s;
|
|
|
|
|
|
|
|
// translates paragraph style properties.
|
|
|
|
// The following properties are not supported by CSS2:
|
|
|
|
// style:justify-single-word and style:text-align-last
|
|
|
|
|
|
|
|
/* problem: 120% times normal makes no sense...
|
|
|
|
s = style.getProperty(XMLString.FO_LINE_HEIGHT);
|
|
|
|
if (s!=null && s.equals("normal")) {
|
|
|
|
props.addValue("line-height:normal;";
|
|
|
|
}
|
|
|
|
else { // length or percentage
|
|
|
|
s = style.getAbsoluteProperty(XMLString.FO_LINE_HEIGHT);
|
|
|
|
if (s!=null) { props.addValue("line-height",s); }
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
// TODO: style:line-height-at-least and stype:line-spacing
|
|
|
|
|
|
|
|
// Background color fits with css (note: Paragraph property!)
|
|
|
|
s = style.getParProperty(XMLString.FO_BACKGROUND_COLOR,bInherit);
|
2020-02-03 16:34:57 +01:00
|
|
|
if (s!=null) { props.addProperty("background-color",s); }
|
2009-02-20 09:37:06 +00:00
|
|
|
|
|
|
|
// Indentation: Absolute values of this property fit with css...
|
|
|
|
if (bInherit || style.getProperty(XMLString.FO_TEXT_INDENT,false)!=null) {
|
|
|
|
s = style.getAbsoluteProperty(XMLString.FO_TEXT_INDENT);
|
|
|
|
if (s!=null) {
|
2020-02-03 16:34:57 +01:00
|
|
|
props.addProperty("text-indent",scale(s));
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
else { // ... but css doesn't have this one
|
|
|
|
s = style.getProperty(XMLString.STYLE_AUTO_TEXT_INDENT);
|
2020-02-03 16:34:57 +01:00
|
|
|
if ("true".equals(s)) { props.addProperty("text-indent","2em"); }
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alignment: This property fit with css, but two values have different names
|
|
|
|
s = style.getProperty(XMLString.FO_TEXT_ALIGN,bInherit);
|
|
|
|
if (s!=null) { // rename two property values:
|
|
|
|
if (s.equals("start")) { s="left"; }
|
|
|
|
else if (s.equals("end")) { s="right"; }
|
2020-02-03 16:34:57 +01:00
|
|
|
props.addProperty("text-align",s);
|
2009-02-20 09:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|