Refactoring css declarations...

This commit is contained in:
Georgy Litvinov 2020-01-30 11:06:34 +01:00
parent 13ea9b9fb1
commit 5eb9f2186c
3 changed files with 72 additions and 64 deletions

View file

@ -62,39 +62,45 @@ public class FrameStyleParser extends StyleWithPropertiesParser {
* @param sIndent a String of spaces to add before each line
*/
public String composeStyleDeclarations() {
if (bConvertStyles) {
StringBuilder buf = new StringBuilder();
buf.append(super.composeStyleDeclarations());
Enumeration<String> names = styleNames.keys();
while (names.hasMoreElements()) {
String sDisplayName = names.nextElement();
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(sDisplayName);
if (!style.isAutomatic()) {
// Apply style to paragraphs contained in this frame
CSVList props = new CSVList(";");
getFrameSc().cssMargins(style, props, true);
getParSc().cssPar(style, props, true);
getTextSc().cssTextCommon(style, props, true);
if (!props.isEmpty()) {
buf.append(indent);
buf.append(getStyleTag());
buf.append(".");
buf.append(getClassNamePrefix());
styleNames.addName(sDisplayName);
buf.append(styleNames.getName(sDisplayName));
buf.append(" p {");
buf.append(props.toString());
buf.append("}");
buf.append(config.prettyPrint() ? "\n" : " ");
}
}
}
return buf.toString();
} else {
if (!bConvertStyles) {
return "";
}
StringBuilder buf = new StringBuilder();
buf.append(super.composeStyleDeclarations());
Enumeration<String> names = styleNames.keys();
while (names.hasMoreElements()) {
String displayName = names.nextElement();
buf.append(composeDeclaration(displayName));
}
return buf.toString();
}
private String composeDeclaration(String displayName) {
String declaration = "";
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(displayName);
String declarationBlock = composeDeclarationBlock(displayName);
String selector = composeSelector(displayName);
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
declaration = indent + selector + "{" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
}
return declaration;
}
private String composeSelector(String displayName) {
styleNames.addName(displayName);
return getStyleTag() + "." + getClassNamePrefix() + styleNames.getName(displayName) + " p ";
}
private String composeDeclarationBlock( String sDisplayName) {
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(sDisplayName);
CSVList props = new CSVList(";");
getFrameSc().cssMargins(style, props, true);
getParSc().cssPar(style, props, true);
getTextSc().cssTextCommon(style, props, true);
return props.toString();
}
/** Return a prefix to be used in generated css class names
* @return the prefix
*/

View file

@ -94,30 +94,39 @@ public class PresentationStyleParser extends FrameStyleParser {
buf.append(super.composeStyleDeclarations());
Enumeration<String> names = outlineStyleNames.keys();
while (names.hasMoreElements()) {
String sDisplayName = names.nextElement();
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(sDisplayName);
if (!style.isAutomatic()) {
// Apply style to paragraphs within a list item with this class
CSVList props = new CSVList(";");
getFrameSc().cssMargins(style, props, true);
getParSc().cssPar(style, props, true);
getTextSc().cssTextCommon(style, props, true);
if (!props.isEmpty()) {
buf.append(indent);
buf.append("li.outline");
styleNames.addName(sDisplayName);
buf.append(styleNames.getName(sDisplayName));
buf.append(" p {");
buf.append(props.toString());
buf.append("}");
buf.append(config.prettyPrint() ? "\n" : " ");
}
}
String displayName = names.nextElement();
buf.append(composeDeclaration(displayName));
}
return buf.toString();
}
private String composeDeclaration(String displayName) {
String declaration = "";
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(displayName);
String declarationBlock = composeDeclarationBlock(displayName);
String selector = composeSelector(displayName);;
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
// Apply style to paragraphs within a list item with this class
declaration = indent + selector + "{" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
}
return declaration;
}
private String composeSelector(String displayName) {
styleNames.addName(displayName);
return "li.outline" + styleNames.getName(displayName) + " p ";
}
private String composeDeclarationBlock(String displayName) {
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(displayName);
CSVList props = new CSVList(";");
getFrameSc().cssMargins(style, props, true);
getParSc().cssPar(style, props, true);
getTextSc().cssTextCommon(style, props, true);
return props.toString();
}
public void enterOutline(String sStyleName) {
sCurrentOutlineStyle = sStyleName;

View file

@ -103,39 +103,32 @@ public abstract class StyleWithPropertiesParser extends StyleParser {
Enumeration<String> names = styleNames.keys();
while (names.hasMoreElements()) {
String sDisplayName = names.nextElement();
buf.append(composeStyleDeclaration(sDisplayName));
buf.append(composeDeclaration(sDisplayName));
}
return buf.toString();
}
private String composeStyleDeclaration( String displayName) {
StringBuilder declaration = new StringBuilder();
private String composeDeclaration( String displayName) {
String declaration = "";
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(displayName);
if (!style.isAutomatic()) {
declaration.append(indent);
declaration.append(selector(displayName));
declaration.append(" {");
declaration.append(declarations(displayName));
declaration.append("}" + (prettyPrint ? "\n" : " "));
String selector = composeSelector(displayName);
String declarationBlock = composeDeclarationBlock(displayName);
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
declaration = indent + selector + " {" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
// TODO: Create a method "getStyleDeclarationsInner"
// to be used by eg. FrameStyleConverter
}
return declaration.toString();
}
private String declarations(String displayName) {
private String composeDeclarationBlock(String displayName) {
StyleWithProperties style = (StyleWithProperties) getStyles().getStyleByDisplayName(displayName);
CSVList props = new CSVList(";");
applyProperties(style, props, true);
return props.toString();
}
private String selector(String displayName) {
private String composeSelector(String displayName) {
styleNames.addName(displayName);
return getStyleTag() + "." + getClassNamePrefix() + styleNames.getName(displayName);
}