summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-20 05:54:51 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-20 05:54:51 +0000
commit5b10a75f67a9bbe476aea179ee4952ad145fdd69 (patch)
tree6c696b85ad6df6ea961d488ddd8f6cc7b9fa0f00 /oox/source
parenta20ee9d1da54449f4bc9a3e20e0f1a65908523fe (diff)
INTEGRATION: CWS ooxtablefilter (1.3.2); FILE MERGED
2008/06/10 12:12:36 sj 1.3.2.5: fixed merging conflicts 2008/06/10 09:52:36 sj 1.3.2.4: RESYNC: (1.3-1.5); FILE MERGED 2008/04/04 10:10:17 sj 1.3.2.3: added some table/text properties 2008/04/02 17:43:48 sj 1.3.2.2: added table import 2008/03/20 15:33:23 sj 1.3.2.1: added table import
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/drawingml/shape.cxx81
1 files changed, 56 insertions, 25 deletions
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 7fc98729a62a..7adf3e5696e1 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: shape.cxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -92,12 +92,14 @@ void Shape::setDefaults()
const OUString sTextUpperDistance( RTL_CONSTASCII_USTRINGPARAM( "TextUpperDistance" ) );
const OUString sTextRightDistance( RTL_CONSTASCII_USTRINGPARAM( "TextRightDistance" ) );
const OUString sTextLowerDistance( RTL_CONSTASCII_USTRINGPARAM( "TextLowerDistance" ) );
- maShapeProperties[ sTextAutoGrowHeight ] <<= false;
- maShapeProperties[ sTextWordWrap ] <<= true;
+ const OUString sCharHeight( RTL_CONSTASCII_USTRINGPARAM( "CharHeight" ) );
+ maShapeProperties[ sTextAutoGrowHeight ] <<= sal_False;
+ maShapeProperties[ sTextWordWrap ] <<= sal_True;
maShapeProperties[ sTextLeftDistance ] <<= static_cast< sal_Int32 >( 250 );
maShapeProperties[ sTextUpperDistance ] <<= static_cast< sal_Int32 >( 125 );
maShapeProperties[ sTextRightDistance ] <<= static_cast< sal_Int32 >( 250 );
maShapeProperties[ sTextLowerDistance ] <<= static_cast< sal_Int32 >( 125 );
+ maShapeProperties[ sCharHeight ] <<= static_cast< float >( 18.0 );
}
void Shape::setServiceName( const sal_Char* pServiceName )
@@ -137,13 +139,14 @@ void Shape::addShape(
}
}
-void Shape::applyShapeReference( const Shape& rReferencedShape )
+void Shape::applyShapeReference( const oox::drawingml::Shape& rReferencedShape )
{
mpTextBody = TextBodyPtr( new TextBody( *rReferencedShape.mpTextBody.get() ) );
maShapeProperties = rReferencedShape.maShapeProperties;
mpLinePropertiesPtr = LinePropertiesPtr( new LineProperties( *rReferencedShape.mpLinePropertiesPtr.get() ) );
mpFillPropertiesPtr = FillPropertiesPtr( new FillProperties( *rReferencedShape.mpFillPropertiesPtr.get() ) );
mpCustomShapePropertiesPtr = CustomShapePropertiesPtr( new CustomShapeProperties( *rReferencedShape.mpCustomShapePropertiesPtr.get() ) );
+ mpTablePropertiesPtr = table::TablePropertiesPtr( rReferencedShape.mpTablePropertiesPtr.get() ? new table::TableProperties( *rReferencedShape.mpTablePropertiesPtr.get() ) : NULL );
mpMasterTextListStyle = TextListStylePtr( new TextListStyle( *rReferencedShape.mpMasterTextListStyle.get() ) );
maShapeStylesColorMap = rReferencedShape.maShapeStylesColorMap;
maShapeStylesIndexMap = rReferencedShape.maShapeStylesIndexMap;
@@ -213,6 +216,38 @@ void Shape::addChilds(
}
}
+void applyPropertyMap( uno::Reference< drawing::XShape >& rxShape, PropertyMap& rPropertyMap )
+{
+ if( !rPropertyMap.empty() )
+ {
+ Reference< XMultiPropertySet > xMSet( rxShape, UNO_QUERY );
+ if( xMSet.is() )
+ {
+ try
+ {
+ Sequence< OUString > aNames;
+ Sequence< Any > aValues;
+ rPropertyMap.makeSequence( aNames, aValues );
+ xMSet->setPropertyValues( aNames, aValues);
+ }
+ catch( Exception& )
+ {
+ }
+ }
+ else
+ {
+ uno::Reference< beans::XPropertySet > xSet( rxShape, uno::UNO_QUERY_THROW );
+ uno::Reference< beans::XPropertySetInfo > xInfo( xSet->getPropertySetInfo() );
+
+ for( PropertyMap::const_iterator aIter( rPropertyMap.begin() ); aIter != rPropertyMap.end(); aIter++ )
+ {
+ if ( xInfo->hasPropertyByName( (*aIter).first ) )
+ xSet->setPropertyValue( (*aIter).first, (*aIter).second );
+ }
+ }
+ }
+}
+
Reference< XShape > Shape::createAndInsert(
const ::oox::core::XmlFilterBase& rFilterBase,
const rtl::OUString& rServiceName,
@@ -324,19 +359,19 @@ Reference< XShape > Shape::createAndInsert(
maShapeProperties[ sTransformation ] <<= aMatrix;
}
Reference< lang::XMultiServiceFactory > xServiceFact( rFilterBase.getModel(), UNO_QUERY_THROW );
- Reference< drawing::XShape > xShape( xServiceFact->createInstance( rServiceName ), UNO_QUERY_THROW );
+ if ( !mxShape.is() )
+ mxShape = Reference< drawing::XShape >( xServiceFact->createInstance( rServiceName ), UNO_QUERY_THROW );
- Reference< XPropertySet > xSet( xShape, UNO_QUERY_THROW );
- if( xShape.is() && xSet.is() )
+ Reference< XPropertySet > xSet( mxShape, UNO_QUERY_THROW );
+ if( mxShape.is() && xSet.is() )
{
if( msName.getLength() )
{
- Reference< container::XNamed > xNamed( xShape, UNO_QUERY );
+ Reference< container::XNamed > xNamed( mxShape, UNO_QUERY );
if( xNamed.is() )
xNamed->setName( msName );
}
- rxShapes->add( xShape );
- mxShape = xShape;
+ rxShapes->add( mxShape );
LineProperties aLineProperties;
FillProperties aFillProperties;
@@ -345,17 +380,15 @@ Reference< XShape > Shape::createAndInsert(
setShapeStyles( rxTheme, aLineProperties, aFillProperties );
setShapeStyleColors( rFilterBase, aLineProperties, aFillProperties, aShapeProperties );
- aLineProperties.apply( getLineProperties() );
- aFillProperties.apply( getFillProperties() );
+ aLineProperties.apply( *getLineProperties() );
+ aFillProperties.apply( *getFillProperties() );
aShapeProperties.insert( getShapeProperties().begin(), getShapeProperties().end() );
- // add properties from textbody to shape properties
- if( mpTextBody.get() )
- aShapeProperties.insert( mpTextBody->getTextProperties().begin(), mpTextBody->getTextProperties().end() );
-
// applying properties
if ( rServiceName == OUString::createFromAscii( "com.sun.star.drawing.GraphicObjectShape" ) )
mpGraphicPropertiesPtr->pushToPropSet( rFilterBase, xSet, 0 );
+ if ( mpTablePropertiesPtr.get() && ( rServiceName == OUString::createFromAscii( "com.sun.star.drawing.TableShape" ) ) )
+ mpTablePropertiesPtr->pushToPropSet( rFilterBase, xSet, mpMasterTextListStyle );
aFillProperties.pushToPropSet( rFilterBase, xSet, mnRotation );
aLineProperties.pushToPropSet( rFilterBase, xSet );
@@ -368,19 +401,18 @@ Reference< XShape > Shape::createAndInsert(
{
const Any* pAutoGrowHeight = aShapeProperties.getPropertyValue( sTextAutoGrowHeight );
if ( pAutoGrowHeight )
- xSet->setPropertyValue( sTextAutoGrowHeight, Any( false ) );
+ xSet->setPropertyValue( sTextAutoGrowHeight, Any( sal_False ) );
}
- PropertySet aPropSet( xShape );
- aPropSet.setProperties( aShapeProperties );
+ applyPropertyMap( mxShape, aShapeProperties );
if( rServiceName == OUString::createFromAscii( "com.sun.star.drawing.CustomShape" ) )
- mpCustomShapePropertiesPtr->pushToPropSet( rFilterBase, xSet, xShape );
+ mpCustomShapePropertiesPtr->pushToPropSet( rFilterBase, xSet, mxShape );
// in some cases, we don't have any text body.
if( getTextBody() )
{
- Reference < XText > xText( xShape, UNO_QUERY );
+ Reference < XText > xText( mxShape, UNO_QUERY );
if ( xText.is() ) // not every shape is supporting an XText interface (e.g. GroupShape)
{
Reference < XTextCursor > xAt = xText->createTextCursor();
@@ -388,12 +420,11 @@ Reference< XShape > Shape::createAndInsert(
}
}
}
-
// use a callback for further processing on the XShape (e.g. charts)
- if( xShape.is() && mxCreateCallback.get() )
- mxCreateCallback->onCreateXShape( xShape );
+ if( mxShape.is() && mxCreateCallback.get() )
+ mxCreateCallback->onCreateXShape( mxShape );
- return xShape;
+ return mxShape;
}
// the properties of rSource which are not part of rDest are being put into rDest