Writer2xhtml custom config ui + preparing for EPUB
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@54 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
e0cb22dd2e
commit
a58ea7fa19
26 changed files with 783 additions and 120 deletions
|
@ -2,8 +2,12 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
|
||||||
|
|
||||||
---------- version 1.1.2 ----------
|
---------- version 1.1.2 ----------
|
||||||
|
|
||||||
[all] API change: New methods getMIMEType() and getSequenceNumber() added
|
[all] API change: The interface ConverterResult supports additional methods
|
||||||
to the OutputFile interface
|
to access the main document flow as a List, an "external" table of contents
|
||||||
|
and meta data of the source document. New interfaces TocEntry and MetaData
|
||||||
|
have been introduced to support this.
|
||||||
|
|
||||||
|
[all] API change: New method getMIMEType() added to the OutputFile interface
|
||||||
|
|
||||||
[w2x] Added user interface to edit custom configuration
|
[w2x] Added user interface to edit custom configuration
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,384 @@
|
||||||
|
/************************************************************************
|
||||||
|
*
|
||||||
|
* ConfigurationDialogBase.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-2010 by Henrik Just
|
||||||
|
*
|
||||||
|
* All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Version 1.2 (2010-03-22)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.openoffice.da.comp.w2lcommon.filter;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.text.Collator;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import com.sun.star.awt.XContainerWindowEventHandler;
|
||||||
|
import com.sun.star.awt.XDialog;
|
||||||
|
import com.sun.star.awt.XDialogProvider2;
|
||||||
|
import com.sun.star.awt.XWindow;
|
||||||
|
import com.sun.star.io.NotConnectedException;
|
||||||
|
import com.sun.star.io.XInputStream;
|
||||||
|
import com.sun.star.io.XOutputStream;
|
||||||
|
import com.sun.star.lang.XMultiComponentFactory;
|
||||||
|
import com.sun.star.ucb.CommandAbortedException;
|
||||||
|
import com.sun.star.ucb.XSimpleFileAccess2;
|
||||||
|
import com.sun.star.ui.dialogs.ExecutableDialogResults;
|
||||||
|
import com.sun.star.uno.AnyConverter;
|
||||||
|
import com.sun.star.uno.UnoRuntime;
|
||||||
|
import com.sun.star.uno.XComponentContext;
|
||||||
|
import com.sun.star.util.XStringSubstitution;
|
||||||
|
|
||||||
|
import com.sun.star.lib.uno.helper.WeakBase;
|
||||||
|
import com.sun.star.lib.uno.adapter.XInputStreamToInputStreamAdapter;
|
||||||
|
import com.sun.star.lib.uno.adapter.XOutputStreamToOutputStreamAdapter;
|
||||||
|
|
||||||
|
import writer2latex.api.Config;
|
||||||
|
import writer2latex.api.ConverterFactory;
|
||||||
|
|
||||||
|
import org.openoffice.da.comp.w2lcommon.helper.DialogAccess;
|
||||||
|
import org.openoffice.da.comp.w2lcommon.helper.StyleNameProvider;
|
||||||
|
|
||||||
|
/** This is a base implementation of a uno component which supports several option pages
|
||||||
|
* with a single <code>XContainerWindowEventHandler</code>. The title of the dialogs
|
||||||
|
* are used to differentiate between the individual pages
|
||||||
|
*/
|
||||||
|
public abstract class ConfigurationDialogBase extends WeakBase implements XContainerWindowEventHandler {
|
||||||
|
|
||||||
|
// The full path to the configuration file we handle
|
||||||
|
private String sConfigFileName = null;
|
||||||
|
|
||||||
|
// The component context
|
||||||
|
protected XComponentContext xContext;
|
||||||
|
|
||||||
|
// UNO simple file access service
|
||||||
|
protected XSimpleFileAccess2 sfa2 = null;
|
||||||
|
|
||||||
|
// Access to display names of the styles in the current document
|
||||||
|
protected StyleNameProvider styleNameProvider = null;
|
||||||
|
|
||||||
|
// The configuration implementation
|
||||||
|
protected Config config;
|
||||||
|
|
||||||
|
// The individual page handlers (the subclass must populate this)
|
||||||
|
protected Map<String,PageHandler> pageHandlers = new HashMap<String,PageHandler>();
|
||||||
|
|
||||||
|
// The subclass must provide these:
|
||||||
|
|
||||||
|
// MIME type of the document type we configure
|
||||||
|
protected abstract String getMIMEType();
|
||||||
|
|
||||||
|
// The dialog library containing the "new" and "delete" dialogs
|
||||||
|
protected abstract String getDialogLibraryName();
|
||||||
|
|
||||||
|
// The file name used for persistent storage of the edited configuration
|
||||||
|
protected abstract String getConfigFileName();
|
||||||
|
|
||||||
|
/** Create a new <code>ConfigurationDialogBase</code> */
|
||||||
|
public ConfigurationDialogBase(XComponentContext xContext) {
|
||||||
|
this.xContext = xContext;
|
||||||
|
|
||||||
|
// Get the SimpleFileAccess service
|
||||||
|
try {
|
||||||
|
Object sfaObject = xContext.getServiceManager().createInstanceWithContext(
|
||||||
|
"com.sun.star.ucb.SimpleFileAccess", xContext);
|
||||||
|
sfa2 = (XSimpleFileAccess2) UnoRuntime.queryInterface(XSimpleFileAccess2.class, sfaObject);
|
||||||
|
}
|
||||||
|
catch (com.sun.star.uno.Exception e) {
|
||||||
|
// failed to get SimpleFileAccess service (should not happen)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the config file name
|
||||||
|
XStringSubstitution xPathSub = null;
|
||||||
|
try {
|
||||||
|
Object psObject = xContext.getServiceManager().createInstanceWithContext(
|
||||||
|
"com.sun.star.util.PathSubstitution", xContext);
|
||||||
|
xPathSub = (XStringSubstitution) UnoRuntime.queryInterface(XStringSubstitution.class, psObject);
|
||||||
|
sConfigFileName = xPathSub.substituteVariables("$(user)/"+getConfigFileName(), false);
|
||||||
|
}
|
||||||
|
catch (com.sun.star.uno.Exception e) {
|
||||||
|
// failed to get PathSubstitution service (should not happen)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the configuration
|
||||||
|
config = ConverterFactory.createConverter(getMIMEType()).getConfig();
|
||||||
|
|
||||||
|
// Get the style name provider
|
||||||
|
styleNameProvider = new StyleNameProvider(xContext);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Implement XContainerWindowEventHandler
|
||||||
|
public boolean callHandlerMethod(XWindow xWindow, Object event, String sMethod)
|
||||||
|
throws com.sun.star.lang.WrappedTargetException {
|
||||||
|
XDialog xDialog = (XDialog)UnoRuntime.queryInterface(XDialog.class, xWindow);
|
||||||
|
String sTitle = xDialog.getTitle();
|
||||||
|
|
||||||
|
if (!pageHandlers.containsKey(sTitle)) {
|
||||||
|
throw new com.sun.star.lang.WrappedTargetException("Unknown dialog "+sTitle);
|
||||||
|
}
|
||||||
|
|
||||||
|
DialogAccess dlg = new DialogAccess(xDialog);
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (sMethod.equals("external_event") ) {
|
||||||
|
return handleExternalEvent(dlg, sTitle, event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (com.sun.star.uno.RuntimeException e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
catch (com.sun.star.uno.Exception e) {
|
||||||
|
throw new com.sun.star.lang.WrappedTargetException(sMethod, this, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return pageHandlers.get(sTitle).handleEvent(dlg, sMethod);
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean handleExternalEvent(DialogAccess dlg, String sTitle, Object aEventObject) throws com.sun.star.uno.Exception {
|
||||||
|
try {
|
||||||
|
String sMethod = AnyConverter.toString(aEventObject);
|
||||||
|
if (sMethod.equals("ok")) {
|
||||||
|
loadConfig(); // The file may have been changed by other pages, thus we reload
|
||||||
|
pageHandlers.get(sTitle).getControls(dlg);
|
||||||
|
saveConfig();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (sMethod.equals("back") || sMethod.equals("initialize")) {
|
||||||
|
loadConfig();
|
||||||
|
pageHandlers.get(sTitle).setControls(dlg);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (com.sun.star.lang.IllegalArgumentException e) {
|
||||||
|
throw new com.sun.star.lang.IllegalArgumentException(
|
||||||
|
"Method external_event requires a string in the event object argument.", this,(short) -1);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load the user configuration from file
|
||||||
|
private void loadConfig() {
|
||||||
|
if (sfa2!=null && sConfigFileName!=null) {
|
||||||
|
try {
|
||||||
|
XInputStream xIs = sfa2.openFileRead(sConfigFileName);
|
||||||
|
if (xIs!=null) {
|
||||||
|
InputStream is = new XInputStreamToInputStreamAdapter(xIs);
|
||||||
|
config.read(is);
|
||||||
|
is.close();
|
||||||
|
xIs.closeInput();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (IOException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
catch (NotConnectedException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
catch (CommandAbortedException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
catch (com.sun.star.uno.Exception e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save the user configuration
|
||||||
|
private void saveConfig() {
|
||||||
|
if (sfa2!=null && sConfigFileName!=null) {
|
||||||
|
try {
|
||||||
|
//Remove the file if it exists
|
||||||
|
if (sfa2.exists(sConfigFileName)) {
|
||||||
|
sfa2.kill(sConfigFileName);
|
||||||
|
}
|
||||||
|
// Then write the new contents
|
||||||
|
XOutputStream xOs = sfa2.openFileWrite(sConfigFileName);
|
||||||
|
if (xOs!=null) {
|
||||||
|
OutputStream os = new XOutputStreamToOutputStreamAdapter(xOs);
|
||||||
|
config.write(os);
|
||||||
|
os.close();
|
||||||
|
xOs.closeOutput();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (IOException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
catch (NotConnectedException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
catch (CommandAbortedException e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
catch (com.sun.star.uno.Exception e) {
|
||||||
|
// ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Inner class to handle the individual option pages
|
||||||
|
protected abstract class PageHandler {
|
||||||
|
protected abstract void getControls(DialogAccess dlg);
|
||||||
|
|
||||||
|
protected abstract void setControls(DialogAccess dlg);
|
||||||
|
|
||||||
|
protected abstract boolean handleEvent(DialogAccess dlg, String sMethodName);
|
||||||
|
|
||||||
|
// Methods to handle user controlled lists
|
||||||
|
protected XDialog getDialog(String sDialogName) {
|
||||||
|
XMultiComponentFactory xMCF = xContext.getServiceManager();
|
||||||
|
try {
|
||||||
|
Object provider = xMCF.createInstanceWithContext(
|
||||||
|
"com.sun.star.awt.DialogProvider2", xContext);
|
||||||
|
XDialogProvider2 xDialogProvider = (XDialogProvider2)
|
||||||
|
UnoRuntime.queryInterface(XDialogProvider2.class, provider);
|
||||||
|
String sDialogUrl = "vnd.sun.star.script:"+sDialogName+"?location=application";
|
||||||
|
return xDialogProvider.createDialog(sDialogUrl);
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean deleteItem(String sName) {
|
||||||
|
XDialog xDialog=getDialog(getDialogLibraryName()+".DeleteDialog");
|
||||||
|
if (xDialog!=null) {
|
||||||
|
DialogAccess ddlg = new DialogAccess(xDialog);
|
||||||
|
String sLabel = ddlg.getLabelText("DeleteLabel");
|
||||||
|
sLabel = sLabel.replaceAll("%s", sName);
|
||||||
|
ddlg.setLabelText("DeleteLabel", sLabel);
|
||||||
|
boolean bDelete = xDialog.execute()==ExecutableDialogResults.OK;
|
||||||
|
xDialog.endExecute();
|
||||||
|
return bDelete;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean deleteCurrentItem(DialogAccess dlg, String sListName) {
|
||||||
|
String[] sItems = dlg.getListBoxStringItemList(sListName);
|
||||||
|
short nSelected = dlg.getListBoxSelectedItem(sListName);
|
||||||
|
if (nSelected>=0 && deleteItem(sItems[nSelected])) {
|
||||||
|
int nOldLen = sItems.length;
|
||||||
|
String[] sNewItems = new String[nOldLen-1];
|
||||||
|
if (nSelected>0) {
|
||||||
|
System.arraycopy(sItems, 0, sNewItems, 0, nSelected);
|
||||||
|
}
|
||||||
|
if (nSelected<nOldLen-1) {
|
||||||
|
System.arraycopy(sItems, nSelected+1, sNewItems, nSelected, nOldLen-1-nSelected);
|
||||||
|
}
|
||||||
|
dlg.setListBoxStringItemList(sListName, sNewItems);
|
||||||
|
short nNewSelected = nSelected<nOldLen-1 ? nSelected : (short)(nSelected-1);
|
||||||
|
dlg.setListBoxSelectedItem(sListName, nNewSelected);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String newItem(Set<String> suggestions) {
|
||||||
|
XDialog xDialog=getDialog(getDialogLibraryName()+".NewDialog");
|
||||||
|
if (xDialog!=null) {
|
||||||
|
int nCount = suggestions.size();
|
||||||
|
String[] sItems = new String[nCount];
|
||||||
|
int i=0;
|
||||||
|
for (String s : suggestions) {
|
||||||
|
sItems[i++] = s;
|
||||||
|
}
|
||||||
|
sortStringArray(sItems);
|
||||||
|
DialogAccess ndlg = new DialogAccess(xDialog);
|
||||||
|
ndlg.setListBoxStringItemList("Name", sItems);
|
||||||
|
String sResult = null;
|
||||||
|
if (xDialog.execute()==ExecutableDialogResults.OK) {
|
||||||
|
DialogAccess dlg = new DialogAccess(xDialog);
|
||||||
|
sResult = dlg.getTextFieldText("Name");
|
||||||
|
}
|
||||||
|
xDialog.endExecute();
|
||||||
|
return sResult;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String appendItem(DialogAccess dlg, String sListName, Set<String> suggestions) {
|
||||||
|
String[] sItems = dlg.getListBoxStringItemList(sListName);
|
||||||
|
String sNewItem = newItem(suggestions);
|
||||||
|
if (sNewItem!=null) {
|
||||||
|
int nOldLen = sItems.length;
|
||||||
|
for (short i=0; i<nOldLen; i++) {
|
||||||
|
if (sNewItem.equals(sItems[i])) {
|
||||||
|
// Item already exists, select the existing one
|
||||||
|
dlg.setListBoxSelectedItem(sListName, i);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
String[] sNewItems = new String[nOldLen+1];
|
||||||
|
System.arraycopy(sItems, 0, sNewItems, 0, nOldLen);
|
||||||
|
sNewItems[nOldLen]=sNewItem;
|
||||||
|
dlg.setListBoxStringItemList(sListName, sNewItems);
|
||||||
|
dlg.setListBoxSelectedItem(sListName, (short)nOldLen);
|
||||||
|
}
|
||||||
|
return sNewItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void sortStringArray(String[] theArray) {
|
||||||
|
// TODO: Get locale from OOo rather than the system
|
||||||
|
Collator collator = Collator.getInstance();
|
||||||
|
Arrays.sort(theArray, collator);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Methods to set and get controls based on config
|
||||||
|
protected void checkBoxFromConfig(DialogAccess dlg, String sCheckBoxName, String sConfigName) {
|
||||||
|
dlg.setCheckBoxStateAsBoolean(sCheckBoxName, "true".equals(config.getOption(sConfigName)));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void checkBoxToConfig(DialogAccess dlg, String sCheckBoxName, String sConfigName) {
|
||||||
|
config.setOption(sConfigName, Boolean.toString(dlg.getCheckBoxStateAsBoolean(sCheckBoxName)));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void textBoxFromConfig(DialogAccess dlg, String sTextBoxName, String sConfigName) {
|
||||||
|
dlg.setTextFieldText(sTextBoxName, config.getOption(sConfigName));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void textBoxToConfig(DialogAccess dlg, String sTextBoxName, String sConfigName) {
|
||||||
|
config.setOption(sConfigName, dlg.getTextFieldText(sTextBoxName));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void listBoxFromConfig(DialogAccess dlg, String sListBoxName, String sConfigName, String[] sConfigValues, short nDefault) {
|
||||||
|
String sCurrentValue = config.getOption(sConfigName);
|
||||||
|
int nCount = sConfigValues.length;
|
||||||
|
for (short i=0; i<nCount; i++) {
|
||||||
|
if (sConfigValues[i].equals(sCurrentValue)) {
|
||||||
|
dlg.setListBoxSelectedItem(sListBoxName, i);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dlg.setListBoxSelectedItem(sListBoxName, nDefault);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void listBoxToConfig(DialogAccess dlg, String sListBoxName, String sConfigName, String[] sConfigValues) {
|
||||||
|
config.setOption(sConfigName, sConfigValues[dlg.getListBoxSelectedItem(sListBoxName)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,194 @@
|
||||||
|
/************************************************************************
|
||||||
|
*
|
||||||
|
* ConfigurationDialog.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-2010 by Henrik Just
|
||||||
|
*
|
||||||
|
* All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Version 1.2 (2010-03-22)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
package org.openoffice.da.comp.writer2xhtml;
|
||||||
|
|
||||||
|
import org.openoffice.da.comp.w2lcommon.filter.ConfigurationDialogBase;
|
||||||
|
import org.openoffice.da.comp.w2lcommon.helper.DialogAccess;
|
||||||
|
|
||||||
|
import com.sun.star.lang.XServiceInfo;
|
||||||
|
import com.sun.star.uno.XComponentContext;
|
||||||
|
|
||||||
|
public class ConfigurationDialog extends ConfigurationDialogBase implements XServiceInfo {
|
||||||
|
|
||||||
|
// Implement the interface XServiceInfo
|
||||||
|
|
||||||
|
/** The component will be registered under this name.
|
||||||
|
*/
|
||||||
|
public static String __serviceName = "org.openoffice.da.writer2xhtml.ConfigurationDialog";
|
||||||
|
|
||||||
|
/** The component should also have an implementation name.
|
||||||
|
*/
|
||||||
|
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.ConfigurationDialog";
|
||||||
|
|
||||||
|
public boolean supportsService(String sServiceName) {
|
||||||
|
return sServiceName.equals(__serviceName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getImplementationName() {
|
||||||
|
return __implementationName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String[] getSupportedServiceNames() {
|
||||||
|
String[] sSupportedServiceNames = { __serviceName };
|
||||||
|
return sSupportedServiceNames;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Configure the base class
|
||||||
|
@Override protected String getMIMEType() { return "text/html"; }
|
||||||
|
|
||||||
|
@Override protected String getDialogLibraryName() { return "W2XDialogs2"; }
|
||||||
|
|
||||||
|
@Override protected String getConfigFileName() { return "writer2xhtml.xml"; }
|
||||||
|
|
||||||
|
/** Construct a new <code>ConfigurationDialog</code> */
|
||||||
|
public ConfigurationDialog(XComponentContext xContext) {
|
||||||
|
super(xContext);
|
||||||
|
|
||||||
|
pageHandlers.put("General", new GeneralHandler());
|
||||||
|
//pageHandlers.put("Template", new TemplateHandler());
|
||||||
|
pageHandlers.put("Formatting", new FormattingHandler());
|
||||||
|
//pageHandlers.put("StylesPartI", new StylesPartIHandler());
|
||||||
|
//pageHandlers.put("StylesPartII", new StylesPartIIHandler());
|
||||||
|
pageHandlers.put("Content", new ContentHandler());
|
||||||
|
}
|
||||||
|
|
||||||
|
// Implement remaining method from XContainerWindowEventHandler
|
||||||
|
public String[] getSupportedMethodNames() {
|
||||||
|
String[] sNames = { "EncodingChange" };
|
||||||
|
return sNames;
|
||||||
|
}
|
||||||
|
|
||||||
|
// the page handlers
|
||||||
|
|
||||||
|
private class GeneralHandler extends PageHandler {
|
||||||
|
private final String[] sEncodingValues = { "UTF-8", "UTF-16", "ISO-8859-1", "US-ASCII" };
|
||||||
|
|
||||||
|
@Override protected void setControls(DialogAccess dlg) {
|
||||||
|
checkBoxFromConfig(dlg, "NoDoctype", "no_doctype");
|
||||||
|
checkBoxFromConfig(dlg, "AddBOM", "add_bom");
|
||||||
|
listBoxFromConfig(dlg, "Encoding", "encoding", sEncodingValues, (short) 0);
|
||||||
|
|
||||||
|
if ("true".equals(config.getOption("hexadecimal_entities"))) {
|
||||||
|
dlg.setListBoxSelectedItem("HexadecimalEntities", (short) 0);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
dlg.setListBoxSelectedItem("HexadecimalEntities", (short) 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
checkBoxFromConfig(dlg, "UseNamedEntities", "use_named_entities");
|
||||||
|
checkBoxFromConfig(dlg, "Multilingual", "multilingual");
|
||||||
|
checkBoxFromConfig(dlg, "PrettyPrint", "pretty_print");
|
||||||
|
|
||||||
|
updateControls(dlg);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override protected void getControls(DialogAccess dlg) {
|
||||||
|
checkBoxToConfig(dlg, "NoDoctype", "no_doctype");
|
||||||
|
checkBoxToConfig(dlg, "AddBOM", "add_bom");
|
||||||
|
listBoxToConfig(dlg, "Encoding", "encoding", sEncodingValues);
|
||||||
|
|
||||||
|
config.setOption("hexadecimal_entities", Boolean.toString(dlg.getListBoxSelectedItem("HexadecimalEntities")==(short)0));
|
||||||
|
|
||||||
|
checkBoxToConfig(dlg, "UseNamedEntities", "use_named_entities");
|
||||||
|
checkBoxToConfig(dlg, "Multilingual", "multilingual");
|
||||||
|
checkBoxToConfig(dlg, "PrettyPrint", "pretty_print");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override protected boolean handleEvent(DialogAccess dlg, String sMethod) {
|
||||||
|
if (sMethod.equals("EncodingChange")) {
|
||||||
|
updateControls(dlg);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateControls(DialogAccess dlg) {
|
||||||
|
boolean bUnicode = dlg.getListBoxSelectedItem("Encoding")<2;
|
||||||
|
dlg.setControlEnabled("HexadecimalEntitiesLabel", !bUnicode);
|
||||||
|
dlg.setControlEnabled("HexadecimalEntities", !bUnicode);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private class FormattingHandler extends PageHandler {
|
||||||
|
private final String[] sExportValues = { "convert_all", "ignore_styles", "ignore_hard", "ignore_all" };
|
||||||
|
|
||||||
|
@Override protected void setControls(DialogAccess dlg) {
|
||||||
|
listBoxFromConfig(dlg, "Formatting", "formatting", sExportValues, (short) 0);
|
||||||
|
listBoxFromConfig(dlg, "FrameFormatting", "frame_formatting", sExportValues, (short) 0);
|
||||||
|
|
||||||
|
// OOo does not support styles for sections and tables, hence this simplified variant
|
||||||
|
dlg.setCheckBoxStateAsBoolean("SectionFormatting",
|
||||||
|
config.getOption("section_formatting").equals("convert_all") ||
|
||||||
|
config.getOption("section_formatting").equals("ignore_styles"));
|
||||||
|
dlg.setCheckBoxStateAsBoolean("TableFormatting",
|
||||||
|
config.getOption("table_formatting").equals("convert_all") ||
|
||||||
|
config.getOption("table_formatting").equals("ignore_styles"));
|
||||||
|
|
||||||
|
checkBoxFromConfig(dlg, "IgnoreTableDimensions", "ignore_table_dimensions");
|
||||||
|
checkBoxFromConfig(dlg, "UseListHack", "use_list_hack");
|
||||||
|
checkBoxFromConfig(dlg, "ConvertToPx", "convert_to_px");
|
||||||
|
checkBoxFromConfig(dlg, "SeparateStylesheet", "separate_stylesheet");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override protected void getControls(DialogAccess dlg) {
|
||||||
|
listBoxToConfig(dlg, "Formatting", "formatting", sExportValues);
|
||||||
|
listBoxToConfig(dlg, "FrameFormatting", "frame_formatting", sExportValues);
|
||||||
|
|
||||||
|
config.setOption("section_formatting", dlg.getCheckBoxStateAsBoolean("SectionFormatting") ? "convert_all" : "ignore_all");
|
||||||
|
config.setOption("table_formatting", dlg.getCheckBoxStateAsBoolean("TableFormatting") ? "convert_all" : "ignore_all");
|
||||||
|
|
||||||
|
checkBoxToConfig(dlg, "IgnoreTableDimensions", "ignore_table_dimensions");
|
||||||
|
checkBoxToConfig(dlg, "UseListHack", "use_list_hack");
|
||||||
|
checkBoxToConfig(dlg, "ConvertToPx", "convert_to_px");
|
||||||
|
checkBoxToConfig(dlg, "SeparateStylesheet", "separate_stylesheet");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override protected boolean handleEvent(DialogAccess dlg, String sMethod) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ContentHandler extends PageHandler {
|
||||||
|
private final String[] sFormulaValues = { "image+starmath", "image+latex", "starmath", "latex" };
|
||||||
|
|
||||||
|
@Override protected void setControls(DialogAccess dlg) {
|
||||||
|
listBoxFromConfig(dlg, "Formulas", "formulas", sFormulaValues, (short) 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override protected void getControls(DialogAccess dlg) {
|
||||||
|
listBoxToConfig(dlg, "Formulas", "formulas", sFormulaValues);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override protected boolean handleEvent(DialogAccess dlg, String sMethod) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -16,11 +16,11 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||||
* MA 02111-1307 USA
|
* MA 02111-1307 USA
|
||||||
*
|
*
|
||||||
* Copyright: 2002-2008 by Henrik Just
|
* Copyright: 2002-2010 by Henrik Just
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.0 (2008-10-04)
|
* Version 1.2 (2010-03-22)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -90,6 +90,12 @@ public class W2XRegistration {
|
||||||
multiFactory,
|
multiFactory,
|
||||||
regKey);
|
regKey);
|
||||||
}
|
}
|
||||||
|
else if (implName.equals(ConfigurationDialog.__implementationName)) {
|
||||||
|
xSingleServiceFactory = FactoryHelper.getServiceFactory(ConfigurationDialog.class,
|
||||||
|
ConfigurationDialog.__serviceName,
|
||||||
|
multiFactory,
|
||||||
|
regKey);
|
||||||
|
}
|
||||||
|
|
||||||
return xSingleServiceFactory;
|
return xSingleServiceFactory;
|
||||||
}
|
}
|
||||||
|
@ -113,7 +119,9 @@ public class W2XRegistration {
|
||||||
FactoryHelper.writeRegistryServiceInfo(XhtmlOptionsDialogXsl.__implementationName,
|
FactoryHelper.writeRegistryServiceInfo(XhtmlOptionsDialogXsl.__implementationName,
|
||||||
XhtmlOptionsDialogXsl.__serviceName, regKey) &
|
XhtmlOptionsDialogXsl.__serviceName, regKey) &
|
||||||
FactoryHelper.writeRegistryServiceInfo(XhtmlOptionsDialogCalc.__implementationName,
|
FactoryHelper.writeRegistryServiceInfo(XhtmlOptionsDialogCalc.__implementationName,
|
||||||
XhtmlOptionsDialogCalc.__serviceName, regKey);
|
XhtmlOptionsDialogCalc.__serviceName, regKey) &
|
||||||
|
FactoryHelper.writeRegistryServiceInfo(ConfigurationDialog.__implementationName,
|
||||||
|
ConfigurationDialog.__serviceName, regKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -98,7 +98,7 @@ public interface Config {
|
||||||
/** Get a complex option
|
/** Get a complex option
|
||||||
*
|
*
|
||||||
* @param sName the name of the complex option
|
* @param sName the name of the complex option
|
||||||
* @return
|
* @return the option
|
||||||
*/
|
*/
|
||||||
public ComplexOption getComplexOption(String sName);
|
public ComplexOption getComplexOption(String sName);
|
||||||
|
|
||||||
|
|
61
source/java/writer2latex/api/ContentEntry.java
Normal file
61
source/java/writer2latex/api/ContentEntry.java
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
/************************************************************************
|
||||||
|
*
|
||||||
|
* ContentEntry.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-2010 by Henrik Just
|
||||||
|
*
|
||||||
|
* All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Version 1.2 (2010-03-15)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package writer2latex.api;
|
||||||
|
|
||||||
|
/** This interface represents a content entry, that is a named reference
|
||||||
|
* to a position within the output document.
|
||||||
|
*/
|
||||||
|
public interface ContentEntry {
|
||||||
|
/** Get the outline level of this <code>ContentEntry</code>.
|
||||||
|
* The top level is 1 (entries corresponding to indexes are considered
|
||||||
|
* top level).
|
||||||
|
* Note that intermediate levels may be missing (e.g. a heading of
|
||||||
|
* level 3 may follow immediately after a heading of level 1).
|
||||||
|
*
|
||||||
|
* @return the outline level
|
||||||
|
*/
|
||||||
|
public int getLevel();
|
||||||
|
|
||||||
|
/** Get the title for this entry
|
||||||
|
*
|
||||||
|
* @return the title
|
||||||
|
*/
|
||||||
|
public String getTitle();
|
||||||
|
|
||||||
|
/** Get the file associated with the entry
|
||||||
|
*
|
||||||
|
* @return the output file
|
||||||
|
*/
|
||||||
|
public OutputFile getFile();
|
||||||
|
|
||||||
|
/** Get the name of a target within the file, if any
|
||||||
|
*
|
||||||
|
* @return the target name, or null if no target is needed
|
||||||
|
*/
|
||||||
|
public String getTarget();
|
||||||
|
|
||||||
|
}
|
|
@ -16,11 +16,11 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||||
* MA 02111-1307 USA
|
* MA 02111-1307 USA
|
||||||
*
|
*
|
||||||
* Copyright: 2002-2008 by Henrik Just
|
* Copyright: 2002-2010 by Henrik Just
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.0 (2008-11-24)
|
* Version 1.2 (2010-03-16)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -46,6 +46,11 @@ public interface ConverterResult {
|
||||||
*/
|
*/
|
||||||
public Iterator<OutputFile> iterator();
|
public Iterator<OutputFile> iterator();
|
||||||
|
|
||||||
|
/** Get the meta data associated with the source document
|
||||||
|
* @return the meta data
|
||||||
|
*/
|
||||||
|
public MetaData getMetaData();
|
||||||
|
|
||||||
/** Write all files of the <code>ConverterResult</code> to a directory.
|
/** Write all files of the <code>ConverterResult</code> to a directory.
|
||||||
* Subdirectories are created as required by the individual
|
* Subdirectories are created as required by the individual
|
||||||
* <code>OutputFile</code>s.
|
* <code>OutputFile</code>s.
|
||||||
|
|
45
source/java/writer2latex/api/MetaData.java
Normal file
45
source/java/writer2latex/api/MetaData.java
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
/************************************************************************
|
||||||
|
*
|
||||||
|
* MetaData.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-2010 by Henrik Just
|
||||||
|
*
|
||||||
|
* All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Version 1.2 (2010-03-15)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package writer2latex.api;
|
||||||
|
|
||||||
|
/** This interface provides access to the predefined meta data of the
|
||||||
|
* source document (currently incomplete)
|
||||||
|
*/
|
||||||
|
public interface MetaData {
|
||||||
|
/** Get the title of the source document
|
||||||
|
*
|
||||||
|
* @return the title (may return an empty string)
|
||||||
|
*/
|
||||||
|
public String getTitle();
|
||||||
|
|
||||||
|
/** Get the (main) language of the document
|
||||||
|
*
|
||||||
|
* @return the language
|
||||||
|
*/
|
||||||
|
public String getLanguage();
|
||||||
|
|
||||||
|
}
|
|
@ -52,17 +52,8 @@ public interface OutputFile {
|
||||||
|
|
||||||
/** Get the MIME type of the <code>OutputFile</code>.
|
/** Get the MIME type of the <code>OutputFile</code>.
|
||||||
*
|
*
|
||||||
* @return string reprensentation of the MIME type
|
* @return string representation of the MIME type
|
||||||
*/
|
*/
|
||||||
public String getMIMEType();
|
public String getMIMEType();
|
||||||
|
|
||||||
/** Get the sequence number of this <code>OutputFile</code>.
|
|
||||||
* The master document has the sequence number 0.
|
|
||||||
* Other files which are part of the main document flow has a unique, positive sequence number.
|
|
||||||
* Auxiliary files like images always has the sequence number -1.
|
|
||||||
*
|
|
||||||
* @return the sequence number
|
|
||||||
*/
|
|
||||||
public int getSequenceNumber();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,6 @@ import writer2latex.office.ImageLoader;
|
||||||
import writer2latex.office.MetaData;
|
import writer2latex.office.MetaData;
|
||||||
import writer2latex.office.OfficeReader;
|
import writer2latex.office.OfficeReader;
|
||||||
import writer2latex.xmerge.EmbeddedObject;
|
import writer2latex.xmerge.EmbeddedObject;
|
||||||
import writer2latex.xmerge.ConvertData;
|
|
||||||
import writer2latex.xmerge.OfficeDocument;
|
import writer2latex.xmerge.OfficeDocument;
|
||||||
|
|
||||||
/**<p>Abstract base implementation of <code>writer2latex.api.Converter</code></p>
|
/**<p>Abstract base implementation of <code>writer2latex.api.Converter</code></p>
|
||||||
|
@ -58,12 +57,12 @@ public abstract class ConverterBase implements Converter {
|
||||||
|
|
||||||
// The output file(s)
|
// The output file(s)
|
||||||
protected String sTargetFileName;
|
protected String sTargetFileName;
|
||||||
protected ConvertData convertData;
|
protected ConverterResultImpl convertData;
|
||||||
|
|
||||||
// Constructor
|
// Constructor
|
||||||
public ConverterBase() {
|
public ConverterBase() {
|
||||||
graphicConverter = null;
|
graphicConverter = null;
|
||||||
convertData = new ConvertData();
|
convertData = new ConverterResultImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implement the interface
|
// Implement the interface
|
||||||
|
|
|
@ -1,46 +1,30 @@
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
*
|
*
|
||||||
* The Contents of this file are made available subject to the terms of
|
* ConverterResultImpl.java
|
||||||
*
|
*
|
||||||
* - GNU Lesser General Public License Version 2.1
|
* This library is free software; you can redistribute it and/or
|
||||||
*
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
* Sun Microsystems Inc., October, 2000
|
* License version 2.1, as published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Version 2.1
|
* This library is distributed in the hope that it will be useful,
|
||||||
* =============================================
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* Copyright 2000 by Sun Microsystems, Inc.
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
* Lesser General Public License for more details.
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* License along with this library; if not, write to the Free Software
|
||||||
* License version 2.1, as published by the Free Software Foundation.
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||||
*
|
* MA 02111-1307 USA
|
||||||
* This library is distributed in the hope that it will be useful,
|
*
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* Copyright: 2002-2010 by Henrik Just
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
*
|
||||||
* Lesser General Public License for more details.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* Version 1.2 (2010-03-22)
|
||||||
* License along with this library; if not, write to the Free Software
|
*
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
*/
|
||||||
* MA 02111-1307 USA
|
|
||||||
*
|
|
||||||
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
||||||
*
|
|
||||||
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
||||||
*
|
|
||||||
* All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Contributor(s): _______________________________________
|
|
||||||
*
|
|
||||||
*
|
|
||||||
************************************************************************/
|
|
||||||
|
|
||||||
// This version is adapted for Writer2LaTeX
|
|
||||||
// Change: The first document added will become the "master document" 2006/10/05
|
|
||||||
// Version 1.0 (2008-11-24)
|
|
||||||
|
|
||||||
package writer2latex.xmerge;
|
package writer2latex.base;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
|
@ -49,6 +33,7 @@ import java.util.Vector;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
|
||||||
import writer2latex.api.ConverterResult;
|
import writer2latex.api.ConverterResult;
|
||||||
|
import writer2latex.api.MetaData;
|
||||||
import writer2latex.api.OutputFile;
|
import writer2latex.api.OutputFile;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -58,9 +43,10 @@ import writer2latex.api.OutputFile;
|
||||||
* name and a <code>Vector</code> of <code>OutputFile</code> objects.</p>
|
* name and a <code>Vector</code> of <code>OutputFile</code> objects.</p>
|
||||||
*
|
*
|
||||||
* @author Martin Maher
|
* @author Martin Maher
|
||||||
|
* TODO: Rewrite to support extended API
|
||||||
*/
|
*/
|
||||||
public class ConvertData implements ConverterResult {
|
public class ConverterResultImpl implements ConverterResult {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Vector of <code>OutputFile</code> objects.
|
* Vector of <code>OutputFile</code> objects.
|
||||||
*/
|
*/
|
||||||
|
@ -74,6 +60,8 @@ public class ConvertData implements ConverterResult {
|
||||||
*/
|
*/
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
private MetaData metaData = null;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resets ConvertData. This empties all <code>OutputFile</code>
|
* Resets ConvertData. This empties all <code>OutputFile</code>
|
||||||
|
@ -141,6 +129,14 @@ public class ConvertData implements ConverterResult {
|
||||||
return v.iterator();
|
return v.iterator();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public MetaData getMetaData() {
|
||||||
|
return metaData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaData(MetaData metaData) {
|
||||||
|
this.metaData = metaData;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the number of <code>OutputFile</code> objects currently stored
|
* Gets the number of <code>OutputFile</code> objects currently stored
|
|
@ -106,10 +106,6 @@ public class BibTeXDocument implements Document {
|
||||||
return MIMETypes.BIBTEX;
|
return MIMETypes.BIBTEX;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getSequenceNumber() {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Writes out the <code>Document</code> content to the specified
|
* <p>Writes out the <code>Document</code> content to the specified
|
||||||
* <code>OutputStream</code>.</p>
|
* <code>OutputStream</code>.</p>
|
||||||
|
|
13
source/java/writer2latex/epub/Package.html
Normal file
13
source/java/writer2latex/epub/Package.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>The package writer2latex.epub</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<p>This package contains EPUB specific code.</p>
|
||||||
|
<p>It contains a <code>writerlatex.api.Converter</code> implementation for
|
||||||
|
conversion into EPUB.</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -174,7 +174,7 @@ public final class ConverterPalette extends ConverterBase {
|
||||||
info = new Info(ofr,config,this);
|
info = new Info(ofr,config,this);
|
||||||
|
|
||||||
// Create master document and add this
|
// Create master document and add this
|
||||||
this.texDoc = new LaTeXDocument(sTargetFileName,config.getWrapLinesAfter(),0);
|
this.texDoc = new LaTeXDocument(sTargetFileName,config.getWrapLinesAfter());
|
||||||
if (config.getBackend()!=LaTeXConfig.XETEX) {
|
if (config.getBackend()!=LaTeXConfig.XETEX) {
|
||||||
texDoc.setEncoding(ClassicI18n.writeJavaEncoding(config.getInputencoding()));
|
texDoc.setEncoding(ClassicI18n.writeJavaEncoding(config.getInputencoding()));
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,8 +49,6 @@ public class LaTeXDocument implements Document {
|
||||||
|
|
||||||
private LaTeXDocumentPortion contents;
|
private LaTeXDocumentPortion contents;
|
||||||
|
|
||||||
private int nSequenceNumber = -1;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Constructs a new LaTeX Document.</p>
|
* <p>Constructs a new LaTeX Document.</p>
|
||||||
*
|
*
|
||||||
|
@ -59,12 +57,10 @@ public class LaTeXDocument implements Document {
|
||||||
*
|
*
|
||||||
* @param sName The name of the <code>LaTeXDocument</code>.
|
* @param sName The name of the <code>LaTeXDocument</code>.
|
||||||
* @param nWrap Lines should be wrapped after this position
|
* @param nWrap Lines should be wrapped after this position
|
||||||
* @param nSequenceNumber this file has this sequence number in the result
|
|
||||||
*/
|
*/
|
||||||
public LaTeXDocument(String sName,int nWrap, int nSequenceNumber) {
|
public LaTeXDocument(String sName,int nWrap) {
|
||||||
this.nWrap = nWrap;
|
this.nWrap = nWrap;
|
||||||
this.sName = trimDocumentName(sName);
|
this.sName = trimDocumentName(sName);
|
||||||
this.nSequenceNumber = nSequenceNumber;
|
|
||||||
contents = new LaTeXDocumentPortion(true);
|
contents = new LaTeXDocumentPortion(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,10 +100,6 @@ public class LaTeXDocument implements Document {
|
||||||
return MIMETypes.LATEX;
|
return MIMETypes.LATEX;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getSequenceNumber() {
|
|
||||||
return nSequenceNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Writes out the <code>Document</code> content to the specified
|
* <p>Writes out the <code>Document</code> content to the specified
|
||||||
* <code>OutputStream</code>.</p>
|
* <code>OutputStream</code>.</p>
|
||||||
|
|
|
@ -46,9 +46,6 @@ public class SectionConverter extends ConverterHelper {
|
||||||
// Filenames for external sections
|
// Filenames for external sections
|
||||||
private ExportNameCollection fileNames = new ExportNameCollection(true);
|
private ExportNameCollection fileNames = new ExportNameCollection(true);
|
||||||
|
|
||||||
// Current sequence number (until this class creates further LaTeX files, the master file is the only document)
|
|
||||||
private int nSequenceNumber = 0;
|
|
||||||
|
|
||||||
/** <p>Constructs a new <code>SectionStyleConverter</code>.</p>
|
/** <p>Constructs a new <code>SectionStyleConverter</code>.</p>
|
||||||
*/
|
*/
|
||||||
public SectionConverter(OfficeReader ofr, LaTeXConfig config,
|
public SectionConverter(OfficeReader ofr, LaTeXConfig config,
|
||||||
|
@ -83,7 +80,7 @@ public class SectionConverter extends ConverterHelper {
|
||||||
|
|
||||||
LaTeXDocumentPortion sectionLdp = ldp;
|
LaTeXDocumentPortion sectionLdp = ldp;
|
||||||
if (sFileName!=null) {
|
if (sFileName!=null) {
|
||||||
LaTeXDocument newDoc = new LaTeXDocument(sFileName,config.getWrapLinesAfter(),++nSequenceNumber);
|
LaTeXDocument newDoc = new LaTeXDocument(sFileName,config.getWrapLinesAfter());
|
||||||
if (config.getBackend()!=LaTeXConfig.XETEX) {
|
if (config.getBackend()!=LaTeXConfig.XETEX) {
|
||||||
newDoc.setEncoding(ClassicI18n.writeJavaEncoding(config.getInputencoding()));
|
newDoc.setEncoding(ClassicI18n.writeJavaEncoding(config.getInputencoding()));
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,11 +16,11 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||||
* MA 02111-1307 USA
|
* MA 02111-1307 USA
|
||||||
*
|
*
|
||||||
* Copyright: 2002-2008 by Henrik Just
|
* Copyright: 2002-2010 by Henrik Just
|
||||||
*
|
*
|
||||||
* All Rights Reserved.
|
* All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Version 1.0 (2008-11-23)
|
* Version 1.2 (2010-03-15)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ import writer2latex.xmerge.OfficeDocument;
|
||||||
/**
|
/**
|
||||||
* <p>This class represents the metadata of an OOo Writer document.</p>
|
* <p>This class represents the metadata of an OOo Writer document.</p>
|
||||||
*/
|
*/
|
||||||
public class MetaData {
|
public class MetaData implements writer2latex.api.MetaData {
|
||||||
// Dublin Core
|
// Dublin Core
|
||||||
private String sTitle = "";
|
private String sTitle = "";
|
||||||
private String sCreator = "";
|
private String sCreator = "";
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class BatchConverterImpl extends BatchConverterBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void readTemplate(InputStream is) throws IOException {
|
public void readTemplate(InputStream is) throws IOException {
|
||||||
template = new XhtmlDocument("Template",XhtmlDocument.XHTML10,-1);
|
template = new XhtmlDocument("Template",XhtmlDocument.XHTML10);
|
||||||
try {
|
try {
|
||||||
template.read(is);
|
template.read(is);
|
||||||
}
|
}
|
||||||
|
@ -89,7 +89,7 @@ public class BatchConverterImpl extends BatchConverterBase {
|
||||||
|
|
||||||
public OutputFile createIndexFile(String sHeading, IndexPageEntry[] entries) {
|
public OutputFile createIndexFile(String sHeading, IndexPageEntry[] entries) {
|
||||||
// Create the index page (with header/footer or from template)
|
// Create the index page (with header/footer or from template)
|
||||||
XhtmlDocument htmlDoc = new XhtmlDocument("index",XhtmlDocument.XHTML10,0);
|
XhtmlDocument htmlDoc = new XhtmlDocument("index",XhtmlDocument.XHTML10);
|
||||||
htmlDoc.setConfig(config);
|
htmlDoc.setConfig(config);
|
||||||
if (template!=null) { htmlDoc.readFromTemplate(template); }
|
if (template!=null) { htmlDoc.readFromTemplate(template); }
|
||||||
else { htmlDoc.createHeaderFooter(); }
|
else { htmlDoc.createHeaderFooter(); }
|
||||||
|
|
|
@ -102,7 +102,7 @@ public class Converter extends ConverterBase {
|
||||||
|
|
||||||
// override
|
// override
|
||||||
public void readTemplate(InputStream is) throws IOException {
|
public void readTemplate(InputStream is) throws IOException {
|
||||||
template = new XhtmlDocument("Template",nType,-1);
|
template = new XhtmlDocument("Template",nType);
|
||||||
template.read(is);
|
template.read(is);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -441,7 +441,7 @@ public class Converter extends ConverterBase {
|
||||||
// Prepare next output file
|
// Prepare next output file
|
||||||
public Element nextOutFile() {
|
public Element nextOutFile() {
|
||||||
if (nOutFileIndex>=0) { textCv.insertFootnotes(htmlDoc.getContentNode()); }
|
if (nOutFileIndex>=0) { textCv.insertFootnotes(htmlDoc.getContentNode()); }
|
||||||
htmlDoc = new XhtmlDocument(getOutFileName(++nOutFileIndex,false),nType,nOutFileIndex);
|
htmlDoc = new XhtmlDocument(getOutFileName(++nOutFileIndex,false),nType);
|
||||||
htmlDoc.setConfig(config);
|
htmlDoc.setConfig(config);
|
||||||
if (template!=null) { htmlDoc.readFromTemplate(template); }
|
if (template!=null) { htmlDoc.readFromTemplate(template); }
|
||||||
else if (bNeedHeaderFooter) { htmlDoc.createHeaderFooter(); }
|
else if (bNeedHeaderFooter) { htmlDoc.createHeaderFooter(); }
|
||||||
|
|
|
@ -79,9 +79,6 @@ public class XhtmlDocument extends DOMDocument {
|
||||||
// Type of document
|
// Type of document
|
||||||
private int nType;
|
private int nType;
|
||||||
|
|
||||||
// Sequence number
|
|
||||||
private int nSequenceNumber;
|
|
||||||
|
|
||||||
// Configuration
|
// Configuration
|
||||||
private String sEncoding = "UTF-8";
|
private String sEncoding = "UTF-8";
|
||||||
private boolean bUseNamedEntities = false;
|
private boolean bUseNamedEntities = false;
|
||||||
|
@ -115,12 +112,10 @@ public class XhtmlDocument extends DOMDocument {
|
||||||
* writer2latex.xmerge.DOMDocument.
|
* writer2latex.xmerge.DOMDocument.
|
||||||
* @param name <code>Document</code> name.
|
* @param name <code>Document</code> name.
|
||||||
* @param nType the type of document
|
* @param nType the type of document
|
||||||
* @param nSequenceNumber the sequence number of this file in the export
|
|
||||||
*/
|
*/
|
||||||
public XhtmlDocument(String name, int nType, int nSequenceNumber) {
|
public XhtmlDocument(String name, int nType) {
|
||||||
super(name,sExtension[nType]);
|
super(name,sExtension[nType]);
|
||||||
this.nType = nType;
|
this.nType = nType;
|
||||||
this.nSequenceNumber = nSequenceNumber;
|
|
||||||
// Define publicId and systemId
|
// Define publicId and systemId
|
||||||
String sPublicId = null;
|
String sPublicId = null;
|
||||||
String sSystemId = null;
|
String sSystemId = null;
|
||||||
|
@ -178,10 +173,6 @@ public class XhtmlDocument extends DOMDocument {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public int getSequenceNumber() {
|
|
||||||
return nSequenceNumber;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Element getHeadNode() { return headNode; }
|
public Element getHeadNode() { return headNode; }
|
||||||
|
|
||||||
public Element getBodyNode() { return bodyNode; }
|
public Element getBodyNode() { return bodyNode; }
|
||||||
|
|
|
@ -166,10 +166,5 @@ public class BinaryGraphicsDocument implements Document {
|
||||||
public String getMIMEType() {
|
public String getMIMEType() {
|
||||||
return sMimeType;
|
return sMimeType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public int getSequenceNumber() {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -393,15 +393,11 @@ public class DOMDocument
|
||||||
return doc;
|
return doc;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: We need these because we implement OutputFile (don't do that..)
|
// We need this because we implement OutputFile
|
||||||
public String getMIMEType() {
|
public String getMIMEType() {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getSequenceNumber() {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ public class OfficeDocument
|
||||||
/** DOM <code>Document</code> of content.xml. */
|
/** DOM <code>Document</code> of content.xml. */
|
||||||
private Document styleDoc = null;
|
private Document styleDoc = null;
|
||||||
|
|
||||||
/** DOM <code>Docuemtn</code> of META-INF/manifest.xml. */
|
/** DOM <code>Document</code> of META-INF/manifest.xml. */
|
||||||
private Document manifestDoc = null;
|
private Document manifestDoc = null;
|
||||||
|
|
||||||
private String documentName = null;
|
private String documentName = null;
|
||||||
|
@ -1288,9 +1288,5 @@ public class OfficeDocument
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public int getSequenceNumber() {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
<value>%origin%/W2XDialogs2/General.xdl</value>
|
<value>%origin%/W2XDialogs2/General.xdl</value>
|
||||||
</prop>
|
</prop>
|
||||||
<prop oor:name="EventHandlerService">
|
<prop oor:name="EventHandlerService">
|
||||||
<value></value>
|
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
|
||||||
</prop>
|
</prop>
|
||||||
</node>
|
</node>
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
<value>%origin%/W2XDialogs2/Formatting.xdl</value>
|
<value>%origin%/W2XDialogs2/Formatting.xdl</value>
|
||||||
</prop>
|
</prop>
|
||||||
<prop oor:name="EventHandlerService">
|
<prop oor:name="EventHandlerService">
|
||||||
<value></value>
|
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
|
||||||
</prop>
|
</prop>
|
||||||
</node>
|
</node>
|
||||||
|
|
||||||
|
@ -165,7 +165,7 @@
|
||||||
<value>%origin%/W2XDialogs2/Content.xdl</value>
|
<value>%origin%/W2XDialogs2/Content.xdl</value>
|
||||||
</prop>
|
</prop>
|
||||||
<prop oor:name="EventHandlerService">
|
<prop oor:name="EventHandlerService">
|
||||||
<value></value>
|
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
|
||||||
</prop>
|
</prop>
|
||||||
</node>
|
</node>
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
|
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
|
||||||
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Content" dlg:left="139" dlg:top="84" dlg:width="258" dlg:height="172" dlg:closeable="true" dlg:moveable="true" dlg:withtitlebar="false">
|
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Content" dlg:left="139" dlg:top="84" dlg:width="258" dlg:height="172" dlg:closeable="true" dlg:moveable="true" dlg:title="Content" dlg:withtitlebar="false">
|
||||||
<dlg:bulletinboard>
|
<dlg:bulletinboard>
|
||||||
<dlg:text dlg:id="FormulasHeadingLabel" dlg:tab-index="0" dlg:left="5" dlg:top="8" dlg:width="245" dlg:height="12" dlg:value="Formulas"/>
|
<dlg:text dlg:id="FormulasHeadingLabel" dlg:tab-index="0" dlg:left="5" dlg:top="8" dlg:width="245" dlg:height="12" dlg:value="Formulas"/>
|
||||||
<dlg:text dlg:id="FormulasLabel" dlg:tab-index="1" dlg:left="10" dlg:top="22" dlg:width="110" dlg:height="12" dlg:value="Include as"/>
|
<dlg:text dlg:id="FormulasLabel" dlg:tab-index="1" dlg:left="10" dlg:top="22" dlg:width="110" dlg:height="12" dlg:value="Include as"/>
|
||||||
<dlg:menulist dlg:id="ListBox1" dlg:tab-index="2" dlg:left="130" dlg:top="20" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="4">
|
<dlg:menulist dlg:id="Formulas" dlg:tab-index="2" dlg:left="130" dlg:top="20" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="4">
|
||||||
<dlg:menupopup>
|
<dlg:menupopup>
|
||||||
<dlg:menuitem dlg:value="Image with StarMath code"/>
|
<dlg:menuitem dlg:value="Image with StarMath code"/>
|
||||||
<dlg:menuitem dlg:value="Image with LaTeX code"/>
|
<dlg:menuitem dlg:value="Image with LaTeX code"/>
|
||||||
|
|
|
@ -23,6 +23,6 @@
|
||||||
</dlg:menulist>
|
</dlg:menulist>
|
||||||
<dlg:checkbox dlg:id="UseNamedEntities" dlg:tab-index="6" dlg:left="10" dlg:top="64" dlg:width="240" dlg:height="12" dlg:value="Use named character entities" dlg:checked="false"/>
|
<dlg:checkbox dlg:id="UseNamedEntities" dlg:tab-index="6" dlg:left="10" dlg:top="64" dlg:width="240" dlg:height="12" dlg:value="Use named character entities" dlg:checked="false"/>
|
||||||
<dlg:checkbox dlg:id="Multilingual" dlg:tab-index="7" dlg:left="10" dlg:top="78" dlg:width="240" dlg:height="12" dlg:value="Include detailed language information" dlg:checked="false"/>
|
<dlg:checkbox dlg:id="Multilingual" dlg:tab-index="7" dlg:left="10" dlg:top="78" dlg:width="240" dlg:height="12" dlg:value="Include detailed language information" dlg:checked="false"/>
|
||||||
<dlg:checkbox dlg:id="PrettyPrinting" dlg:tab-index="8" dlg:left="10" dlg:top="92" dlg:width="240" dlg:height="12" dlg:value="Use "pretty printing"" dlg:checked="false"/>
|
<dlg:checkbox dlg:id="PrettyPrint" dlg:tab-index="8" dlg:left="10" dlg:top="92" dlg:width="240" dlg:height="12" dlg:value="Use "pretty printing"" dlg:checked="false"/>
|
||||||
</dlg:bulletinboard>
|
</dlg:bulletinboard>
|
||||||
</dlg:window>
|
</dlg:window>
|
Loading…
Add table
Reference in a new issue