/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::ooo::vba; using namespace ::com::sun::star; class VbShapeEnumHelper : public EnumerationHelper_BASE { uno::Reference m_xParent; uno::Reference m_xIndexAccess; sal_Int32 nIndex; public: VbShapeEnumHelper( const uno::Reference< msforms::XShapes >& xParent, const uno::Reference< container::XIndexAccess >& xIndexAccess ) : m_xParent( xParent ), m_xIndexAccess( xIndexAccess ), nIndex( 0 ) {} virtual ::sal_Bool SAL_CALL hasMoreElements( ) throw (uno::RuntimeException) { return ( nIndex < m_xIndexAccess->getCount() ); } virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException) { ScVbaShapes* pShapes = dynamic_cast< ScVbaShapes* >(m_xParent.get()); if ( pShapes && hasMoreElements() ) return pShapes->createCollectionObject( m_xIndexAccess->getByIndex( nIndex++ ) ); throw container::NoSuchElementException(); } }; void ScVbaShapes::initBaseCollection() { if ( m_xNameAccess.is() ) // already has NameAccess return; // no NameAccess then use ShapeCollectionHelper XNamedObjectCollectionHelper< drawing::XShape >::XNamedVec mShapes; sal_Int32 nLen = m_xIndexAccess->getCount(); mShapes.reserve( nLen ); for ( sal_Int32 index=0; index( m_xIndexAccess->getByIndex( index ) , uno::UNO_QUERY ) ); uno::Reference< container::XIndexAccess > xShapes( new XNamedObjectCollectionHelper< drawing::XShape >( mShapes ) ); m_xIndexAccess.set( xShapes, uno::UNO_QUERY ); m_xNameAccess.set( xShapes, uno::UNO_QUERY ); } ScVbaShapes::ScVbaShapes( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::container::XIndexAccess > xShapes, const uno::Reference< frame::XModel>& xModel ): ScVbaShapes_BASE( xParent, xContext, xShapes ), m_nNewShapeCount(0), m_xModel( xModel ) { m_xShapes.set( xShapes, uno::UNO_QUERY_THROW ); m_xDrawPage.set( xShapes, uno::UNO_QUERY_THROW ); initBaseCollection(); } uno::Reference< container::XEnumeration > ScVbaShapes::createEnumeration() throw (uno::RuntimeException) { return new VbShapeEnumHelper( this, m_xIndexAccess ); } uno::Any ScVbaShapes::createCollectionObject( const css::uno::Any& aSource ) throw (uno::RuntimeException) { if( aSource.hasValue() ) { uno::Reference< drawing::XShape > xShape( aSource, uno::UNO_QUERY_THROW ); return uno::makeAny( uno::Reference< msforms::XShape >( new ScVbaShape( getParent(), mxContext, xShape, m_xShapes, m_xModel, ScVbaShape::getType( xShape ) ) ) ); } return uno::Any(); } uno::Type ScVbaShapes::getElementType() throw (uno::RuntimeException) { return ooo::vba::msforms::XShape::static_type(0); } rtl::OUString& ScVbaShapes::getServiceImplName() { static rtl::OUString sImplName( RTL_CONSTASCII_USTRINGPARAM("ScVbaShapes") ); return sImplName; } uno::Sequence< rtl::OUString > ScVbaShapes::getServiceNames() { static uno::Sequence< rtl::OUString > aServiceNames; if ( aServiceNames.getLength() == 0 ) { aServiceNames.realloc( 1 ); aServiceNames[ 0 ] = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ooo.vba.msform.Shapes" ) ); } return aServiceNames; } css::uno::Reference< css::container::XIndexAccess > ScVbaShapes::getShapesByArrayIndices( const uno::Any& Index ) throw (uno::RuntimeException) { if ( Index.getValueTypeClass() != uno::TypeClass_SEQUENCE ) throw uno::RuntimeException(); uno::Reference< script::XTypeConverter > xConverter = getTypeConverter(mxContext); uno::Any aConverted; aConverted = xConverter->convertTo( Index, getCppuType((uno::Sequence< uno::Any >*)0) ); uno::Sequence< uno::Any > sIndices; aConverted >>= sIndices; XNamedObjectCollectionHelper< drawing::XShape >::XNamedVec mShapes; sal_Int32 nElems = sIndices.getLength(); for( sal_Int32 index = 0; index < nElems; ++index ) { uno::Reference< drawing::XShape > xShape; if ( sIndices[ index ].getValueTypeClass() == uno::TypeClass_STRING ) { rtl::OUString sName; sIndices[ index ] >>= sName; xShape.set( m_xNameAccess->getByName( sName ), uno::UNO_QUERY ); } else { sal_Int32 nIndex = 0; sIndices[ index ] >>= nIndex; // adjust for 1 based mso indexing xShape.set( m_xIndexAccess->getByIndex( nIndex - 1 ), uno::UNO_QUERY ); } // populate map with drawing::XShapes if ( xShape.is() ) mShapes.push_back( xShape ); } uno::Reference< container::XIndexAccess > xIndexAccess( new XNamedObjectCollectionHelper< drawing::XShape >( mShapes ) ); return xIndexAccess; } uno::Any SAL_CALL ScVbaShapes::Item( const uno::Any& Index, const uno::Any& Index2 ) throw (uno::RuntimeException) { // I don't think we need to support Array of indices for shapes /* if ( Index.getValueTypeClass() == uno::TypeClass_SEQUENCE ) { uno::Reference< container::XIndexAccess > xIndexAccess( getShapesByArrayIndices( Index ) ); // return new collection instance uno::Reference< XCollection > xShapesCollection( new ScVbaShapes( this->getParent(), mxContext, xIndexAccess ) ); return uno::makeAny( xShapesCollection ); } */ return ScVbaShapes_BASE::Item( Index, Index2 ); } uno::Reference< msforms::XShapeRange > SAL_CALL ScVbaShapes::Range( const uno::Any& shapes ) throw (css::uno::RuntimeException) { // shapes, can be an index or an array of indices uno::Reference< container::XIndexAccess > xShapes; if ( shapes.getValueTypeClass() == uno::TypeClass_SEQUENCE ) xShapes = getShapesByArrayIndices( shapes ); else { // wrap single index into a sequence uno::Sequence< uno::Any > sIndices(1); sIndices[ 0 ] = shapes; uno::Any aIndex; aIndex <<= sIndices; xShapes = getShapesByArrayIndices( aIndex ); } return new ScVbaShapeRange( getParent(), mxContext, xShapes, m_xDrawPage, m_xModel ); } void SAL_CALL ScVbaShapes::SelectAll() throw (uno::RuntimeException) { uno::Reference< view::XSelectionSupplier > xSelectSupp( m_xModel->getCurrentController(), uno::UNO_QUERY_THROW ); try { xSelectSupp->select( uno::makeAny( m_xShapes ) ); } // viewuno.cxx ScTabViewObj::select will throw IllegalArgumentException // if one of the shapes is no 'markable' e.g. a button // the method still works catch( lang::IllegalArgumentException& ) { } } uno::Reference< drawing::XShape > ScVbaShapes::createShape( rtl::OUString service ) throw (css::uno::RuntimeException) { uno::Reference< lang::XMultiServiceFactory > xMSF( m_xModel, uno::UNO_QUERY_THROW ); uno::Reference< drawing::XShape > xShape( xMSF->createInstance( service ), uno::UNO_QUERY_THROW ); return xShape; } uno::Any ScVbaShapes::AddRectangle( sal_Int32 startX, sal_Int32 startY, sal_Int32 nLineWidth, sal_Int32 nLineHeight, uno::Any aRange ) throw (css::uno::RuntimeException) { rtl::OUString sCreateShapeName( rtl::OUString::createFromAscii( "com.sun.star.drawing.RectangleShape" ) ); sal_Int32 nXPos = Millimeter::getInHundredthsOfOneMillimeter( startX ); sal_Int32 nYPos = Millimeter::getInHundredthsOfOneMillimeter( startY ); sal_Int32 nWidth = Millimeter::getInHundredthsOfOneMillimeter( nLineWidth ); sal_Int32 nHeight = Millimeter::getInHundredthsOfOneMillimeter( nLineHeight ); uno::Reference< drawing::XShape > xShape( createShape( sCreateShapeName ), uno::UNO_QUERY_THROW ); m_xShapes->add( xShape ); rtl::OUString sName = createName( rtl::OUString::createFromAscii( "Rectangle" ) ); setDefaultShapeProperties( xShape ); setShape_NameProperty( xShape, sName ); awt::Point aMovePositionIfRange(0, 0); awt::Point position; position.X = nXPos - aMovePositionIfRange.X; position.Y = nYPos - aMovePositionIfRange.Y; xShape->setPosition( position ); awt::Size size; size.Height = nHeight; size.Width = nWidth; xShape->setSize( size ); ScVbaShape *pScVbaShape = new ScVbaShape( getParent(), mxContext, xShape, m_xShapes, m_xModel, ScVbaShape::getType( xShape ) ); pScVbaShape->setRange( aRange ); return uno::makeAny( uno::Reference< msforms::XShape > ( pScVbaShape ) ); } uno::Any ScVbaShapes::AddEllipse( sal_Int32 startX, sal_Int32 startY, sal_Int32 nLineWidth, sal_Int32 nLineHeight, uno::Any aRange ) throw (css::uno::RuntimeException) { rtl::OUString sCreateShapeName( rtl::OUString::createFromAscii( "com.sun.star.drawing.EllipseShape" ) ); sal_Int32 nXPos = Millimeter::getInHundredthsOfOneMillimeter( startX ); sal_Int32 nYPos = Millimeter::getInHundredthsOfOneMillimeter( startY ); sal_Int32 nWidth = Millimeter::getInHundredthsOfOneMillimeter( nLineWidth ); sal_Int32 nHeight = Millimeter::getInHundredthsOfOneMillimeter( nLineHeight ); uno::Reference< drawing::XShape > xShape( createShape( sCreateShapeName ), uno::UNO_QUERY_THROW ); m_xShapes->add( xShape ); awt::Point aMovePositionIfRange( 0, 0 ); //TODO helperapi using a writer document /* XDocument xDocument = (XDocument)getParent(); if (AnyConverter.isVoid(_aRange)) { _aRange = xDocument.Range(new Integer(0), new Integer(1)); // Top&Left in Word is Top&Left of the paper and not the writeable area. aMovePositionIfRange = calculateTopLeftMargin((HelperInterfaceAdaptor)xDocument); } setShape_AnchorTypeAndRangeProperty(xShape, _aRange); */ rtl::OUString name = createName( rtl::OUString::createFromAscii( "Oval" )); setDefaultShapeProperties(xShape); setShape_NameProperty(xShape, name); awt::Point position; position.X = nXPos - aMovePositionIfRange.X; position.Y = nYPos - aMovePositionIfRange.Y; xShape->setPosition(position); awt::Size size; size.Height = nHeight; size.Width = nWidth; xShape->setSize(size); ScVbaShape *pScVbaShape = new ScVbaShape( getParent(), mxContext, xShape, m_xShapes, m_xModel, ScVbaShape::getType( xShape ) ); pScVbaShape->setRange( aRange ); return uno::makeAny( uno::Reference< msforms::XShape > ( pScVbaShape ) ); } //helpeapi calc uno::Any SAL_CALL ScVbaShapes::AddLine( sal_Int32 StartX, sal_Int32 StartY, sal_Int32 endX, sal_Int32 endY ) throw (uno::RuntimeException) { sal_Int32 nLineWidth = endX - StartX; sal_Int32 nLineHeight = endY - StartY; sal_Int32 nHeight = Millimeter::getInHundredthsOfOneMillimeter( nLineHeight ); sal_Int32 nWidth = Millimeter::getInHundredthsOfOneMillimeter( nLineWidth ); sal_Int32 nXPos = Millimeter::getInHundredthsOfOneMillimeter( StartX ); sal_Int32 nYPos = Millimeter::getInHundredthsOfOneMillimeter( StartY ); uno::Reference< drawing::XShape > xShape( createShape( rtl::OUString::createFromAscii("com.sun.star.drawing.LineShape") ), uno::UNO_QUERY_THROW ); m_xShapes->add( xShape ); awt::Point aMovePositionIfRange( 0, 0 ); rtl::OUString name = createName( rtl::OUString::createFromAscii( "Line" ) ); setDefaultShapeProperties(xShape); setShape_NameProperty(xShape, name); awt::Point position; position.X = nXPos - aMovePositionIfRange.X; position.Y = nYPos - aMovePositionIfRange.Y; xShape->setPosition(position); awt::Size size; size.Height = nHeight; size.Width = nWidth; xShape->setSize(size); ScVbaShape *pScVbaShape = new ScVbaShape( getParent(), mxContext, xShape, m_xShapes, m_xModel, ScVbaShape::getType( xShape ) ); return uno::makeAny( uno::Reference< msforms::XShape > ( pScVbaShape ) ); } uno::Any SAL_CALL ScVbaShapes::AddShape( sal_Int32 _nType, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (uno::RuntimeException) { uno::Any _aAnchor; if (_nType == office::MsoAutoShapeType::msoShapeRectangle) { return AddRectangle(_nLeft, _nTop, _nWidth, _nHeight, _aAnchor); } else if (_nType == office::MsoAutoShapeType::msoShapeOval) { return AddEllipse(_nLeft, _nTop, _nWidth, _nHeight, _aAnchor); } return uno::Any(); } uno::Any SAL_CALL ScVbaShapes::AddTextbox( sal_Int32 _nOrientation, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (uno::RuntimeException) { uno::Reference< lang::XServiceInfo > xServiceInfo( m_xModel, uno::UNO_QUERY_THROW ); if( xServiceInfo->supportsService( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.text.TextDocument" ) ) ) ) { return AddTextboxInWriter( _nOrientation, _nLeft, _nTop, _nWidth, _nHeight ); } throw uno::RuntimeException( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Not implemented") ), uno::Reference< uno::XInterface >() ); } uno::Any ScVbaShapes::AddTextboxInWriter( sal_Int32 /*_nOrientation*/, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (uno::RuntimeException) { rtl::OUString sCreateShapeName( rtl::OUString::createFromAscii( "com.sun.star.drawing.TextShape" ) ); sal_Int32 nXPos = Millimeter::getInHundredthsOfOneMillimeter( _nLeft ); sal_Int32 nYPos = Millimeter::getInHundredthsOfOneMillimeter( _nTop ); sal_Int32 nWidth = Millimeter::getInHundredthsOfOneMillimeter( _nWidth ); sal_Int32 nHeight = Millimeter::getInHundredthsOfOneMillimeter( _nHeight ); uno::Reference< drawing::XShape > xShape( createShape( sCreateShapeName ), uno::UNO_QUERY_THROW ); m_xShapes->add( xShape ); setDefaultShapeProperties(xShape); rtl::OUString sName = createName( rtl::OUString::createFromAscii( "Text Box") ); setShape_NameProperty( xShape, sName ); awt::Size size; size.Height = nHeight; size.Width = nWidth; xShape->setSize(size); uno::Reference< beans::XPropertySet > xShapeProps( xShape, uno::UNO_QUERY_THROW ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "AnchorType" ), uno::makeAny( text::TextContentAnchorType_AT_PAGE ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "HoriOrientRelation" ), uno::makeAny( text::RelOrientation::PAGE_LEFT ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "HoriOrient" ), uno::makeAny( text::HoriOrientation::NONE ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "HoriOrientPosition" ), uno::makeAny( nXPos ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "VertOrientRelation" ), uno::makeAny( text::RelOrientation::PAGE_FRAME ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "VertOrient" ), uno::makeAny( text::VertOrientation::NONE ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "VertOrientPosition" ), uno::makeAny( nYPos ) ); // set to visible drawing::LineStyle aLineStyle = drawing::LineStyle_SOLID; xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "LineStyle" ), uno::makeAny( aLineStyle ) ); // set to font sal_Int16 nLayerId = 1; rtl::OUString sLayerName = rtl::OUString::createFromAscii("Heaven"); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "LayerID" ), uno::makeAny( nLayerId ) ); xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "LayerName" ), uno::makeAny( sLayerName ) ); ScVbaShape *pScVbaShape = new ScVbaShape( getParent(), mxContext, xShape, m_xShapes, m_xModel, ScVbaShape::getType( xShape ) ); return uno::makeAny( uno::Reference< msforms::XShape > ( pScVbaShape ) ); } uno::Any ScVbaShapes::AddShape( const rtl::OUString& sService, const rtl::OUString& sName, sal_Int32 _nLeft, sal_Int32 _nTop, sal_Int32 _nWidth, sal_Int32 _nHeight ) throw (uno::RuntimeException) { sal_Int32 nXPos = Millimeter::getInHundredthsOfOneMillimeter( _nLeft ); sal_Int32 nYPos = Millimeter::getInHundredthsOfOneMillimeter( _nTop ); sal_Int32 nWidth = Millimeter::getInHundredthsOfOneMillimeter( _nWidth ); sal_Int32 nHeight = Millimeter::getInHundredthsOfOneMillimeter( _nHeight ); uno::Reference< drawing::XShape > xShape( createShape( sService ), uno::UNO_QUERY_THROW ); m_xShapes->add( xShape ); setDefaultShapeProperties(xShape); setShape_NameProperty( xShape, sName ); awt::Point aMovePositionIfRange( 0, 0 ); awt::Point position; position.X = nXPos - aMovePositionIfRange.X; position.Y = nYPos - aMovePositionIfRange.Y; xShape->setPosition(position); awt::Size size; size.Height = nHeight; size.Width = nWidth; xShape->setSize(size); ScVbaShape *pScVbaShape = new ScVbaShape( getParent(), mxContext, xShape, m_xShapes, m_xModel, ScVbaShape::getType( xShape ) ); return uno::makeAny( uno::Reference< msforms::XShape > ( pScVbaShape ) ); } void ScVbaShapes::setDefaultShapeProperties( uno::Reference< drawing::XShape > xShape ) throw (uno::RuntimeException) { uno::Reference< beans::XPropertySet > xPropertySet( xShape, uno::UNO_QUERY_THROW ); xPropertySet->setPropertyValue( rtl::OUString::createFromAscii( "FillStyle" ), uno::makeAny( rtl::OUString::createFromAscii( "SOLID" ) ) ); xPropertySet->setPropertyValue( rtl::OUString::createFromAscii( "FillColor"), uno::makeAny( sal_Int32(0xFFFFFF) ) ); xPropertySet->setPropertyValue( rtl::OUString::createFromAscii( "TextWordWrap"), uno::makeAny( text::WrapTextMode_THROUGHT ) ); //not find in OOo2.3 //xPropertySet->setPropertyValue( rtl::OUString::createFromAscii( "Opaque"), uno::makeAny( sal_True ) ); } void ScVbaShapes::setShape_NameProperty( uno::Reference< css::drawing::XShape > xShape, rtl::OUString sName ) { uno::Reference< beans::XPropertySet > xPropertySet( xShape, uno::UNO_QUERY_THROW ); try { xPropertySet->setPropertyValue( rtl::OUString::createFromAscii( "Name" ), uno::makeAny( sName ) ); } catch( script::BasicErrorException e ) { } } rtl::OUString ScVbaShapes::createName( rtl::OUString sName ) { sal_Int32 nActNumber = 1 + m_nNewShapeCount; m_nNewShapeCount++; sName += rtl::OUString::valueOf( nActNumber ); return sName; } #if 0 //TODO helperapi using a writer document awt::Point calculateTopLeftMargin( uno::Reference< XHelperInterface > xDocument ) { awt::Point aPoint( 0, 0 ); uno::Reference< frame::XModel > xModel( xDocument, uno::UNO_QUERY_THROW ); return awt::Point(); } #endif