From a468e386695f470f65616adde4673aa43a562c51 Mon Sep 17 00:00:00 2001 From: Zolnai Tamás Date: Wed, 5 Feb 2014 10:06:40 +0100 Subject: drawingML import: paragraph adjustment inside group shape Change-Id: I875cb1f12c9f81d329d7fe9cd3aa32a4cd818573 --- include/oox/drawingml/textparagraphproperties.hxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include') 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; }; -- cgit