diff --git a/source/java/writer2latex/latex/CharStyleConverter.java b/source/java/writer2latex/latex/CharStyleConverter.java
index f5454e7..cae32e2 100644
--- a/source/java/writer2latex/latex/CharStyleConverter.java
+++ b/source/java/writer2latex/latex/CharStyleConverter.java
@@ -470,7 +470,7 @@ public class CharStyleConverter extends StyleConverter {
private static final String nfssSize(String sFontSize){
if (sFontSize==null) return null;
- return "\\fontsize{"+sFontSize+"}{"+Misc.multiply("120%",sFontSize)+"}\\selectfont";
+ return "\\fontsize{"+sFontSize+"}{"+Calc.multiply("120%",sFontSize)+"}\\selectfont";
}
// other character formatting
diff --git a/source/java/writer2latex/latex/DrawConverter.java b/source/java/writer2latex/latex/DrawConverter.java
index 99b529d..80ada90 100644
--- a/source/java/writer2latex/latex/DrawConverter.java
+++ b/source/java/writer2latex/latex/DrawConverter.java
@@ -41,6 +41,7 @@ import writer2latex.office.MIMETypes;
import writer2latex.office.OfficeReader;
import writer2latex.office.XMLString;
import writer2latex.util.CSVList;
+import writer2latex.util.Calc;
import writer2latex.util.Misc;
/**
@@ -355,8 +356,8 @@ public class DrawConverter extends ConverterHelper {
CSVList options = new CSVList(',');
if (!config.originalImageSize()) {
Element frame = getFrame(node);
- String sWidth = Misc.truncateLength(frame.getAttribute(XMLString.SVG_WIDTH));
- String sHeight = Misc.truncateLength(frame.getAttribute(XMLString.SVG_HEIGHT));
+ String sWidth = Calc.truncateLength(frame.getAttribute(XMLString.SVG_WIDTH));
+ String sHeight = Calc.truncateLength(frame.getAttribute(XMLString.SVG_HEIGHT));
if (sWidth!=null) { options.addValue("width="+sWidth); }
if (sHeight!=null) { options.addValue("height="+sHeight); }
}
@@ -415,7 +416,7 @@ public class DrawConverter extends ConverterHelper {
if (ofr.isFigureSequenceName(sSeqName)) { bIsCaption = true; }
}
- String sWidth = Misc.truncateLength(getFrame(node).getAttribute(XMLString.SVG_WIDTH));
+ String sWidth = Calc.truncateLength(getFrame(node).getAttribute(XMLString.SVG_WIDTH));
if (!bIsCaption) {
ldp.append("\\begin{minipage}{").append(sWidth).append("}").nl();
}
diff --git a/source/java/writer2latex/latex/HeadingConverter.java b/source/java/writer2latex/latex/HeadingConverter.java
index 7b14a15..d4a0d12 100644
--- a/source/java/writer2latex/latex/HeadingConverter.java
+++ b/source/java/writer2latex/latex/HeadingConverter.java
@@ -37,6 +37,7 @@ import writer2latex.office.ListStyle;
import writer2latex.office.OfficeReader;
import writer2latex.office.StyleWithProperties;
import writer2latex.office.XMLString;
+import writer2latex.util.Calc;
import writer2latex.util.Misc;
/* This class converts OpenDocument headings (text:h
) and
@@ -246,12 +247,12 @@ public class HeadingConverter extends ConverterHelper {
// Note: Use first line as left indent (cannot have separate first line indent)
ldp.append("\\renewcommand\\").append(sSecName)
.append("{\\@startsection{").append(sSecName).append("}{"+hm.getLevel(i))
- .append("}{"+Misc.add(sMarginLeft,sTextIndent)+"}{");
+ .append("}{"+Calc.add(sMarginLeft,sTextIndent)+"}{");
// Suppress indentation after heading? currently not..
// ldp.append("-");
ldp.append(sMarginTop)
.append("}{")
- .append(Misc.isZero(sMarginBottom) ? "0.1mm" : sMarginBottom)
+ .append(Calc.isZero(sMarginBottom) ? "0.1mm" : sMarginBottom)
.append("}{");
// Note: decl.getAfter() may include a page break after, which we ignore
ldp.append(decl.getBefore());
@@ -319,7 +320,7 @@ public class HeadingConverter extends ConverterHelper {
if (sTextIndent==null) { sTextIndent = "0cm"; }*/
String sTabPos = outline.getLevelStyleProperty(i, XMLString.TEXT_LIST_TAB_STOP_POSITION);
if (sTabPos==null) { sTabPos = "0cm"; }
- sDistance = Misc.sub(sTabPos, Misc.add(sMarginLeft, sTextIndent));
+ sDistance = Calc.sub(sTabPos, Calc.add(sMarginLeft, sTextIndent));
}
else if ("space".equals(sFormat)) {
sSpaceChar="\\ ";
diff --git a/source/java/writer2latex/latex/ListConverter.java b/source/java/writer2latex/latex/ListConverter.java
index c266334..a754d9c 100644
--- a/source/java/writer2latex/latex/ListConverter.java
+++ b/source/java/writer2latex/latex/ListConverter.java
@@ -36,6 +36,7 @@ import writer2latex.latex.util.Context;
import writer2latex.office.ListStyle;
import writer2latex.office.OfficeReader;
import writer2latex.office.XMLString;
+import writer2latex.util.Calc;
import writer2latex.util.Misc;
public class ListConverter extends StyleConverter {
@@ -405,7 +406,7 @@ public class ListConverter extends StyleConverter {
// This defines the position of an additional tab stop, which really means the start position of the text *after* the label
String sTabPos = style.getLevelStyleProperty(i, XMLString.TEXT_LIST_TAB_STOP_POSITION);
if (sTabPos==null) { sTabPos = "0cm"; }
- sTheLabel += "\\hspace{"+Misc.sub(sTabPos, Misc.add(sMarginLeft, sTextIndent))+"}";
+ sTheLabel += "\\hspace{"+Calc.sub(sTabPos, Calc.add(sMarginLeft, sTextIndent))+"}";
}
}
@@ -433,7 +434,7 @@ public class ListConverter extends StyleConverter {
.append("\\newenvironment{")
.append(sLevelName[i]).append("}{")
.append("\\def\\writerlistleftskip{\\addtolength\\leftskip{")
- .append(Misc.add(sSpaceBefore,sLabelWidth)).append("}}")
+ .append(Calc.add(sSpaceBefore,sLabelWidth)).append("}}")
.append("\\def\\writerlistparindent{}")
.append("\\def\\writerlistlabel{}");
// Redefine \item
diff --git a/source/java/writer2latex/latex/PageStyleConverter.java b/source/java/writer2latex/latex/PageStyleConverter.java
index 2889408..7a7a62c 100644
--- a/source/java/writer2latex/latex/PageStyleConverter.java
+++ b/source/java/writer2latex/latex/PageStyleConverter.java
@@ -32,6 +32,7 @@ import org.w3c.dom.Element;
import org.w3c.dom.Node;
import writer2latex.util.CSVList;
+import writer2latex.util.Calc;
import writer2latex.util.Misc;
import writer2latex.office.*;
import writer2latex.latex.util.BeforeAfter;
@@ -393,22 +394,22 @@ public class PageStyleConverter extends StyleConverter {
if (layout!=null) {
if (layout.hasHeaderStyle()) {
String sThisHeadHeight = layout.getHeaderProperty(XMLString.FO_MIN_HEIGHT);
- if (sThisHeadHeight!=null && Misc.isLessThan(sHeadHeight,sThisHeadHeight)) {
+ if (sThisHeadHeight!=null && Calc.isLessThan(sHeadHeight,sThisHeadHeight)) {
sHeadHeight = sThisHeadHeight;
}
String sThisHeadSep = layout.getHeaderProperty(XMLString.FO_MARGIN_BOTTOM);
- if (sThisHeadSep!=null && Misc.isLessThan(sHeadSep,sThisHeadSep)) {
+ if (sThisHeadSep!=null && Calc.isLessThan(sHeadSep,sThisHeadSep)) {
sHeadSep = sThisHeadSep;
}
bIncludeHead = true;
}
if (layout.hasFooterStyle()) {
String sThisFootHeight = layout.getFooterProperty(XMLString.FO_MIN_HEIGHT);
- if (sThisFootHeight!=null && Misc.isLessThan(sFootHeight,sThisFootHeight)) {
+ if (sThisFootHeight!=null && Calc.isLessThan(sFootHeight,sThisFootHeight)) {
sFootHeight = sThisFootHeight;
}
String sThisFootSep = layout.getFooterProperty(XMLString.FO_MARGIN_TOP);
- if (sThisFootSep!=null && Misc.isLessThan(sFootSep,sThisFootSep)) {
+ if (sThisFootSep!=null && Calc.isLessThan(sFootSep,sThisFootSep)) {
sFootSep = sThisFootSep;
}
bIncludeFoot = true;
@@ -417,14 +418,14 @@ public class PageStyleConverter extends StyleConverter {
}
}
// Define 12pt as minimum height (the source may specify 0pt..)
- if (bIncludeHead && Misc.isLessThan(sHeadHeight,"12pt")) {
+ if (bIncludeHead && Calc.isLessThan(sHeadHeight,"12pt")) {
sHeadHeight = "12pt";
}
- if (bIncludeFoot && Misc.isLessThan(sFootHeight,"12pt")) {
+ if (bIncludeFoot && Calc.isLessThan(sFootHeight,"12pt")) {
sFootHeight = "12pt";
}
- String sFootSkip = Misc.add(sFootHeight,sFootSep);
+ String sFootSkip = Calc.add(sFootHeight,sFootSep);
if (config.useGeometry()) {
// Set up options for geometry.sty
@@ -459,13 +460,13 @@ public class PageStyleConverter extends StyleConverter {
}
else {
// Calculate text height and text width
- String sTextHeight = Misc.sub(sPaperHeight,sMarginTop);
- sTextHeight = Misc.sub(sTextHeight,sHeadHeight);
- sTextHeight = Misc.sub(sTextHeight,sHeadSep);
- sTextHeight = Misc.sub(sTextHeight,sFootSkip);
- sTextHeight = Misc.sub(sTextHeight,sMarginBottom);
- String sTextWidth = Misc.sub(sPaperWidth,sMarginLeft);
- sTextWidth = Misc.sub(sTextWidth,sMarginRight);
+ String sTextHeight = Calc.sub(sPaperHeight,sMarginTop);
+ sTextHeight = Calc.sub(sTextHeight,sHeadHeight);
+ sTextHeight = Calc.sub(sTextHeight,sHeadSep);
+ sTextHeight = Calc.sub(sTextHeight,sFootSkip);
+ sTextHeight = Calc.sub(sTextHeight,sMarginBottom);
+ String sTextWidth = Calc.sub(sPaperWidth,sMarginLeft);
+ sTextWidth = Calc.sub(sTextWidth,sMarginRight);
ldp.append("% Page layout (geometry)").nl();
@@ -514,12 +515,12 @@ public class PageStyleConverter extends StyleConverter {
if (sHeight==null) { sHeight = "0.2mm"; }
String sWidth = mainPageLayout.getFootnoteProperty(XMLString.STYLE_REL_WIDTH);
if (sWidth==null) { sWidth = "25%"; }
- sWidth=Float.toString(Misc.getFloat(sWidth.substring(0,sWidth.length()-1),1)/100);
+ sWidth=Float.toString(Calc.getFloat(sWidth.substring(0,sWidth.length()-1),1)/100);
BeforeAfter baColor = new BeforeAfter();
String sColor = mainPageLayout.getFootnoteProperty(XMLString.STYLE_COLOR);
palette.getColorCv().applyColor(sColor,false,baColor,new Context());
- String sSkipFootins = Misc.add(sBefore,sHeight);
+ String sSkipFootins = Calc.add(sBefore,sHeight);
ldp.append("% Footnote rule").nl()
.append("\\setlength{\\skip\\footins}{").append(sSkipFootins).append("}").nl()
@@ -582,7 +583,7 @@ public class PageStyleConverter extends StyleConverter {
}
private boolean compare(String sLength1, String sLength2, String sTolerance) {
- return Misc.isLessThan(Misc.abs(Misc.sub(sLength1,sLength2)),sTolerance);
+ return Calc.isLessThan(Calc.abs(Calc.sub(sLength1,sLength2)),sTolerance);
}
/* Helper: Get display name, or original name if it doesn't exist */
diff --git a/source/java/writer2latex/latex/ParConverter.java b/source/java/writer2latex/latex/ParConverter.java
index 5baadac..fbe1b31 100644
--- a/source/java/writer2latex/latex/ParConverter.java
+++ b/source/java/writer2latex/latex/ParConverter.java
@@ -35,7 +35,7 @@ import writer2latex.latex.util.StyleMap;
import writer2latex.office.OfficeReader;
import writer2latex.office.StyleWithProperties;
import writer2latex.office.XMLString;
-import writer2latex.util.Misc;
+import writer2latex.util.Calc;
/*
This class converts OpenDocument paragraphs (text:p
) and
* paragraph styles/formatting into LaTeX
This class reads and collects global information about an OOo document.
diff --git a/source/java/writer2latex/office/StyleWithProperties.java b/source/java/writer2latex/office/StyleWithProperties.java
index a86679c..08b04eb 100644
--- a/source/java/writer2latex/office/StyleWithProperties.java
+++ b/source/java/writer2latex/office/StyleWithProperties.java
@@ -27,6 +27,7 @@ package writer2latex.office;
//import org.w3c.dom.Element;
import org.w3c.dom.Node;
+import writer2latex.util.Calc;
//import org.w3c.dom.NamedNodeMap;
//import java.util.Hashtable;
import writer2latex.util.Misc;
@@ -139,7 +140,7 @@ public class StyleWithProperties extends OfficeStyle {
int nRealIndex = bIsOldProps ? OLDPROPS : nIndex;
if (properties[nRealIndex].containsProperty(sName)) {
String sValue = properties[nRealIndex].getProperty(sName);
- return Misc.truncateLength(sValue);
+ return Calc.truncateLength(sValue);
}
else if (bInherit && getParentName()!=null) {
StyleWithProperties parentStyle = (StyleWithProperties) family.getStyle(getParentName());
@@ -206,16 +207,16 @@ public class StyleWithProperties extends OfficeStyle {
= (StyleWithProperties) family.getStyle(getParentName());
if (parentStyle!=null) {
String sParentValue = parentStyle.getAbsoluteProperty(nIndex,sProperty);
- if (sParentValue!=null) { return Misc.multiply(sValue,sParentValue); }
+ if (sParentValue!=null) { return Calc.multiply(sValue,sParentValue); }
}
else if (getFamily()!=null && getFamily().getDefaultStyle()!=null) {
StyleWithProperties style = (StyleWithProperties) getFamily().getDefaultStyle();
String sDefaultValue=(String) style.getProperty(nIndex,sProperty,false);
- if (sValue !=null) { return Misc.multiply(sValue,sDefaultValue); }
+ if (sValue !=null) { return Calc.multiply(sValue,sDefaultValue); }
}
}
else {
- return Misc.truncateLength(sValue);
+ return Calc.truncateLength(sValue);
}
}
else if (getParentName()!=null){
diff --git a/source/java/writer2latex/office/TableReader.java b/source/java/writer2latex/office/TableReader.java
index eaff414..7abafdc 100644
--- a/source/java/writer2latex/office/TableReader.java
+++ b/source/java/writer2latex/office/TableReader.java
@@ -32,6 +32,7 @@ import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
+import writer2latex.util.Calc;
import writer2latex.util.Misc;
/**
@@ -137,7 +138,7 @@ public class TableReader {
else if (sTableWidth!=null){
// Calculate the relative column width from the absolute column widths
// This may not add up to exactly 100%, but we will live with that
- sRelColWidth[nCol] = Misc.divide(sColWidth[nCol], sTableWidth, true);
+ sRelColWidth[nCol] = Calc.divide(sColWidth[nCol], sTableWidth, true);
}
else {
// The table has not width, distribute the columns evenly
@@ -471,7 +472,7 @@ public class TableReader {
int nCols = Misc.getPosInteger(cell.getAttribute(XMLString.TABLE_NUMBER_COLUMNS_SPANNED),1);
String sWidth = sColWidth[nCol];
for (int i=nCol+1; i This is an abstract base class to convert an OpenDocument style family to
@@ -73,15 +73,15 @@ public abstract class StyleConverterHelper extends ConverterHelper {
protected String scale(String s) {
if (bConvertToPx) {
- return Misc.length2px(Misc.multiply(sScale,s));
+ return Calc.length2px(Calc.multiply(sScale,s));
}
else {
- return Misc.multiply(sScale,s);
+ return Calc.multiply(sScale,s);
}
}
protected String colScale(String s) {
- return scale(Misc.multiply(sColScale,s));
+ return scale(Calc.multiply(sColScale,s));
}
/** Apply the writing direction (ltr or rtl) attribute from a style
diff --git a/source/java/writer2latex/xhtml/TableConverter.java b/source/java/writer2latex/xhtml/TableConverter.java
index 2777c42..b09309b 100644
--- a/source/java/writer2latex/xhtml/TableConverter.java
+++ b/source/java/writer2latex/xhtml/TableConverter.java
@@ -32,6 +32,7 @@ import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Element;
+import writer2latex.util.Calc;
import writer2latex.util.Misc;
import writer2latex.util.SimpleInputBuffer;
import writer2latex.office.XMLString;
@@ -348,7 +349,7 @@ public class TableConverter extends ConverterHelper {
if (sWidth!=null) {
if (config.tableSize()==XhtmlConfig.RELATIVE){
// Force relative width
- sWidth=Misc.divide(sWidth, converter.getContentWidth(), true);
+ sWidth=Calc.divide(sWidth, converter.getContentWidth(), true);
info.props.addValue("width",sWidth);
}
else {
@@ -413,31 +414,31 @@ public class TableConverter extends ConverterHelper {
// "total cell width" - "border" - "padding"
String s = style.getProperty(XMLString.FO_PADDING_LEFT);
if (s!=null) {
- sEdge=Misc.add(sEdge,getTableSc().colScale(s));
+ sEdge=Calc.add(sEdge,getTableSc().colScale(s));
}
s = style.getProperty(XMLString.FO_PADDING_RIGHT);
if (s!=null) {
- sEdge=Misc.add(sEdge,getTableSc().colScale(s));
+ sEdge=Calc.add(sEdge,getTableSc().colScale(s));
}
s = style.getProperty(XMLString.FO_PADDING);
if (s!=null) {
- sEdge=Misc.add(sEdge,Misc.multiply("200%",getTableSc().colScale(s)));
+ sEdge=Calc.add(sEdge,Calc.multiply("200%",getTableSc().colScale(s)));
}
s = style.getProperty(XMLString.FO_BORDER_LEFT);
if (s!=null) {
- sEdge=Misc.add(sEdge,getTableSc().colScale(borderWidth(s)));
+ sEdge=Calc.add(sEdge,getTableSc().colScale(borderWidth(s)));
}
s = style.getProperty(XMLString.FO_BORDER_RIGHT);
if (s!=null) {
- sEdge=Misc.add(sEdge,getTableSc().colScale(borderWidth(s)));
+ sEdge=Calc.add(sEdge,getTableSc().colScale(borderWidth(s)));
}
s = style.getProperty(XMLString.FO_BORDER);
if (s!=null) {
- sEdge=Misc.add(sEdge,Misc.multiply("200%",getTableSc().colScale(borderWidth(s))));
+ sEdge=Calc.add(sEdge,Calc.multiply("200%",getTableSc().colScale(borderWidth(s))));
}
if (sTotalWidth!=null) {
- info.props.addValue("width",Misc.sub(getTableSc().colScale(sTotalWidth),sEdge));
+ info.props.addValue("width",Calc.sub(getTableSc().colScale(sTotalWidth),sEdge));
}
}
diff --git a/source/java/writer2latex/xhtml/TextStyleConverter.java b/source/java/writer2latex/xhtml/TextStyleConverter.java
index 0513de7..1379d35 100644
--- a/source/java/writer2latex/xhtml/TextStyleConverter.java
+++ b/source/java/writer2latex/xhtml/TextStyleConverter.java
@@ -35,8 +35,8 @@ import writer2latex.office.OfficeStyleFamily;
import writer2latex.office.StyleWithProperties;
import writer2latex.office.XMLString;
import writer2latex.util.CSVList;
+import writer2latex.util.Calc;
import writer2latex.util.ExportNameCollection;
-import writer2latex.util.Misc;
/**
* This class converts OpenDocument text styles to CSS2 styles.
@@ -319,11 +319,11 @@ public class TextStyleConverter extends StyleWithPropertiesConverterHelper {
}
if (s!=null) {
if (bRelativeFontSize) {
- String sFontSize = Misc.divide(Misc.multiply(sFontScaling, Misc.multiply(s4,s)), sBaseFontSize);
+ String sFontSize = Calc.divide(Calc.multiply(sFontScaling, Calc.multiply(s4,s)), sBaseFontSize);
if (!"100%".equals(sFontSize)) props.addValue("font-size", sFontSize);
}
else {
- props.addValue("font-size",Misc.multiply(s4,scale(s)));
+ props.addValue("font-size",Calc.multiply(s4,scale(s)));
}
}
else {
@@ -335,7 +335,7 @@ public class TextStyleConverter extends StyleWithPropertiesConverterHelper {
}
else if (s!=null) {
if (bRelativeFontSize) {
- String sFontSize = Misc.divide(Misc.multiply(sFontScaling, s),sBaseFontSize);
+ String sFontSize = Calc.divide(Calc.multiply(sFontScaling, s),sBaseFontSize);
if (!"100%".equals(sFontSize)) props.addValue("font-size", sFontSize);
}
else {