
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@254 f0f2a975-2e09-46c8-9428-3b39399b9f3c
111 lines
3.8 KiB
Java
111 lines
3.8 KiB
Java
/************************************************************************
|
|
*
|
|
* ConverterHelper.java
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
* Copyright: 2002-2015 by Henrik Just
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Version 1.6 (2015-06-15)
|
|
*
|
|
*/
|
|
|
|
package writer2latex.xhtml;
|
|
|
|
import org.w3c.dom.Element;
|
|
|
|
import writer2latex.office.OfficeReader;
|
|
|
|
/** A <code>ConverterHelper</code> is responsible for conversion of some specific content into XHTML.
|
|
*/
|
|
class ConverterHelper {
|
|
|
|
// Member variables providing our content (set in constructor)
|
|
OfficeReader ofr;
|
|
XhtmlConfig config;
|
|
Converter converter;
|
|
|
|
/** Construct a new converter helper based on a
|
|
*
|
|
* @param ofr the office reader used to access the source document
|
|
* @param config the configuration to use
|
|
* @param converter the main converter to which the helper belongs
|
|
*/
|
|
ConverterHelper(OfficeReader ofr, XhtmlConfig config, Converter converter) {
|
|
this.ofr = ofr;
|
|
this.config = config;
|
|
this.converter = converter;
|
|
}
|
|
|
|
// Convenience accessor methods to other converter helpers (only needed to save some typing)
|
|
|
|
StyleConverter getStyleCv() { return converter.getStyleCv(); }
|
|
|
|
TextStyleConverter getTextSc() { return converter.getStyleCv().getTextSc(); }
|
|
|
|
ParStyleConverter getParSc() { return converter.getStyleCv().getParSc(); }
|
|
|
|
HeadingStyleConverter getHeadingSc() { return converter.getStyleCv().getHeadingSc(); }
|
|
|
|
ListStyleConverter getListSc() { return converter.getStyleCv().getListSc(); }
|
|
|
|
SectionStyleConverter getSectionSc() { return converter.getStyleCv().getSectionSc(); }
|
|
|
|
TableStyleConverter getTableSc() { return converter.getStyleCv().getTableSc(); }
|
|
|
|
RowStyleConverter getRowSc() { return converter.getStyleCv().getRowSc(); }
|
|
|
|
CellStyleConverter getCellSc() { return converter.getStyleCv().getCellSc(); }
|
|
|
|
FrameStyleConverter getFrameSc() { return converter.getStyleCv().getFrameSc(); }
|
|
|
|
PresentationStyleConverter getPresentationSc() { return converter.getStyleCv().getPresentationSc(); }
|
|
|
|
PageStyleConverter getPageSc() { return converter.getStyleCv().getPageSc(); }
|
|
|
|
TextConverter getTextCv() { return converter.getTextCv(); }
|
|
|
|
TableConverter getTableCv() { return converter.getTableCv(); }
|
|
|
|
DrawConverter getDrawCv() { return converter.getDrawCv(); }
|
|
|
|
MathConverter getMathCv() { return converter.getMathCv(); }
|
|
|
|
/** Apply style information to an XHTML node
|
|
*
|
|
* @param info the style to apply
|
|
* @param hnode the XHTML node
|
|
*/
|
|
void applyStyle(StyleInfo info, Element hnode) {
|
|
if (info.sClass!=null) {
|
|
hnode.setAttribute("class",info.sClass);
|
|
}
|
|
if (!info.props.isEmpty()) {
|
|
hnode.setAttribute("style",info.props.toString());
|
|
}
|
|
if (info.sLang!=null) {
|
|
hnode.setAttribute("xml:lang",info.sLang);
|
|
if (converter.getType()==XhtmlDocument.XHTML10 || converter.getType()==XhtmlDocument.HTML5) {
|
|
hnode.setAttribute("lang",info.sLang); // HTML4 compatibility/polyglot HTML5S
|
|
}
|
|
}
|
|
if (info.sDir!=null) {
|
|
hnode.setAttribute("dir",info.sDir);
|
|
}
|
|
}
|
|
|
|
}
|