diff options
author | Radek Doulik <rodo@novell.com> | 2013-02-22 12:03:54 +0100 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2013-02-22 12:05:30 +0100 |
commit | 64cdf8072a79491903c5d1b107c6486b33da04d3 (patch) | |
tree | 2673e56ee4a5f13227ac024c5cf052578d6c03ab /sd/inc/drawdoc.hxx | |
parent | 805f1ed598ef18157710cf3655d329b09a735389 (diff) |
added EmbedFonts property, added File/Properties/Font tab
Change-Id: Id2a812c4b5347e2851149a1bd46eaec4b40d0f12
Diffstat (limited to 'sd/inc/drawdoc.hxx')
-rw-r--r-- | sd/inc/drawdoc.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index 2ab95ab67716..56bab28c8b23 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -188,6 +188,8 @@ private: std::vector< rtl::OUString > maAnnotationAuthors; + bool mbUseEmbedFonts; + protected: virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > createUnoModel(); @@ -557,6 +559,9 @@ public: sal_uInt16 GetAnnotationAuthorIndex( const rtl::OUString& rAuthor ); + bool IsUsingEmbededFonts() { return mbUseEmbedFonts; } + void SetIsUsingEmbededFonts( bool bUse ) { mbUseEmbedFonts = bUse; } + private: /** This member stores the printer independent layout mode. Please refer to <member>SetPrinterIndependentLayout()</member> for its |