2014-10-10 13:51:02 +00:00
|
|
|
/************************************************************************
|
|
|
|
*
|
|
|
|
* Writer2xhtml.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-2014 by Henrik Just
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
2014-11-15 13:30:41 +00:00
|
|
|
* Version 1.6 (2014-11-15)
|
2014-10-10 13:51:02 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.openoffice.da.comp.writer2xhtml;
|
|
|
|
|
|
|
|
// TODO: Create common base for dispatcher classes
|
|
|
|
|
|
|
|
import com.sun.star.frame.XFrame;
|
2014-10-22 11:57:55 +00:00
|
|
|
import com.sun.star.lang.XComponent;
|
2014-10-10 13:51:02 +00:00
|
|
|
import com.sun.star.lib.uno.helper.WeakBase;
|
|
|
|
import com.sun.star.ui.dialogs.XExecutableDialog;
|
2014-10-22 11:57:55 +00:00
|
|
|
import com.sun.star.uno.Exception;
|
2014-10-10 13:51:02 +00:00
|
|
|
import com.sun.star.uno.UnoRuntime;
|
|
|
|
import com.sun.star.uno.XComponentContext;
|
2014-10-22 11:57:55 +00:00
|
|
|
import org.openoffice.da.comp.w2lcommon.filter.UNOPublisher.TargetFormat;
|
2014-10-10 13:51:02 +00:00
|
|
|
|
|
|
|
/** This class implements the ui (dispatch) commands provided by Writer2xhtml.
|
|
|
|
*/
|
|
|
|
public final class Writer2xhtml extends WeakBase
|
|
|
|
implements com.sun.star.lang.XServiceInfo,
|
|
|
|
com.sun.star.frame.XDispatchProvider,
|
|
|
|
com.sun.star.lang.XInitialization,
|
|
|
|
com.sun.star.frame.XDispatch {
|
|
|
|
|
|
|
|
private static final String PROTOCOL = "org.openoffice.da.writer2xhtml:";
|
|
|
|
|
|
|
|
// From constructor+initialization
|
|
|
|
private final XComponentContext m_xContext;
|
|
|
|
private XFrame m_xFrame;
|
2014-11-03 19:52:41 +00:00
|
|
|
private XhtmlUNOPublisher unoPublisher = null;
|
2014-10-10 13:51:02 +00:00
|
|
|
|
|
|
|
// Global data
|
|
|
|
public static final String __implementationName = Writer2xhtml.class.getName();
|
|
|
|
public static final String __serviceName = "com.sun.star.frame.ProtocolHandler";
|
|
|
|
private static final String[] m_serviceNames = { __serviceName };
|
|
|
|
|
|
|
|
// TODO: These should be configurable
|
2014-11-15 13:30:41 +00:00
|
|
|
private TargetFormat xhtmlFormat = TargetFormat.html5;
|
2014-10-22 11:57:55 +00:00
|
|
|
private TargetFormat epubFormat = TargetFormat.epub;
|
2014-10-10 13:51:02 +00:00
|
|
|
|
|
|
|
public Writer2xhtml(XComponentContext xContext) {
|
|
|
|
m_xContext = xContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
// com.sun.star.lang.XInitialization:
|
|
|
|
public void initialize( Object[] object )
|
|
|
|
throws com.sun.star.uno.Exception {
|
|
|
|
if ( object.length > 0 ) {
|
|
|
|
// The first item is the current frame
|
|
|
|
m_xFrame = (com.sun.star.frame.XFrame) UnoRuntime.queryInterface(
|
|
|
|
com.sun.star.frame.XFrame.class, object[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// com.sun.star.lang.XServiceInfo:
|
|
|
|
public String getImplementationName() {
|
|
|
|
return __implementationName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean supportsService( String sService ) {
|
|
|
|
int len = m_serviceNames.length;
|
|
|
|
|
|
|
|
for( int i=0; i < len; i++) {
|
|
|
|
if (sService.equals(m_serviceNames[i]))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String[] getSupportedServiceNames() {
|
|
|
|
return m_serviceNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// com.sun.star.frame.XDispatchProvider:
|
|
|
|
public com.sun.star.frame.XDispatch queryDispatch( com.sun.star.util.URL aURL,
|
|
|
|
String sTargetFrameName, int iSearchFlags ) {
|
|
|
|
if ( aURL.Protocol.compareTo(PROTOCOL) == 0 ) {
|
|
|
|
if ( aURL.Path.compareTo("PublishAsXHTML") == 0 )
|
|
|
|
return this;
|
|
|
|
else if ( aURL.Path.compareTo("PublishAsEPUB") == 0 )
|
|
|
|
return this;
|
2014-10-22 11:57:55 +00:00
|
|
|
else if ( aURL.Path.compareTo("EditEPUBDocumentProperties") == 0 )
|
|
|
|
return this;
|
2014-10-10 13:51:02 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public com.sun.star.frame.XDispatch[] queryDispatches(
|
|
|
|
com.sun.star.frame.DispatchDescriptor[] seqDescriptors ) {
|
|
|
|
int nCount = seqDescriptors.length;
|
|
|
|
com.sun.star.frame.XDispatch[] seqDispatcher =
|
|
|
|
new com.sun.star.frame.XDispatch[seqDescriptors.length];
|
|
|
|
|
|
|
|
for( int i=0; i < nCount; ++i ) {
|
|
|
|
seqDispatcher[i] = queryDispatch(seqDescriptors[i].FeatureURL,
|
|
|
|
seqDescriptors[i].FrameName,
|
|
|
|
seqDescriptors[i].SearchFlags );
|
|
|
|
}
|
|
|
|
return seqDispatcher;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// com.sun.star.frame.XDispatch:
|
|
|
|
public void dispatch( com.sun.star.util.URL aURL,
|
|
|
|
com.sun.star.beans.PropertyValue[] aArguments ) {
|
|
|
|
if ( aURL.Protocol.compareTo(PROTOCOL) == 0 ) {
|
|
|
|
if ( aURL.Path.compareTo("PublishAsXHTML") == 0 ) {
|
|
|
|
publish(xhtmlFormat);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if ( aURL.Path.compareTo("PublishAsEPUB") == 0 ) {
|
|
|
|
publish(epubFormat);
|
|
|
|
return;
|
|
|
|
}
|
2014-10-22 11:57:55 +00:00
|
|
|
else if ( aURL.Path.compareTo("EditEPUBDocumentProperties") == 0 ) {
|
|
|
|
editDocumentProperties();
|
|
|
|
return;
|
|
|
|
}
|
2014-10-10 13:51:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addStatusListener( com.sun.star.frame.XStatusListener xControl,
|
|
|
|
com.sun.star.util.URL aURL ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeStatusListener( com.sun.star.frame.XStatusListener xControl,
|
|
|
|
com.sun.star.util.URL aURL ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// The actual commands...
|
2014-10-22 11:57:55 +00:00
|
|
|
private void editDocumentProperties() {
|
|
|
|
Object dialog;
|
|
|
|
try {
|
|
|
|
dialog = m_xContext.getServiceManager().createInstanceWithContext("org.openoffice.da.writer2xhtml.EpubMetadataDialog", m_xContext);
|
|
|
|
XExecutableDialog xDialog = (XExecutableDialog) UnoRuntime.queryInterface(XExecutableDialog.class, dialog);
|
|
|
|
xDialog.execute();
|
|
|
|
// Dispose the dialog after execution (to free up the memory)
|
|
|
|
XComponent xComponent = (XComponent) UnoRuntime.queryInterface(XComponent.class, dialog);
|
|
|
|
if (xComponent!=null) {
|
|
|
|
xComponent.dispose();
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
// Failed to get dialog
|
|
|
|
}
|
|
|
|
}
|
2014-10-10 13:51:02 +00:00
|
|
|
|
|
|
|
private void publish(TargetFormat format) {
|
2014-10-22 11:57:55 +00:00
|
|
|
if (unoPublisher==null) {
|
2014-11-03 19:52:41 +00:00
|
|
|
unoPublisher = new XhtmlUNOPublisher(m_xContext,m_xFrame,"Writer2xhtml");
|
2014-10-22 11:57:55 +00:00
|
|
|
}
|
2014-11-03 19:52:41 +00:00
|
|
|
unoPublisher.publish(format);
|
|
|
|
}
|
2014-10-10 13:51:02 +00:00
|
|
|
|
|
|
|
}
|