Refactored HeadingStyleParser css declarations
This commit is contained in:
parent
b97be9c4c6
commit
5c4e55dd1a
6 changed files with 40 additions and 30 deletions
|
@ -82,7 +82,7 @@ public class FrameStyleParser extends StyleWithPropertiesParser {
|
|||
String declarationBlock = composeDeclarationBlock(displayName);
|
||||
String selector = composeSelector(displayName);
|
||||
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
|
||||
declaration = indent + selector + "{" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
|
||||
declaration = cssToString(selector, declarationBlock);
|
||||
}
|
||||
return declaration;
|
||||
}
|
||||
|
|
|
@ -64,38 +64,44 @@ public class HeadingStyleParser extends StyleParser {
|
|||
for (int i = 1; i <= 6; i++) {
|
||||
// Convert main style for this level
|
||||
if (ofr.getHeadingStyle(i) != null) {
|
||||
CSVList props = new CSVList(";");
|
||||
getParSc().applyProperties(ofr.getHeadingStyle(i), props, true);
|
||||
props.addValue("clear", "left");
|
||||
result.append(indent);
|
||||
result.append("h");
|
||||
result.append(i);
|
||||
result.append(" {");
|
||||
result.append(props.toString());
|
||||
result.append("}");
|
||||
result.append(config.prettyPrint() ? "\n" : " ");
|
||||
String selector = composeBasicSelector(i);
|
||||
String declaration = composeBasicDeclarationBlock(i);
|
||||
result.append(cssToString(selector, declaration));
|
||||
}
|
||||
// Convert other styles for this level
|
||||
for (String sDisplayName : otherLevelStyles.get(i)) {
|
||||
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(sDisplayName);
|
||||
CSVList props = new CSVList(";");
|
||||
getParSc().applyProperties(style, props, true);
|
||||
props.addValue("clear", "left");
|
||||
result.append(indent);
|
||||
result.append("h");
|
||||
result.append(i);
|
||||
result.append(".");
|
||||
styleNames.addName(sDisplayName);
|
||||
result.append(styleNames.getName(sDisplayName));
|
||||
result.append(" {");
|
||||
result.append(props.toString());
|
||||
result.append("}");
|
||||
result.append(config.prettyPrint() ? "\n" : " ");
|
||||
String selector = composeSelector(i, sDisplayName);
|
||||
String declaration = composeDeclarationBlock( sDisplayName);
|
||||
result.append(cssToString(selector, declaration));
|
||||
}
|
||||
}
|
||||
return result.toString();
|
||||
}
|
||||
|
||||
private String composeBasicSelector( int i) {
|
||||
return "h" + i;
|
||||
}
|
||||
|
||||
private String composeBasicDeclarationBlock( int i) {
|
||||
CSVList props = new CSVList(";");
|
||||
getParSc().applyProperties(ofr.getHeadingStyle(i), props, true);
|
||||
props.addValue("clear", "left");
|
||||
return props.toString();
|
||||
}
|
||||
|
||||
private String composeSelector(int i, String sDisplayName) {
|
||||
styleNames.addName(sDisplayName);
|
||||
return "h" + i + "." + styleNames.getName(sDisplayName);
|
||||
}
|
||||
|
||||
public String composeDeclarationBlock(String displayName) {
|
||||
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(displayName);
|
||||
CSVList props = new CSVList(";");
|
||||
getParSc().applyProperties(style, props, true);
|
||||
props.addValue("clear", "left");
|
||||
return props.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public OfficeStyleFamily getStyles() {
|
||||
return ofr.getParStyles();
|
||||
|
|
|
@ -113,7 +113,7 @@ public class ListStyleParser extends StyleParser {
|
|||
String selector = composeSelector(displayName, level);
|
||||
String declarationBlock = composeDeclarationBlock(displayName, level);
|
||||
if (!selector.isEmpty() && !declarationBlock.isEmpty()) {
|
||||
buf.append(indent + selector + " {" + declarationBlock + "}" + (prettyPrint ? "\n" : " "));
|
||||
buf.append(cssToString(selector, declarationBlock));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -130,7 +130,7 @@ public class ListStyleParser extends StyleParser {
|
|||
// Apply left margin and text indent to the paragraphs contained in
|
||||
// the list
|
||||
if (!declarationBlock.isEmpty() && !selector.isEmpty()) {
|
||||
buf.append(indent + selector + "{" + declarationBlock + "}" + (prettyPrint ? "\n" : " "));
|
||||
buf.append(cssToString(selector, declarationBlock));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,7 +160,7 @@ public class PageStyleParser extends StyleParser {
|
|||
getFrameSc().cssBackground(pageLayout, pageInfo.props, true);
|
||||
|
||||
if (pageInfo.hasAttributes()) {
|
||||
buf.append(indent + "body {" + pageInfo.props.toString() + "}" + (prettyPrint ? "\n" : " "));
|
||||
buf.append(indent + "body" + " {" + pageInfo.props.toString() + "}" + (prettyPrint ? "\n" : " "));
|
||||
}
|
||||
|
||||
// Footnote rule
|
||||
|
@ -180,7 +180,7 @@ public class PageStyleParser extends StyleParser {
|
|||
String declarationBlock = composeDeclarationBlock(displayName);
|
||||
// Then export the results
|
||||
if (!selector.isEmpty() && !declarationBlock.isEmpty()) {
|
||||
declaration = indent + selector + " {" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
|
||||
declaration = cssToString(selector, declarationBlock);
|
||||
}
|
||||
return declaration;
|
||||
}
|
||||
|
|
|
@ -124,5 +124,9 @@ public abstract class StyleParser extends Parser {
|
|||
* @param sIndent a String of spaces to add before each line
|
||||
*/
|
||||
public abstract String composeStyleDeclarations();
|
||||
|
||||
public String cssToString(String selector, String declarationBlock) {
|
||||
return indent + selector + " {" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -114,7 +114,7 @@ public abstract class StyleWithPropertiesParser extends StyleParser {
|
|||
String selector = composeSelector(displayName);
|
||||
String declarationBlock = composeDeclarationBlock(displayName);
|
||||
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
|
||||
declaration = indent + selector + " {" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
|
||||
declaration = cssToString(selector, declarationBlock);
|
||||
// TODO: Create a method "getStyleDeclarationsInner"
|
||||
// to be used by eg. FrameStyleConverter
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue