From 5bb29b8b6c27c304229321b37b26bdf3f879397d Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Wed, 22 Jan 2020 16:42:14 +0100 Subject: [PATCH] Added column count --- .../office/StyleWithProperties.java | 4 +- .../writer2latex/xhtml/DocumentSeparator.java | 6 ++- .../xhtml/FrameStyleConverter.java | 11 ++++- .../writer2latex/xhtml/NoteConverter.java | 14 +++++- .../writer2latex/xhtml/TextConverter.java | 44 ++++++++++++------- 5 files changed, 56 insertions(+), 23 deletions(-) diff --git a/src/main/java/writer2latex/office/StyleWithProperties.java b/src/main/java/writer2latex/office/StyleWithProperties.java index 6be2144..5fed81a 100644 --- a/src/main/java/writer2latex/office/StyleWithProperties.java +++ b/src/main/java/writer2latex/office/StyleWithProperties.java @@ -138,8 +138,8 @@ public class StyleWithProperties extends OfficeStyle { backgroundImageProperties.loadFromDOM(child); } else if (XMLString.STYLE_COLUMNS.equals(sName)) { - nColCount = Misc.getPosInteger(Misc.getAttribute(child, - XMLString.FO_COLUMN_COUNT),1); + nColCount = Misc.getPosInteger(Misc.getAttribute(child, XMLString.FO_COLUMN_COUNT),1); + // TODO: read individual columns } else if (XMLString.STYLE_FOOTNOTE_SEP.equals(sName)) { diff --git a/src/main/java/writer2latex/xhtml/DocumentSeparator.java b/src/main/java/writer2latex/xhtml/DocumentSeparator.java index d3f5bc3..a165732 100644 --- a/src/main/java/writer2latex/xhtml/DocumentSeparator.java +++ b/src/main/java/writer2latex/xhtml/DocumentSeparator.java @@ -321,7 +321,7 @@ public class DocumentSeparator { Element container = converter.createElement("div"); container.setAttribute("class", "pageContainer"); if (pageContainerStyle != null) { - System.out.println(pageContainerStyle); + //System.out.println(pageContainerStyle); container.setAttribute("style", pageContainerStyle); } hnode.appendChild(container); @@ -345,5 +345,9 @@ public class DocumentSeparator { return comment; } + public String getPageContainerStyle() { + return this.pageContainerStyle; + } + } \ No newline at end of file diff --git a/src/main/java/writer2latex/xhtml/FrameStyleConverter.java b/src/main/java/writer2latex/xhtml/FrameStyleConverter.java index 31ff685..f1df9d1 100644 --- a/src/main/java/writer2latex/xhtml/FrameStyleConverter.java +++ b/src/main/java/writer2latex/xhtml/FrameStyleConverter.java @@ -133,9 +133,16 @@ public class FrameStyleConverter extends StyleWithPropertiesConverterHelper { cssBorder(style,props,bInherit); cssPadding(style,props,bInherit); cssBackground(style,props,bInherit); - } + cssColumns(style,props,bInherit); + } - public void cssMargins(StyleWithProperties style, CSVList props, boolean bInherit){ + private void cssColumns(StyleWithProperties style, CSVList props, boolean bInherit) { + String columnCount = style.getAbsoluteProperty(XMLString.FO_COLUMN_COUNT); + System.out.println("columnCount " + columnCount); + //System.out.println(style.); + } + + public void cssMargins(StyleWithProperties style, CSVList props, boolean bInherit){ // *Absolute* values fit with css String s; if (bInherit || style.getProperty(XMLString.FO_MARGIN_LEFT,false)!=null) { diff --git a/src/main/java/writer2latex/xhtml/NoteConverter.java b/src/main/java/writer2latex/xhtml/NoteConverter.java index efaf448..cbbbe48 100644 --- a/src/main/java/writer2latex/xhtml/NoteConverter.java +++ b/src/main/java/writer2latex/xhtml/NoteConverter.java @@ -93,7 +93,10 @@ class NoteConverter extends ConverterHelper { noteList = new ArrayList(); notes.put(section, noteList); } - noteList.add(onode); + + noteList.add(onode); + System.out.println("add note to section " + section + " notelist size is " + noteList.size()); + } boolean hasNotes() { @@ -133,6 +136,15 @@ class NoteConverter extends ConverterHelper { public void flushNotes(Node hnode, String sEpubType, String section) { List noteList = notes.get(section); + if (noteList == null) { + //System.out.println("noteList is null"); + //System.out.println("notes " + notes.size()); + /*for (StackTraceElement ste : Thread.currentThread().getStackTrace()) { + System.out.println(ste); + }*/ + return; + } + int nSize = noteList.size(); for (int i=0; i 1 ) { + String styleValue = "column-count: " + colCount + ";"; + docSep.setPageContainerStyle(styleValue); + } + } + } private void handleHeading(Element onode, Element hnode, boolean bAfterSplit) { int nListLevel = getOutlineLevel((Element)onode);