Support cover images in EPUB export + some full screen image improvements

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@112 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2011-06-19 13:39:56 +00:00
parent 63e9c4c66d
commit e09d61f6ee
16 changed files with 202 additions and 117 deletions

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-10-27)
* Version 1.2 (2011-06-16)
*
*/
@ -308,6 +308,9 @@ public class OfficeReader {
// The main content element
private Element content = null;
// The first image in the document
private Element firstImage = null;
// Identify OASIS OpenDocument format
private boolean bOpenDocument = false;
@ -705,6 +708,14 @@ public class OfficeReader {
public TableReader getTableReader(Element node) {
return new TableReader(this,node);
}
/** Get the very first image in this document, if any
*
* @return the first image, or null if no images exists
*/
public Element getFirstImage() {
return firstImage;
}
/** Constructor; read a document */
public OfficeReader(OfficeDocument oooDoc, boolean bAllParagraphsAreSoft) {
@ -1122,6 +1133,11 @@ public class OfficeReader {
}
}
// todo: other indexes
else if (firstImage==null && sName.equals(XMLString.DRAW_FRAME)) {
// This may be an image (note that a replacement image for an object is OK by this definition)
Element image = Misc.getChildByTagName(node, XMLString.DRAW_IMAGE);
if (image!=null) { firstImage=image; }
}
// Traverse the children
Node child = node.getFirstChild();