diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-02-05 10:06:40 +0100 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-02-05 10:48:37 +0100 |
commit | a468e386695f470f65616adde4673aa43a562c51 (patch) | |
tree | d15bde185f02eeb3e65de4a74720db75921d3f9f /include | |
parent | c53dd7ea947e0233d98edd3e5d2f07c65ea61f30 (diff) |
drawingML import: paragraph adjustment inside group shape
Change-Id: I875cb1f12c9f81d329d7fe9cd3aa32a4cd818573
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/drawingml/textparagraphproperties.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/oox/drawingml/textparagraphproperties.hxx b/include/oox/drawingml/textparagraphproperties.hxx index 8014929fc584..2ed69f95c014 100644 --- a/include/oox/drawingml/textparagraphproperties.hxx +++ b/include/oox/drawingml/textparagraphproperties.hxx @@ -94,6 +94,9 @@ public: boost::optional< sal_Int32 >& getParaLeftMargin(){ return moParaLeftMargin; } boost::optional< sal_Int32 >& getFirstLineIndentation(){ return moFirstLineIndentation; } + boost::optional< sal_Int16 >& getParaAdjust() { return moParaAdjust; } + void setParaAdjust( sal_Int16 nParaAdjust ) { moParaAdjust = nParaAdjust; } + void apply( const TextParagraphProperties& rSourceProps ); void pushToPropSet( const ::oox::core::XmlFilterBase* pFilterBase, const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > & xPropSet, @@ -118,6 +121,7 @@ protected: TextSpacing maParaBottomMargin; boost::optional< sal_Int32 > moParaLeftMargin; boost::optional< sal_Int32 > moFirstLineIndentation; + boost::optional< sal_Int16 > moParaAdjust; sal_Int16 mnLevel; }; |