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