diff options
author | Felix Zhang <fezhang@suse.com> | 2011-12-13 12:07:20 +0800 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2011-12-14 10:29:19 +0100 |
commit | 8d691a2d94d2b2be3ad3fc0a44d2abc387d7b6c2 (patch) | |
tree | 9e75813685442877fb2d16bd7a6048e02aaf34c4 /oox/inc | |
parent | 0cead1d53372cc2e93db5a27b40dee8567129bed (diff) |
import text body rotation property of custom shape
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/oox/drawingml/customshapeproperties.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oox/inc/oox/drawingml/customshapeproperties.hxx b/oox/inc/oox/drawingml/customshapeproperties.hxx index d5ae9a59b193..004d7713d354 100644 --- a/oox/inc/oox/drawingml/customshapeproperties.hxx +++ b/oox/inc/oox/drawingml/customshapeproperties.hxx @@ -136,6 +136,7 @@ public: std::vector< com::sun::star::drawing::EnhancedCustomShapeSegment >& getSegments(){ return maSegments; }; void setMirroredX( sal_Bool bMirroredX ) { mbMirroredX = bMirroredX; }; void setMirroredY( sal_Bool bMirroredY ) { mbMirroredY = bMirroredY; }; + void setTextRotateAngle( sal_Int32 nAngle ) { mnTextRotateAngle = nAngle; }; double getValue( const std::vector< CustomShapeGuide >&, sal_uInt32 nIndex ) const; static sal_Int32 SetCustomShapeGuideValue( std::vector< CustomShapeGuide >& rGuideList, const CustomShapeGuide& rGuide ); @@ -157,6 +158,7 @@ private: maSegments; sal_Bool mbMirroredX; sal_Bool mbMirroredY; + sal_Int32 mnTextRotateAngle; typedef boost::unordered_map< sal_Int32, PropertyMap > PresetsMap; |