/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #include "vbastyles.hxx" #include "vbastyle.hxx" #include #include using namespace ::ooo::vba; using namespace ::com::sun::star; static css::uno::Any lcl_createAPIStyleToVBAObject( const css::uno::Any& aObject, const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< frame::XModel >& xModel ) { uno::Reference< beans::XPropertySet > xStyleProps( aObject, uno::UNO_QUERY_THROW ); uno::Reference< excel::XStyle > xStyle( new ScVbaStyle( xParent, xContext, xStyleProps, xModel ) ); return uno::makeAny( xStyle ); } ScVbaStyles::ScVbaStyles( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< css::uno::XComponentContext > & xContext, const uno::Reference< frame::XModel >& xModel ) throw ( script::BasicErrorException ) : ScVbaStyles_BASE( xParent, xContext, uno::Reference< container::XIndexAccess >( ScVbaStyle::getStylesNameContainer( xModel ), uno::UNO_QUERY_THROW ) ), mxModel( xModel ), mxParent( xParent ) { try { mxMSF.set( mxModel, uno::UNO_QUERY_THROW ); mxNameContainerCellStyles.set( m_xNameAccess, uno::UNO_QUERY_THROW ); } catch (uno::Exception& ) { DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString()); } } uno::Sequence< OUString > ScVbaStyles::getStyleNames() throw ( uno::RuntimeException ) { return mxNameContainerCellStyles->getElementNames(); } uno::Any ScVbaStyles::createCollectionObject(const uno::Any& aObject) { return lcl_createAPIStyleToVBAObject( aObject, mxParent, mxContext, mxModel ); } uno::Type SAL_CALL ScVbaStyles::getElementType() throw (uno::RuntimeException) { return cppu::UnoType::get(); } namespace { class EnumWrapper : public EnumerationHelper_BASE { uno::Reference m_xIndexAccess; uno::Reference m_xParent; uno::Reference m_xContext; uno::Reference m_xModel; sal_Int32 nIndex; public: EnumWrapper( const uno::Reference< container::XIndexAccess >& xIndexAccess, const uno::Reference& xParent, const uno::Reference& xContext, const uno::Reference& xModel ) : m_xIndexAccess( xIndexAccess ), m_xParent( xParent ), m_xContext( xContext ), m_xModel( xModel ), nIndex( 0 ) {} virtual sal_Bool SAL_CALL hasMoreElements( ) throw (uno::RuntimeException, std::exception) SAL_OVERRIDE { return ( nIndex < m_xIndexAccess->getCount() ); } virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) SAL_OVERRIDE { try { if ( nIndex < m_xIndexAccess->getCount() ) return lcl_createAPIStyleToVBAObject( m_xIndexAccess->getByIndex( nIndex++ ), m_xParent, m_xContext, m_xModel ); } catch (const container::NoSuchElementException&) { throw; } catch (const lang::WrappedTargetException&) { throw; } catch (const uno::RuntimeException&) { throw; } catch (const uno::Exception& e) { css::uno::Any a(cppu::getCaughtException()); throw css::lang::WrappedTargetException( "wrapped Exception " + e.Message, css::uno::Reference(), a); } throw container::NoSuchElementException(); } }; } uno::Reference< container::XEnumeration > SAL_CALL ScVbaStyles::createEnumeration() throw (uno::RuntimeException) { return new EnumWrapper( m_xIndexAccess, mxParent, mxContext, mxModel ); } uno::Reference< excel::XStyle > SAL_CALL ScVbaStyles::Add( const OUString& _sName, const uno::Any& _aBasedOn ) throw (script::BasicErrorException, uno::RuntimeException, std::exception) { uno::Reference< excel::XStyle > aRet; try { OUString sParentCellStyleName("Default"); if ( _aBasedOn.hasValue() ) { uno::Reference< excel::XRange > oRange; if ( _aBasedOn >>= oRange) { uno::Reference< excel::XStyle > oStyle( oRange->getStyle(), uno::UNO_QUERY_THROW ); if ( oStyle.is() ) { sParentCellStyleName = oStyle->getName(); } else { DebugHelper::basicexception(SbERR_BAD_ARGUMENT, OUString() ); } } else { DebugHelper::basicexception(SbERR_BAD_ARGUMENT, OUString()); } } uno::Reference< style::XStyle > xStyle( mxMSF->createInstance("com.sun.star.style.CellStyle"), uno::UNO_QUERY_THROW ); if (!mxNameContainerCellStyles->hasByName(_sName)) { mxNameContainerCellStyles->insertByName(_sName, uno::makeAny( xStyle) ); } if (sParentCellStyleName != "Default") { xStyle->setParentStyle( sParentCellStyleName ); } aRet.set( Item( uno::makeAny( _sName ), uno::Any() ), uno::UNO_QUERY_THROW ); } catch (const uno::Exception&) { DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString()); } return aRet; } void ScVbaStyles::Delete(const OUString& _sStyleName) throw ( script::BasicErrorException ) { try { if (mxNameContainerCellStyles->hasByName( _sStyleName ) ) mxNameContainerCellStyles->removeByName( _sStyleName ); } catch (const uno::Exception&) { DebugHelper::basicexception(SbERR_METHOD_FAILED, OUString()); } } OUString ScVbaStyles::getServiceImplName() { return OUString("ScVbaStyles"); } uno::Sequence< OUString > ScVbaStyles::getServiceNames() { static uno::Sequence< OUString > aServiceNames; if ( aServiceNames.getLength() == 0 ) { aServiceNames.realloc( 1 ); aServiceNames[ 0 ] = "ooo.vba.excel.XStyles"; } return aServiceNames; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */