EPUB meta data editor first draft

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@91 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2011-02-22 14:40:34 +00:00
parent 78c773db26
commit bb1cc87bab
7 changed files with 317 additions and 10 deletions

View file

@ -50,6 +50,7 @@ import com.sun.star.uno.XComponentContext;
/** This class provides an abstract uno component which implements a dialog
* from an xml description (using the DialogProvider2 service)
* TODO: Use DialogAccess.java
*/
public abstract class DialogBase implements
XTypeProvider, XServiceInfo, XServiceName, // Uno component

View file

@ -0,0 +1,240 @@
/************************************************************************
*
* EpubMetadataDialog.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-2011 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2011-02-22)
*
*/
package org.openoffice.da.comp.writer2xhtml;
import java.util.HashSet;
import org.openoffice.da.comp.w2lcommon.helper.DialogBase;
import com.sun.star.beans.IllegalTypeException;
import com.sun.star.beans.NotRemoveableException;
import com.sun.star.beans.Property;
import com.sun.star.beans.PropertyExistException;
import com.sun.star.beans.PropertyVetoException;
import com.sun.star.beans.UnknownPropertyException;
import com.sun.star.beans.XPropertyContainer;
import com.sun.star.beans.XPropertySet;
import com.sun.star.document.XDocumentProperties;
import com.sun.star.document.XDocumentPropertiesSupplier;
import com.sun.star.frame.XDesktop;
import com.sun.star.lang.IllegalArgumentException;
import com.sun.star.lang.WrappedTargetException;
import com.sun.star.lang.XComponent;
import com.sun.star.uno.AnyConverter;
import com.sun.star.uno.Exception;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XComponentContext;
/** This class provides a UNO component which implements a custom metadata editor UI for the EPUB export
*/
public class EpubMetadataDialog extends DialogBase {
// All the user defined properties we handle
private static final String IDENTIFIER="Identifier";
private static final String CREATOR="Creator";
private static final String CONTRIBUTOR="Contributor";
private static final String DATE="Date";
private static final String PUBLISHER="Publisher";
private static final String TYPE="Type";
private static final String FORMAT="Format";
private static final String SOURCE="Source";
private static final String RELATION="Relation";
private static final String COVERAGE="Coverage";
private static final String RIGHTS="Rights";
// Access to the user defined properties
private XPropertyContainer xUserProperties=null;
private XPropertySet xUserPropertySet=null;
public EpubMetadataDialog(XComponentContext xContext) {
super(xContext);
}
/** The component will be registered under this name.
*/
public static String __serviceName = "org.openoffice.da.writer2xhtml.EpubMetadataDialog";
/** The component should also have an implementation name.
*/
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.EpubMetadataDialog";
@Override
public String getDialogLibraryName() {
return "W2XDialogs2";
}
@Override
public String getDialogName() {
return "EpubMetadata";
}
// Get all currently defined user properties with a specific name or prefix
private String[] getProperties(String sPrefix, boolean bComplete) {
HashSet<String> names = new HashSet<String>();
Property[] xProps = xUserPropertySet.getPropertySetInfo().getProperties();
for (Property prop : xProps) {
String sName = prop.Name;
String sLCName = sName.toLowerCase();
String sLCPrefix = sPrefix.toLowerCase();
if ((bComplete && sLCName.equals(sLCPrefix)) || (!bComplete && sLCName.startsWith(sLCPrefix))) {
names.add(sName);
}
}
return names.toArray(new String[names.size()]);
}
// Add a user property
private void addProperty(String sName) {
try {
xUserProperties.addProperty(sName, (short) 128, ""); // 128 means removeable, last parameter is default value
} catch (PropertyExistException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalTypeException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// Delete a user property
private void removeProperty(String sName) {
try {
xUserProperties.removeProperty(sName);
} catch (UnknownPropertyException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NotRemoveableException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// Set the value of a user property (failing silently if the property does not exist)
private void setValue(String sName, String sValue) {
try {
xUserPropertySet.setPropertyValue(sName, sValue);
} catch (UnknownPropertyException e) {
} catch (PropertyVetoException e) {
} catch (IllegalArgumentException e) {
} catch (WrappedTargetException e) {
}
}
// Get the value of a user property (returning null if the property does not exist)
private String getValue(String sName) {
Object value;
try {
value = xUserPropertySet.getPropertyValue(sName);
} catch (UnknownPropertyException e) {
return null;
} catch (WrappedTargetException e) {
return null;
}
if (AnyConverter.isString(value)) {
try {
return AnyConverter.toString(value);
} catch (IllegalArgumentException e) {
return null;
}
}
return null;
}
private void readSimpleProperty(String sName) {
String[] sNames = getProperties(sName,true);
if (sNames.length>0) {
String sValue = getValue(sNames[0]);
if (sValue!=null) {
setTextFieldText(sName, sValue);
}
}
}
private void writeSimpleProperty(String sName) {
String[] sOldNames = getProperties(sName,true);
for (String sOldName : sOldNames) {
removeProperty(sOldName);
}
String sValue = getTextFieldText(sName);
if (sValue.length()>0) {
addProperty(sName);
setValue(sName,sValue);
}
}
@Override
protected void initialize() {
// Get the document properties
XDesktop xDesktop;
Object desktop;
try {
desktop = xContext.getServiceManager().createInstanceWithContext("com.sun.star.frame.Desktop", xContext);
} catch (Exception e) {
// Failed to get desktop
System.out.println("Failed to get desktop");
return;
}
xDesktop = (XDesktop) UnoRuntime.queryInterface(com.sun.star.frame.XDesktop.class, desktop);
XComponent xComponent = xDesktop.getCurrentComponent();
XDocumentPropertiesSupplier xSupplier = (XDocumentPropertiesSupplier) UnoRuntime.queryInterface(XDocumentPropertiesSupplier.class, xComponent);
XDocumentProperties xProperties = xSupplier.getDocumentProperties();
// Get the user defined properties from the properties (we need several interfaces)
xUserProperties= xProperties.getUserDefinedProperties();
xUserPropertySet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xUserProperties);
// Get and fill the simple values
readSimpleProperty(PUBLISHER);
readSimpleProperty(TYPE);
readSimpleProperty(FORMAT);
readSimpleProperty(SOURCE);
readSimpleProperty(RELATION);
readSimpleProperty(COVERAGE);
readSimpleProperty(RIGHTS);
}
@Override
protected void finalize() {
// Set the simple values
writeSimpleProperty(PUBLISHER);
writeSimpleProperty(TYPE);
writeSimpleProperty(FORMAT);
writeSimpleProperty(SOURCE);
writeSimpleProperty(RELATION);
writeSimpleProperty(COVERAGE);
writeSimpleProperty(RIGHTS);
xUserProperties = null;
xUserPropertySet = null;
}
}

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2011-02-20)
* Version 1.2 (2011-02-22)
*
*/
@ -37,6 +37,7 @@ import com.sun.star.frame.XDispatchProvider;
import com.sun.star.frame.XFrame;
import com.sun.star.lang.XMultiComponentFactory;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.ui.dialogs.XExecutableDialog;
import com.sun.star.uno.Exception;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XComponentContext;
@ -320,15 +321,16 @@ public class EpubOptionsDialog extends OptionsDialogBase {
XDispatchHelper helper = (XDispatchHelper) UnoRuntime.queryInterface(XDispatchHelper.class, dispatchHelper);
// Get the current frame
XDesktop xDesktop;
Object desktop;
try {
desktop = xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", xContext);
desktop = xContext.getServiceManager().createInstanceWithContext("com.sun.star.frame.Desktop", xContext);
} catch (Exception e) {
// Failed to get desktop
System.out.println("Failed to get desktop");
return;
}
XDesktop xDesktop = (XDesktop) UnoRuntime.queryInterface(com.sun.star.frame.XDesktop.class, desktop);
}
xDesktop = (XDesktop) UnoRuntime.queryInterface(com.sun.star.frame.XDesktop.class, desktop);
XFrame xFrame =xDesktop.getCurrentFrame();
// Get the DispatchProvider for the current frame
@ -338,8 +340,14 @@ public class EpubOptionsDialog extends OptionsDialogBase {
}
private void editCustomMetadataClick() {
// Stub, TODO
System.out.println("Edit custom metadata");
Object dialog;
try {
dialog = xContext.getServiceManager().createInstanceWithContext("org.openoffice.da.writer2xhtml.EpubMetadataDialog", xContext);
XExecutableDialog xDialog = (XExecutableDialog) UnoRuntime.queryInterface(XExecutableDialog.class, dialog);
xDialog.execute();
} catch (Exception e) {
// Failed to get dialog
}
}
private void splitChange() {

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2010 by Henrik Just
* Copyright: 2002-2011 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2010-12-28)
* Version 1.2 (2011-02-21)
*
*/
@ -96,6 +96,12 @@ public class W2XRegistration {
multiFactory,
regKey);
}
else if (implName.equals(EpubMetadataDialog.__implementationName)) {
xSingleServiceFactory = FactoryHelper.getServiceFactory(EpubMetadataDialog.class,
EpubMetadataDialog.__serviceName,
multiFactory,
regKey);
}
else if (implName.equals(ConfigurationDialog.__implementationName)) {
xSingleServiceFactory = FactoryHelper.getServiceFactory(ConfigurationDialog.class,
ConfigurationDialog.__serviceName,
@ -128,6 +134,8 @@ public class W2XRegistration {
XhtmlOptionsDialogCalc.__serviceName, regKey) &
FactoryHelper.writeRegistryServiceInfo(EpubOptionsDialog.__implementationName,
EpubOptionsDialog.__serviceName, regKey) &
FactoryHelper.writeRegistryServiceInfo(EpubMetadataDialog.__implementationName,
EpubMetadataDialog.__serviceName, regKey) &
FactoryHelper.writeRegistryServiceInfo(ConfigurationDialog.__implementationName,
ConfigurationDialog.__serviceName, regKey);
}

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2011-02-21)
* Version 1.2 (2011-02-22)
*
*/
@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.1.7";
private static final String DATE = "2011-02-21";
private static final String DATE = "2011-02-22";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)<br/>

View file

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!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="EpubMetadata" dlg:left="173" dlg:top="73" dlg:width="220" dlg:height="310" dlg:closeable="true" dlg:moveable="true" dlg:title="EPUB custom document properties (Writer2xhtml)">
<dlg:bulletinboard>
<dlg:checkbox dlg:id="UseCustomIdentifier" dlg:tab-index="0" dlg:left="5" dlg:top="8" dlg:width="210" dlg:height="12" dlg:value="Use custom identifier" dlg:checked="false"/>
<dlg:text dlg:id="IdentifierLabel" dlg:tab-index="1" dlg:left="20" dlg:top="22" dlg:width="60" dlg:height="12" dlg:value="Identifier"/>
<dlg:textfield dlg:id="Identifier" dlg:tab-index="2" dlg:left="85" dlg:top="20" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="IdentifierTypeLabel" dlg:tab-index="3" dlg:left="20" dlg:top="36" dlg:width="60" dlg:height="12" dlg:value="Type"/>
<dlg:combobox dlg:id="IdentifierType" dlg:tab-index="4" dlg:left="85" dlg:top="34" dlg:width="130" dlg:height="12" dlg:spin="true">
<dlg:menupopup>
<dlg:menuitem dlg:value="ISBN"/>
<dlg:menuitem dlg:value="DOI"/>
<dlg:menuitem dlg:value="URI"/>
<dlg:menuitem dlg:value="URL"/>
<dlg:menuitem dlg:value="UUID"/>
</dlg:menupopup>
</dlg:combobox>
<dlg:text dlg:id="AuthorsLabel" dlg:tab-index="5" dlg:left="5" dlg:top="50" dlg:width="210" dlg:height="12" dlg:value="Authors"/>
<dlg:menulist dlg:id="Authors" dlg:tab-index="6" dlg:left="10" dlg:top="62" dlg:width="160" dlg:height="36"/>
<dlg:button dlg:id="AuthorUpButton" dlg:tab-index="7" dlg:left="175" dlg:top="62" dlg:width="40" dlg:height="12" dlg:value="Move up"/>
<dlg:button dlg:id="AuthorDownButton" dlg:tab-index="8" dlg:left="175" dlg:top="86" dlg:width="40" dlg:height="12" dlg:value="Move down"/>
<dlg:button dlg:id="AddAuthorButton" dlg:tab-index="9" dlg:left="10" dlg:top="100" dlg:width="50" dlg:height="12" dlg:value="Add..."/>
<dlg:button dlg:id="ModifyAuthorButton" dlg:tab-index="10" dlg:left="65" dlg:top="100" dlg:width="50" dlg:height="12" dlg:value="Modify..."/>
<dlg:button dlg:id="DeleteAuthorButton" dlg:tab-index="11" dlg:left="120" dlg:top="100" dlg:width="50" dlg:height="12" dlg:value="Delete..."/>
<dlg:button dlg:id="CommandButton1" dlg:tab-index="12" dlg:left="149" dlg:top="-11" dlg:width="8" dlg:height="0" dlg:value="CommandButton1"/>
<dlg:text dlg:id="DatesLabel" dlg:tab-index="13" dlg:left="5" dlg:top="116" dlg:width="210" dlg:height="12" dlg:value="Dates"/>
<dlg:menulist dlg:id="Dates" dlg:tab-index="14" dlg:left="10" dlg:top="128" dlg:width="160" dlg:height="36"/>
<dlg:button dlg:id="AddDateButton" dlg:tab-index="15" dlg:left="10" dlg:top="166" dlg:width="50" dlg:height="12" dlg:value="Add..."/>
<dlg:button dlg:id="ModifyDateButton" dlg:tab-index="16" dlg:left="65" dlg:top="166" dlg:width="50" dlg:height="12" dlg:value="Modify..."/>
<dlg:button dlg:id="DeleteDateButton" dlg:tab-index="17" dlg:left="120" dlg:top="166" dlg:width="50" dlg:height="12" dlg:value="Delete..."/>
<dlg:text dlg:id="PublisherLabel" dlg:tab-index="18" dlg:left="5" dlg:top="186" dlg:width="75" dlg:height="12" dlg:value="Publisher"/>
<dlg:textfield dlg:id="Publisher" dlg:tab-index="19" dlg:left="85" dlg:top="184" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="TypeLabel" dlg:tab-index="20" dlg:left="5" dlg:top="200" dlg:width="75" dlg:height="12" dlg:value="Type"/>
<dlg:textfield dlg:id="Type" dlg:tab-index="21" dlg:left="85" dlg:top="198" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="FormatLabel" dlg:tab-index="22" dlg:left="5" dlg:top="214" dlg:width="75" dlg:height="12" dlg:value="Format"/>
<dlg:textfield dlg:id="Format" dlg:tab-index="23" dlg:left="85" dlg:top="212" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="SourceLabel" dlg:tab-index="24" dlg:left="5" dlg:top="228" dlg:width="75" dlg:height="12" dlg:value="Source"/>
<dlg:textfield dlg:id="Source" dlg:tab-index="25" dlg:left="85" dlg:top="226" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="RelationLabel" dlg:tab-index="26" dlg:left="5" dlg:top="242" dlg:width="75" dlg:height="12" dlg:value="Relation"/>
<dlg:textfield dlg:id="Relation" dlg:tab-index="27" dlg:left="85" dlg:top="240" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="CoverageLabel" dlg:tab-index="28" dlg:left="5" dlg:top="256" dlg:width="75" dlg:height="12" dlg:value="Coverage"/>
<dlg:textfield dlg:id="Coverage" dlg:tab-index="29" dlg:left="85" dlg:top="254" dlg:width="130" dlg:height="12"/>
<dlg:text dlg:id="RightsLabel" dlg:tab-index="30" dlg:left="5" dlg:top="270" dlg:width="75" dlg:height="12" dlg:value="Rights"/>
<dlg:textfield dlg:id="Rights" dlg:tab-index="31" dlg:left="85" dlg:top="268" dlg:width="130" dlg:height="12"/>
<dlg:button dlg:id="OKButton" dlg:tab-index="32" dlg:left="5" dlg:top="290" dlg:width="50" dlg:height="12" dlg:value="OK" dlg:button-type="ok"/>
<dlg:button dlg:id="CancelButton" dlg:tab-index="33" dlg:left="60" dlg:top="290" dlg:width="50" dlg:height="12" dlg:value="Cancel" dlg:button-type="cancel"/>
<dlg:button dlg:id="HelpButton" dlg:tab-index="34" dlg:left="165" dlg:top="290" dlg:width="50" dlg:height="12" dlg:value="Help"/>
</dlg:bulletinboard>
</dlg:window>

View file

@ -13,4 +13,5 @@
<library:element library:name="DeleteDialog"/>
<library:element library:name="LoadDefaults"/>
<library:element library:name="EpubOptions"/>
<library:element library:name="EpubMetadata"/>
</library:library>