diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-09-06 17:34:08 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-09-06 17:35:48 +0200 |
commit | 7a045f48bad2177538c43f76019c1caecdd5baf7 (patch) | |
tree | e2bf7d81f67a33eb772c7cffcf6be956977345f9 /offapi | |
parent | 9b14fa8f64d84866777e35acfe369503da188c7a (diff) |
read support for docx w:embedTrueTypeFonts/w:embedSystemFonts
No write support yet.
Change-Id: Ia10239acc77cf9ebc4f511e30c007da36abf43cb
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/document/Settings.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/offapi/com/sun/star/document/Settings.idl b/offapi/com/sun/star/document/Settings.idl index be4d186ee391..a2eee7140851 100644 --- a/offapi/com/sun/star/document/Settings.idl +++ b/offapi/com/sun/star/document/Settings.idl @@ -249,6 +249,21 @@ published service Settings */ [optional, property] boolean AddExternalLeading; + // Writer, maybe later others + /** + Whether to embed fonts used by the document (see e.g. handling + of OOXML embedRegular etc.) + @since LibreOffice 3.7 + */ + [optional, property] boolean EmbedFonts; + // Writer, maybe later others + /** + Whether to embed also system fonts used by the document. + Does not have any effect if EmbedFonts is false. + @since LibreOffice 3.7 + */ + [optional, property] boolean EmbedSystemFonts; + }; |