Part of code for converting page style column count property

This commit is contained in:
Georgy Litvinov 2020-01-27 18:53:57 +01:00
parent e5e2603203
commit 525ec1ee6b
3 changed files with 50 additions and 35 deletions

View file

@ -27,6 +27,7 @@ package writer2latex.office;
import org.w3c.dom.Node; import org.w3c.dom.Node;
import writer2latex.util.Misc; import writer2latex.util.Misc;
import writer2latex.xhtml.Debug;
/** <p> Class representing a master page in OOo Writer </p> */ /** <p> Class representing a master page in OOo Writer </p> */
public class MasterPage extends OfficeStyle { public class MasterPage extends OfficeStyle {
@ -35,7 +36,7 @@ public class MasterPage extends OfficeStyle {
private Node headerLeft = null; private Node headerLeft = null;
private Node footer = null; private Node footer = null;
private Node footerLeft = null; private Node footerLeft = null;
private int columns = 1;
public String getProperty(String sPropName) { public String getProperty(String sPropName) {
return properties.getProperty(sPropName); return properties.getProperty(sPropName);
} }

View file

@ -1,8 +1,9 @@
package writer2latex.xhtml; package writer2latex.xhtml;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List;
import org.w3c.dom.Document; import org.w3c.dom.Document;
import org.w3c.dom.Element; import org.w3c.dom.Element;
@ -34,7 +35,7 @@ public class DocumentSeparator {
private static Converter converter = null; private static Converter converter = null;
private XhtmlConfig config = null; private XhtmlConfig config = null;
private Node prevPageNode = null; private Node prevPageNode = null;
private String pageContainerStyle = null; private List<String> pageContanerStyles = new ArrayList<String>(Arrays.asList(""));
public DocumentSeparator(XhtmlConfig config,Converter converter) { public DocumentSeparator(XhtmlConfig config,Converter converter) {
this.config = config; this.config = config;
@ -46,10 +47,7 @@ public class DocumentSeparator {
breakStyle = config.getPageBreakStyle(); breakStyle = config.getPageBreakStyle();
} }
public void setPageContainerStyle(String style) { protected Node processOutlineLevel(Node currentNode, Node hnode, int pageNum) {
this.pageContainerStyle = style;
}
protected Node processOutlineLevel(Node currentNode, Node hnode, int pageNum) {
//Get outline level //Get outline level
String sLevel = getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL); String sLevel = getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL);
@ -353,9 +351,8 @@ public class DocumentSeparator {
} }
Element container = converter.createElement("div"); Element container = converter.createElement("div");
container.setAttribute("class", "pageContainer"); container.setAttribute("class", "pageContainer");
if (pageContainerStyle != null) { if (!getLastPageContainerStyle().isEmpty()) {
//System.out.println(pageContainerStyle); container.setAttribute("style", getLastPageContainerStyle());
container.setAttribute("style", pageContainerStyle);
} }
hnode.appendChild(container); hnode.appendChild(container);
return container; return container;
@ -378,8 +375,22 @@ public class DocumentSeparator {
return comment; return comment;
} }
public String getPageContainerStyle() { public void setPageContainerStyle(String style){
return this.pageContainerStyle; pageContanerStyles.set(0, style);
}
public void addPageContainerStyle(String style){
pageContanerStyles.add(style);
}
public void rmPageContainerStyle() {
int size = pageContanerStyles.size();
if (size < 2) {
System.out.println("Tried to remove last container (page) style!");
System.exit(1);
}
pageContanerStyles.remove(size-1);
}
private String getLastPageContainerStyle() {
return pageContanerStyles.get(pageContanerStyles.size()-1);
} }
} }

View file

@ -538,11 +538,9 @@ public class TextConverter extends ConverterHelper {
boolean isLast = false; boolean isLast = false;
if (last != null && last.equals("true")) { isLast = true;} if (last != null && last.equals("true")) { isLast = true;}
String savedStyle = docSep.getPageContainerStyle();
if (!bDisplayHiddenText && "none".equals(Misc.getAttribute(onode,TEXT_DISPLAY))) { return hnode; } if (!bDisplayHiddenText && "none".equals(Misc.getAttribute(onode,TEXT_DISPLAY))) { return hnode; }
hnode = docSep.closePage(hnode); hnode = docSep.closePage(hnode);
setSectionStyle(onode); boolean removeStyleAtExit = setSectionStyle(onode);
hnode = docSep.openPage(hnode, pageNum); hnode = docSep.openPage(hnode, pageNum);
hnode = traverseBlockText(onode, hnode); hnode = traverseBlockText(onode, hnode);
@ -552,12 +550,15 @@ public class TextConverter extends ConverterHelper {
endnotesContext = lastEndnotesContext; endnotesContext = lastEndnotesContext;
footnotesContext = lastFootnotesContext; footnotesContext = lastFootnotesContext;
docSep.setPageContainerStyle(savedStyle); if (removeStyleAtExit) {
docSep.rmPageContainerStyle();
}
return hnode; return hnode;
} }
private void setSectionStyle(Node onode) { private boolean setSectionStyle(Node onode) {
boolean result = false;
StyleWithProperties sectionStyle; StyleWithProperties sectionStyle;
String styleName = Misc.getAttribute(onode,TEXT_STYLE_NAME); String styleName = Misc.getAttribute(onode,TEXT_STYLE_NAME);
String sectionName = Misc.getAttribute(onode,TEXT_NAME); String sectionName = Misc.getAttribute(onode,TEXT_NAME);
@ -568,7 +569,8 @@ public class TextConverter extends ConverterHelper {
int colCount = sectionStyle.getColCount(); int colCount = sectionStyle.getColCount();
if (colCount > 1 ) { if (colCount > 1 ) {
String styleValue = "column-count: " + colCount + ";"; String styleValue = "column-count: " + colCount + ";";
docSep.setPageContainerStyle(styleValue); docSep.addPageContainerStyle(styleValue);
result = true;
} }
String collectEndnotes = sectionStyle.getSectionProperty("endnote", false); String collectEndnotes = sectionStyle.getSectionProperty("endnote", false);
if (collectEndnotes != null && collectEndnotes.equals("true")) { if (collectEndnotes != null && collectEndnotes.equals("true")) {
@ -579,7 +581,7 @@ public class TextConverter extends ConverterHelper {
footnotesContext = sectionName; footnotesContext = sectionName;
} }
} }
return result;
} }
private void handleHeading(Element onode, Element hnode, boolean bAfterSplit) { private void handleHeading(Element onode, Element hnode, boolean bAfterSplit) {
@ -1842,22 +1844,23 @@ public class TextConverter extends ConverterHelper {
return false; return false;
} }
private void updateMasterPage(StyleWithProperties style) { private void updateMasterPage(StyleWithProperties style) {
if (style != null && hasMasterPage(style)) { if (!hasMasterPage(style) && nextMasterPage == null) {
String sMasterPage = style.getMasterPageName(); return;
if (sMasterPage != null && sMasterPage.length() > 0) { }
currentMasterPage = sMasterPage; if (hasMasterPage(style)) {
// Set next master page String sMasterPage = style.getMasterPageName();
MasterPage masterPage = ofr.getFullMasterPage(currentMasterPage); currentMasterPage = sMasterPage;
nextMasterPage = masterPage.getProperty(STYLE_NEXT_STYLE_NAME); } else {
} currentMasterPage = nextMasterPage;
} else if (nextMasterPage != null){ }
currentMasterPage = nextMasterPage; MasterPage masterPage = ofr.getFullMasterPage(currentMasterPage);
MasterPage masterPage = ofr.getFullMasterPage(currentMasterPage); nextMasterPage = masterPage.getProperty(STYLE_NEXT_STYLE_NAME);
nextMasterPage = masterPage.getProperty(STYLE_NEXT_STYLE_NAME); //TODO:PROCESS MASTERPAGE COLUMNS
} //docSep.setPageContainerStyle("column-count: 2;");
} }
private boolean hasBreakBefore(StyleWithProperties style) { private boolean hasBreakBefore(StyleWithProperties style) {