Refactored TextStyleParser css declarations
This commit is contained in:
parent
5c4e55dd1a
commit
b2c79c0138
8 changed files with 116 additions and 84 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 = cssToString(selector, declarationBlock);
|
declaration = createDeclaration(selector, declarationBlock);
|
||||||
}
|
}
|
||||||
return declaration;
|
return declaration;
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,13 +66,13 @@ public class HeadingStyleParser extends StyleParser {
|
||||||
if (ofr.getHeadingStyle(i) != null) {
|
if (ofr.getHeadingStyle(i) != null) {
|
||||||
String selector = composeBasicSelector(i);
|
String selector = composeBasicSelector(i);
|
||||||
String declaration = composeBasicDeclarationBlock(i);
|
String declaration = composeBasicDeclarationBlock(i);
|
||||||
result.append(cssToString(selector, declaration));
|
result.append(createDeclaration(selector, declaration));
|
||||||
}
|
}
|
||||||
// Convert other styles for this level
|
// Convert other styles for this level
|
||||||
for (String sDisplayName : otherLevelStyles.get(i)) {
|
for (String sDisplayName : otherLevelStyles.get(i)) {
|
||||||
String selector = composeSelector(i, sDisplayName);
|
String selector = composeSelector(i, sDisplayName);
|
||||||
String declaration = composeDeclarationBlock( sDisplayName);
|
String declaration = composeDeclarationBlock( sDisplayName);
|
||||||
result.append(cssToString(selector, declaration));
|
result.append(createDeclaration(selector, declaration));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result.toString();
|
return result.toString();
|
||||||
|
|
|
@ -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(cssToString(selector, declarationBlock));
|
buf.append(createDeclaration(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(cssToString(selector, declarationBlock));
|
buf.append(createDeclaration(selector, declarationBlock));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,31 +156,44 @@ public class PageStyleParser extends StyleParser {
|
||||||
if (pageLayout == null) { return ""; }
|
if (pageLayout == null) { return ""; }
|
||||||
|
|
||||||
// Background color
|
// Background color
|
||||||
StyleInfo pageInfo = new StyleInfo();
|
String pageDeclaration = composePageDeclaration();
|
||||||
getFrameSc().cssBackground(pageLayout, pageInfo.props, true);
|
if (!pageDeclaration.isEmpty()) {
|
||||||
|
buf.append(createDeclaration("body", pageDeclaration));
|
||||||
if (pageInfo.hasAttributes()) {
|
|
||||||
buf.append(indent + "body" + " {" + pageInfo.props.toString() + "}" + (prettyPrint ? "\n" : " "));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Footnote rule
|
// Footnote rule
|
||||||
if (hasFootnoteRules) {
|
String footnoteDeclaration = composeFootnoteDeclaration();
|
||||||
StyleInfo ruleInfo = new StyleInfo();
|
if (hasFootnoteRules && !footnoteDeclaration.isEmpty()) {
|
||||||
cssFootnoteRule(pageLayout, ruleInfo.props);
|
buf.append(createDeclaration("hr.footnoterule", footnoteDeclaration));
|
||||||
buf.append(indent + "hr.footnoterule {" + ruleInfo.props.toString() + "}" + (prettyPrint ? "\n" : " "));
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return buf.toString();
|
return buf.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String composePageDeclaration() {
|
||||||
|
MasterPage masterPage = ofr.getFirstMasterPage();
|
||||||
|
PageLayout pageLayout = ofr.getPageLayout(masterPage.getPageLayoutName());
|
||||||
|
StyleInfo pageInfo = new StyleInfo();
|
||||||
|
getFrameSc().cssBackground(pageLayout, pageInfo.props, true);
|
||||||
|
String pageDeclaration = pageInfo.props.toString();
|
||||||
|
return pageDeclaration;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String composeFootnoteDeclaration() {
|
||||||
|
MasterPage masterPage = ofr.getFirstMasterPage();
|
||||||
|
PageLayout pageLayout = ofr.getPageLayout(masterPage.getPageLayoutName());
|
||||||
|
StyleInfo ruleInfo = new StyleInfo();
|
||||||
|
cssFootnoteRule(pageLayout, ruleInfo.props);
|
||||||
|
String footnoteRulesDeclaration = ruleInfo.props.toString();
|
||||||
|
return footnoteRulesDeclaration;
|
||||||
|
}
|
||||||
|
|
||||||
private String composeDeclaration(String displayName) {
|
private String composeDeclaration(String displayName) {
|
||||||
String declaration = "";
|
String declaration = "";
|
||||||
String selector = composeSelector(displayName);
|
String selector = composeSelector(displayName);
|
||||||
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 = cssToString(selector, declarationBlock);
|
declaration = createDeclaration(selector, declarationBlock);
|
||||||
}
|
}
|
||||||
return declaration;
|
return declaration;
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,7 +108,7 @@ public class PresentationStyleParser extends FrameStyleParser {
|
||||||
String selector = composeSelector(displayName);;
|
String selector = composeSelector(displayName);;
|
||||||
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
|
if (!style.isAutomatic() && !selector.isEmpty() && !declarationBlock.isEmpty()) {
|
||||||
// Apply style to paragraphs within a list item with this class
|
// Apply style to paragraphs within a list item with this class
|
||||||
declaration = indent + selector + "{" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
|
declaration = createDeclaration(selector, declarationBlock);
|
||||||
}
|
}
|
||||||
return declaration;
|
return declaration;
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,7 +125,7 @@ public abstract class StyleParser extends Parser {
|
||||||
*/
|
*/
|
||||||
public abstract String composeStyleDeclarations();
|
public abstract String composeStyleDeclarations();
|
||||||
|
|
||||||
public String cssToString(String selector, String declarationBlock) {
|
public String createDeclaration(String selector, String declarationBlock) {
|
||||||
return indent + selector + " {" + declarationBlock + "}" + (prettyPrint ? "\n" : " ");
|
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 = cssToString(selector, declarationBlock);
|
declaration = createDeclaration(selector, declarationBlock);
|
||||||
// TODO: Create a method "getStyleDeclarationsInner"
|
// TODO: Create a method "getStyleDeclarationsInner"
|
||||||
// to be used by eg. FrameStyleConverter
|
// to be used by eg. FrameStyleConverter
|
||||||
}
|
}
|
||||||
|
|
|
@ -154,74 +154,93 @@ public class TextStyleParser extends StyleWithPropertiesParser {
|
||||||
/** <p>Convert style information for used styles</p>
|
/** <p>Convert style information for used styles</p>
|
||||||
* @param sIndent a String of spaces to add before each line
|
* @param sIndent a String of spaces to add before each line
|
||||||
*/
|
*/
|
||||||
StringBuilder buf = new StringBuilder();
|
public String composeStyleDeclarations() {
|
||||||
public String composeStyleDeclarations() {
|
StringBuilder buf = new StringBuilder();
|
||||||
buf.append(super.composeStyleDeclarations());
|
buf.append(super.composeStyleDeclarations());
|
||||||
if (bConvertStyles) {
|
if (!bConvertStyles) {
|
||||||
// Export anchor styles
|
return "";
|
||||||
// Default is always the styles "Internet link" and "Visited Internet Link"(?)
|
}
|
||||||
StyleWithProperties defaultLinkStyle = (StyleWithProperties)
|
// Export anchor styles
|
||||||
getStyles().getStyleByDisplayName(DEFAULT_LINK_STYLE);
|
// Default is always the styles "Internet link" and "Visited Internet
|
||||||
if (defaultLinkStyle!=null) {
|
// Link"(?)
|
||||||
CSVList props = new CSVList(";");
|
StyleWithProperties defaultLinkStyle = (StyleWithProperties) getStyles().getStyleByDisplayName(DEFAULT_LINK_STYLE);
|
||||||
cssText(defaultLinkStyle,props,true);
|
if (defaultLinkStyle != null) {
|
||||||
cssHyperlink(defaultLinkStyle,props);
|
String linkDeclarationBlock = composeLinkDeclarationBlock(defaultLinkStyle);
|
||||||
buf.append(indent);
|
buf.append(createDeclaration("a:link", linkDeclarationBlock));
|
||||||
buf.append("a:link {");
|
}
|
||||||
buf.append(props.toString());
|
defaultLinkStyle = (StyleWithProperties) getStyles().getStyleByDisplayName(DEFAULT_VISITED_LINK_STYLE);
|
||||||
buf.append("}\n");
|
if (defaultLinkStyle != null) {
|
||||||
}
|
String visitedLinkDeclarationBlock = composeVisitedLinkDeclarationBlock(defaultLinkStyle);
|
||||||
|
buf.append(createDeclaration("a:visited", visitedLinkDeclarationBlock));
|
||||||
defaultLinkStyle = (StyleWithProperties)
|
}
|
||||||
getStyles().getStyleByDisplayName(DEFAULT_VISITED_LINK_STYLE);
|
|
||||||
if (defaultLinkStyle!=null) {
|
// Remaining link styles...
|
||||||
CSVList props = new CSVList(";");
|
Enumeration<String> enumer = anchorCombinedStyleNames.elements();
|
||||||
cssText(defaultLinkStyle,props,true);
|
while (enumer.hasMoreElements()) {
|
||||||
cssHyperlink(defaultLinkStyle,props);
|
String exportName = enumer.nextElement();
|
||||||
buf.append(indent);
|
String styleName = orgAnchorStyleNames.get(exportName);
|
||||||
buf.append("a:visited {");
|
StyleWithProperties style = ofr.getTextStyle(styleName);
|
||||||
buf.append(props.toString());
|
|
||||||
buf.append("}\n");
|
if (style == null) { continue; }
|
||||||
}
|
|
||||||
|
String anchorDeclarationBlock = composeAnchorDeclarationBlock(styleName);
|
||||||
|
String anchorSelector = composeAnchorSelector(exportName);
|
||||||
|
buf.append(createDeclaration(anchorSelector, anchorDeclarationBlock));
|
||||||
|
|
||||||
|
String visitedStyleName = orgAnchorVisitedStyleNames.get(exportName);
|
||||||
|
style = ofr.getTextStyle(visitedStyleName);
|
||||||
|
|
||||||
|
String visitedAnchorDeclarationBlock = composeVisitedAnchorDeclarationBlock(visitedStyleName);
|
||||||
|
String visitedAnchorSelector = composeVisitedAnchorSelector(exportName);
|
||||||
|
buf.append(createDeclaration(visitedAnchorSelector, visitedAnchorDeclarationBlock));
|
||||||
|
}
|
||||||
|
return buf.toString();
|
||||||
|
}
|
||||||
|
|
||||||
// Remaining link styles...
|
private String composeVisitedAnchorSelector(String exportName) {
|
||||||
Enumeration<String> enumer = anchorCombinedStyleNames.elements();
|
String visitedAnchorSelector = "a." + exportName + ":visited";
|
||||||
while (enumer.hasMoreElements()) {
|
return visitedAnchorSelector;
|
||||||
String sExportName = enumer.nextElement();
|
}
|
||||||
String sStyleName = orgAnchorStyleNames.get(sExportName);
|
|
||||||
String sVisitedStyleName = orgAnchorVisitedStyleNames.get(sExportName);
|
|
||||||
|
|
||||||
StyleWithProperties style = ofr.getTextStyle(sStyleName);
|
private String composeVisitedAnchorDeclarationBlock(String visitedStyleName) {
|
||||||
|
StyleWithProperties style;
|
||||||
|
style = ofr.getTextStyle(visitedStyleName);
|
||||||
|
CSVList props = new CSVList(";");
|
||||||
|
cssText(style, props, true);
|
||||||
|
cssHyperlink(style, props);
|
||||||
|
String visitedAnchorDeclarationBlock = props.toString();
|
||||||
|
return visitedAnchorDeclarationBlock;
|
||||||
|
}
|
||||||
|
|
||||||
if (style!=null) {
|
private String composeAnchorSelector(String sExportName) {
|
||||||
CSVList props = new CSVList(";");
|
String anchorSelector = "a." + sExportName + ":link";
|
||||||
cssText(style,props,true);
|
return anchorSelector;
|
||||||
cssHyperlink(style,props);
|
}
|
||||||
buf.append(indent);
|
|
||||||
buf.append("a.");
|
|
||||||
buf.append(sExportName);
|
|
||||||
buf.append(":link {");
|
|
||||||
buf.append(props.toString());
|
|
||||||
buf.append("}\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
style = ofr.getTextStyle(sVisitedStyleName);
|
|
||||||
if (style!=null) {
|
|
||||||
CSVList props = new CSVList(";");
|
|
||||||
cssText(style,props,true);
|
|
||||||
cssHyperlink(style,props);
|
|
||||||
buf.append(indent);
|
|
||||||
buf.append("a.");
|
|
||||||
buf.append(sExportName);
|
|
||||||
buf.append(":visited {");
|
|
||||||
buf.append(props.toString());
|
|
||||||
buf.append("}\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return buf.toString();
|
|
||||||
|
|
||||||
}
|
private String composeAnchorDeclarationBlock(String sStyleName) {
|
||||||
|
StyleWithProperties style = ofr.getTextStyle(sStyleName);
|
||||||
|
CSVList props = new CSVList(";");
|
||||||
|
cssText(style, props, true);
|
||||||
|
cssHyperlink(style, props);
|
||||||
|
String anchorDeclaration = props.toString();
|
||||||
|
return anchorDeclaration;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String composeVisitedLinkDeclarationBlock(StyleWithProperties defaultLinkStyle) {
|
||||||
|
CSVList props = new CSVList(";");
|
||||||
|
cssText(defaultLinkStyle, props, true);
|
||||||
|
cssHyperlink(defaultLinkStyle, props);
|
||||||
|
String visitedLinkDeclaration = props.toString();
|
||||||
|
return visitedLinkDeclaration;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String composeLinkDeclarationBlock(StyleWithProperties defaultLinkStyle) {
|
||||||
|
CSVList props = new CSVList(";");
|
||||||
|
cssText(defaultLinkStyle, props, true);
|
||||||
|
cssHyperlink(defaultLinkStyle, props);
|
||||||
|
String linkDeclaration = props.toString();
|
||||||
|
return linkDeclaration;
|
||||||
|
}
|
||||||
|
|
||||||
/** Get the family of text (character) styles
|
/** Get the family of text (character) styles
|
||||||
* @return the style family
|
* @return the style family
|
||||||
|
|
Loading…
Add table
Reference in a new issue