summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-02-05 10:06:40 +0100
committerZolnai Tamás <tamas.zolnai@collabora.com>2014-02-05 10:48:37 +0100
commita468e386695f470f65616adde4673aa43a562c51 (patch)
treed15bde185f02eeb3e65de4a74720db75921d3f9f /include
parentdrawingML import: capitalization inside group shape (diff)
downloadcore-a468e386695f470f65616adde4673aa43a562c51.tar.gz
core-a468e386695f470f65616adde4673aa43a562c51.zip
drawingML import: paragraph adjustment inside group shape
Change-Id: I875cb1f12c9f81d329d7fe9cd3aa32a4cd818573
Diffstat (limited to 'include')
-rw-r--r--include/oox/drawingml/textparagraphproperties.hxx4
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;
};