From 160fda5007f1f83345df85428e738e2f8d271cd1 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Tue, 28 Jan 2020 12:01:55 +0100 Subject: [PATCH] Process page style columns --- .../office/StyleWithProperties.java | 2 +- .../writer2latex/xhtml/DocumentSeparator.java | 4 +- .../writer2latex/xhtml/TextConverter.java | 38 ++++++++++++------- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/src/main/java/writer2latex/office/StyleWithProperties.java b/src/main/java/writer2latex/office/StyleWithProperties.java index 8518416..4e64364 100644 --- a/src/main/java/writer2latex/office/StyleWithProperties.java +++ b/src/main/java/writer2latex/office/StyleWithProperties.java @@ -54,7 +54,7 @@ public class StyleWithProperties extends OfficeStyle { private PropertySet backgroundImageProperties = new PropertySet(); - private int nColCount = 0; + private int nColCount = 1; private boolean bHasFootnoteSep = false; private PropertySet footnoteSep = new PropertySet(); diff --git a/src/main/java/writer2latex/xhtml/DocumentSeparator.java b/src/main/java/writer2latex/xhtml/DocumentSeparator.java index a5a2b57..1268f0c 100644 --- a/src/main/java/writer2latex/xhtml/DocumentSeparator.java +++ b/src/main/java/writer2latex/xhtml/DocumentSeparator.java @@ -116,12 +116,14 @@ public class DocumentSeparator { return hnode; } + public boolean isPageOpened() { + return pageOpened; + } /** * Opens main document section heading tag */ protected Node startDocument(Node hnode, String title, int pageNum){ - if (noHeadingSeparation() && noPageSeparation()){ return hnode; } diff --git a/src/main/java/writer2latex/xhtml/TextConverter.java b/src/main/java/writer2latex/xhtml/TextConverter.java index a0f8c68..8910589 100644 --- a/src/main/java/writer2latex/xhtml/TextConverter.java +++ b/src/main/java/writer2latex/xhtml/TextConverter.java @@ -532,17 +532,18 @@ public class TextConverter extends ConverterHelper { // Unlike headings, paragraphs and spans, text:display is not attached to the style: String lastEndnotesContext = endnotesContext; String lastFootnotesContext = footnotesContext; - + boolean pageWasOpened = docSep.isPageOpened(); String sectionName = Misc.getAttribute(onode,TEXT_NAME); String last = Misc.getAttribute(onode,"last"); boolean isLast = false; if (last != null && last.equals("true")) { isLast = true;} if (!bDisplayHiddenText && "none".equals(Misc.getAttribute(onode,TEXT_DISPLAY))) { return hnode; } - hnode = docSep.closePage(hnode); + + if (pageWasOpened) {hnode = docSep.closePage(hnode);} boolean removeStyleAtExit = setSectionStyle(onode); - hnode = docSep.openPage(hnode, pageNum); + if (pageWasOpened) {hnode = docSep.openPage(hnode, pageNum);} hnode = traverseBlockText(onode, hnode); if (isLast) { insertEndnotes((Element) hnode, sectionName); @@ -1718,7 +1719,8 @@ public class TextConverter extends ConverterHelper { //hnode = exitPageContainer((Element) hnode); addFooter(hnode); // Update MP - updateMasterPage(style); + updateMasterPageWith(style); + setPageContainerStyle(); // Set new page number if defined or increment if not if (newPageNumber != null) { pageNum = newPageNumber; @@ -1782,17 +1784,12 @@ public class TextConverter extends ConverterHelper { private Node startDocument(Node hnode, StyleWithProperties style, Integer newPageNumber) { - if (hasMasterPage(style)) { - updateMasterPage(style); - } else { - currentMasterPage = "Standard"; - } + setFirstMasterPage(style); + if (newPageNumber != null) { pageNum = newPageNumber; } else { - fitPageNumberToMasterPageStyle(); } - //Start tagging String sTitle = converter.getTitle(); hnode = docSep.startDocument(hnode, sTitle,pageNum); @@ -1803,6 +1800,21 @@ public class TextConverter extends ConverterHelper { return hnode; } + private void setFirstMasterPage(StyleWithProperties style) { + updateMasterPageWith(style); + if (currentMasterPage == null) { + currentMasterPage = "Standard"; + } + setPageContainerStyle(); + } + + private void setPageContainerStyle() { + MasterPage mp = ofr.getFullMasterPage(currentMasterPage); + PageLayout layout = ofr.getPageLayout(mp.getPageLayoutName()); + String containerStyle = "column-count: " + layout.getColCount() + ";"; + docSep.setPageContainerStyle(containerStyle); + } + private void fitPageNumberToMasterPageStyle() { // TODO: READ master-page style @@ -1845,7 +1857,7 @@ public class TextConverter extends ConverterHelper { return false; } - private void updateMasterPage(StyleWithProperties style) { + private void updateMasterPageWith(StyleWithProperties style) { if (!hasMasterPage(style) && nextMasterPage == null) { return; @@ -1858,8 +1870,6 @@ public class TextConverter extends ConverterHelper { } MasterPage masterPage = ofr.getFullMasterPage(currentMasterPage); nextMasterPage = masterPage.getProperty(STYLE_NEXT_STYLE_NAME); - //TODO:PROCESS MASTERPAGE COLUMNS - //docSep.setPageContainerStyle("column-count: 2;"); }