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:
parent
63e9c4c66d
commit
e09d61f6ee
16 changed files with 202 additions and 117 deletions
|
@ -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-04-13)
|
||||
* Version 1.2 (2011-06-19)
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -53,6 +53,7 @@ public class ConverterResultImpl implements ConverterResult {
|
|||
private ContentEntry lotFile;
|
||||
private ContentEntry indexFile;
|
||||
private ContentEntry bibliographyFile;
|
||||
private ContentEntry coverImageFile;
|
||||
|
||||
private MetaData metaData = null;
|
||||
|
||||
|
@ -77,6 +78,7 @@ public class ConverterResultImpl implements ConverterResult {
|
|||
lotFile = null;
|
||||
indexFile = null;
|
||||
bibliographyFile = null;
|
||||
coverImageFile = null;
|
||||
metaData = null;
|
||||
nMasterCount = 0;
|
||||
}
|
||||
|
@ -209,6 +211,18 @@ public class ConverterResultImpl implements ConverterResult {
|
|||
return bibliographyFile;
|
||||
}
|
||||
|
||||
/** Define the entry which contains the cover image
|
||||
*
|
||||
* @param entry the entry
|
||||
*/
|
||||
public void setCoverImageFile(ContentEntry entry) {
|
||||
coverImageFile = entry;
|
||||
}
|
||||
|
||||
public ContentEntry getCoverImageFile() {
|
||||
return coverImageFile;
|
||||
}
|
||||
|
||||
/** Set the meta data of this <code>ConverterResult</code>
|
||||
*
|
||||
* @param metaData the meta data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue