bump product version to 4.1.6.2
[LibreOffice.git] / sc / source / ui / vba / vbapivottables.cxx
blobe013c1a8ad3bbef6733fc913f93661c64db3434b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #include "vbapivottables.hxx"
20 #include "vbapivottable.hxx"
21 #include <com/sun/star/sheet/XDataPilotTable.hpp>
22 #include <ooo/vba/excel/XPivotTable.hpp>
25 using namespace ::com::sun::star;
26 using namespace ::ooo::vba;
28 uno::Any DataPilotToPivotTable( const uno::Any& aSource, uno::Reference< uno::XComponentContext > & xContext )
30 uno::Reference< sheet::XDataPilotTable > xTable( aSource, uno::UNO_QUERY_THROW );
31 return uno::makeAny( uno::Reference< excel::XPivotTable > ( new ScVbaPivotTable( xContext, xTable ) ) );
34 class PivotTableEnumeration : public EnumerationHelperImpl
36 public:
37 PivotTableEnumeration( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext, const uno::Reference< container::XEnumeration >& xEnumeration ) throw ( uno::RuntimeException ) : EnumerationHelperImpl( xParent, xContext, xEnumeration ) {}
39 virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException)
41 return DataPilotToPivotTable( m_xEnumeration->nextElement(), m_xContext );
46 ScVbaPivotTables::ScVbaPivotTables( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext > & xContext, const uno::Reference< container::XIndexAccess >& xIndexAccess ): ScVbaPivotTables_BASE( xParent, xContext, xIndexAccess )
50 uno::Reference< container::XEnumeration >
51 ScVbaPivotTables::createEnumeration() throw (uno::RuntimeException)
53 uno::Reference< container::XEnumerationAccess > xEnumAccess( m_xIndexAccess, uno::UNO_QUERY_THROW );
54 return new PivotTableEnumeration( mxParent, mxContext, xEnumAccess->createEnumeration() );
57 uno::Any
58 ScVbaPivotTables::createCollectionObject( const css::uno::Any& aSource )
60 return DataPilotToPivotTable( aSource, mxContext );
63 uno::Type
64 ScVbaPivotTables::getElementType() throw (uno::RuntimeException)
66 return excel::XPivotTable::static_type(0);
69 OUString
70 ScVbaPivotTables::getServiceImplName()
72 return OUString("ScVbaPivotTables");
75 css::uno::Sequence<OUString>
76 ScVbaPivotTables::getServiceNames()
78 static uno::Sequence< OUString > sNames;
79 if ( sNames.getLength() == 0 )
81 sNames.realloc( 1 );
82 sNames[0] = OUString("ooo.vba.excel.PivotTables");
84 return sNames;
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */