Inline style properties for headings

This commit is contained in:
Georgy Litvinov 2020-02-05 17:25:49 +01:00
parent 79f8d700e3
commit 4f07882f87
2 changed files with 45 additions and 29 deletions

View file

@ -671,6 +671,7 @@ public class TextParser extends Parser {
// Apply style
StyleInfo info = new StyleInfo();
info.sTagName = "h" + nLevel;
getHeadingSc().readParentStyle(nLevel, sStyleName, info);
getHeadingSc().applyStyle(nLevel, sStyleName, info);
// add root element

View file

@ -43,7 +43,7 @@ public class HeadingStyleParser extends StyleParser {
// Sets of additional styles (other than the main heading style for the level)
private List<Set<String>> otherLevelStyles;
private boolean inlineCSS;
public HeadingStyleParser(OfficeReader ofr, XhtmlConfig config,
Converter converter, int nType) {
super(ofr, config, converter, nType);
@ -51,6 +51,7 @@ public class HeadingStyleParser extends StyleParser {
this.bConvertStyles = config.xhtmlFormatting()==XhtmlConfig.CONVERT_ALL || config.xhtmlFormatting()==XhtmlConfig.IGNORE_HARD;
this.bConvertHard = config.xhtmlFormatting()==XhtmlConfig.CONVERT_ALL || config.xhtmlFormatting()==XhtmlConfig.IGNORE_STYLES;
this.otherLevelStyles = new ArrayList<Set<String>>();
this.inlineCSS = config.inlineCSS();
for (int i=0; i<=6; i++) {
otherLevelStyles.add(new HashSet<String>());
}
@ -58,7 +59,7 @@ public class HeadingStyleParser extends StyleParser {
@Override
public String composeStyleDeclarations() {
if (!bConvertStyles) {
if (!bConvertStyles || inlineCSS) {
return "";
}
StringBuilder result = new StringBuilder();
@ -116,7 +117,9 @@ public class HeadingStyleParser extends StyleParser {
*/
public void applyStyle(int nLevel, String sStyleName, StyleInfo info) {
StyleWithProperties style = (StyleWithProperties) getStyles().getStyle(sStyleName);
if (style != null) {
if (style == null) {
return;
}
if (config.multilingual()) {
applyLang(style, info);
}
@ -145,9 +148,21 @@ public class HeadingStyleParser extends StyleParser {
}
}
}
}
}
public void readParentStyle(int level,String styleName, StyleInfo info) {
if (!inlineCSS || styleName == null) {
return;
}
if (info.sClass != null && info.sClass.equals("qwertyc")) {
System.out.println(info.toString());
}
StyleWithProperties style = (StyleWithProperties) getStyles().getStyle(styleName);
getParSP().applyProperties(style, info.props, true);
info.props.addProperty("clear", "left");
getParSP().applyProperties(ofr.getHeadingStyle(level), info.props, true);
}
/** Apply an inner style on a heading. The inner style surrounds the text content, excluding the numbering label.
* Inner styles are not an OpenDocument feature, but is provided as an additional style hook for own style sheets.
* An inner style is only applied if there is an explicit style map for the style.