summaryrefslogtreecommitdiffstats
path: root/oox
diff options
context:
space:
mode:
authorRadek Doulik <rodo@novell.com>2012-01-19 09:45:00 +0100
committerRadek Doulik <rodo@novell.com>2012-01-19 09:46:52 +0100
commit8447e7898d73249d13832144cd7e9167463b1391 (patch)
tree3b1e6dc891e756cd340da22cac755aab24353b67 /oox
parentimplemented SubViewSize property for EnhancedCustomShapePath (diff)
downloadcore-8447e7898d73249d13832144cd7e9167463b1391.tar.gz
core-8447e7898d73249d13832144cd7e9167463b1391.zip
use SubViewSize property for custom shape paths
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/customshapeproperties.cxx35
-rw-r--r--oox/source/token/properties.txt1
2 files changed, 28 insertions, 8 deletions
diff --git a/oox/source/drawingml/customshapeproperties.cxx b/oox/source/drawingml/customshapeproperties.cxx
index a03e42c45186..e5bb6d88e446 100644
--- a/oox/source/drawingml/customshapeproperties.cxx
+++ b/oox/source/drawingml/customshapeproperties.cxx
@@ -32,6 +32,7 @@
#include "oox/helper/propertyset.hxx"
#include "oox/token/tokenmap.hxx"
#include <com/sun/star/awt/Rectangle.hpp>
+#include <com/sun/star/awt/Size.hpp>
#include <com/sun/star/beans/XMultiPropertySet.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/graphic/XGraphicTransformer.hpp>
@@ -220,14 +221,6 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi
aPropertyMap[ PROP_MirroredY ] <<= Any( mbMirroredY );
awt::Size aSize;
awt::Rectangle aViewBox( 0, 0, aSize.Width * 360, aSize.Height * 360 );
- if ( maPath2DList.size() )
- { // TODO: each polygon may have its own size, but I think it is rather been used
- // so we are only taking care of the first
- if ( maPath2DList[ 0 ].w )
- aViewBox.Width = static_cast< sal_Int32 >( maPath2DList[ 0 ].w );
- if ( maPath2DList[ 0 ].h )
- aViewBox.Height = static_cast< sal_Int32 >( maPath2DList[ 0 ].h );
- }
aPropertyMap[ PROP_ViewBox ] <<= aViewBox;
Sequence< EnhancedCustomShapeAdjustmentValue > aAdjustmentValues( maAdjustmentGuideList.size() );
@@ -241,6 +234,7 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi
aPropertyMap[ PROP_AdjustmentValues ] <<= aAdjustmentValues;
PropertyMap aPath;
+
Sequence< EnhancedCustomShapeSegment > aSegments( maSegments.size() );
for ( i = 0; i < maSegments.size(); i++ )
aSegments[ i ] = maSegments[ i ];
@@ -258,11 +252,36 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi
sal_uInt32 j, k, nParameterPairs = 0;
for ( i = 0; i < maPath2DList.size(); i++ )
nParameterPairs += maPath2DList[ i ].parameter.size();
+
Sequence< EnhancedCustomShapeParameterPair > aParameterPairs( nParameterPairs );
for ( i = 0, k = 0; i < maPath2DList.size(); i++ )
for ( j = 0; j < maPath2DList[ i ].parameter.size(); j++ )
aParameterPairs[ k++ ] = maPath2DList[ i ].parameter[ j ];
aPath[ PROP_Coordinates ] <<= aParameterPairs;
+
+ if ( maPath2DList.size() )
+ {
+ sal_Bool bAllZero = sal_True;
+ for ( i=0; i < maPath2DList.size(); i++ )
+ {
+ if ( maPath2DList[i].w || maPath2DList[i].h ) {
+ bAllZero = sal_False;
+ break;
+ }
+ }
+
+ if ( !bAllZero ) {
+ Sequence< awt::Size > aSubViewSize( maPath2DList.size() );
+ for ( i=0; i < maPath2DList.size(); i++ )
+ {
+ aSubViewSize[i].Width = static_cast< sal_Int32 >( maPath2DList[i].w );
+ aSubViewSize[i].Height = static_cast< sal_Int32 >( maPath2DList[i].h );
+ OSL_TRACE("set subpath %d size: %d x %d", i, maPath2DList[i].w, maPath2DList[i].h);
+ }
+ aPath[ PROP_SubViewSize ] <<= aSubViewSize;
+ }
+ }
+
Sequence< PropertyValue > aPathSequence = aPath.makePropertyValueSequence();
aPropertyMap[ PROP_Path ] <<= aPathSequence;
diff --git a/oox/source/token/properties.txt b/oox/source/token/properties.txt
index 50c46bdb73fe..9127c389f5f2 100644
--- a/oox/source/token/properties.txt
+++ b/oox/source/token/properties.txt
@@ -434,6 +434,7 @@ StartingAngle
State
StringItemList
Subtotals
+SubViewSize
Suffix
SwapXAndYAxis
Symbol