fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / vba / vbapivottables.cxx
blob8be41a0f66f26f5d25d51aa8b38e3ec6072c9439
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>
24 using namespace ::com::sun::star;
25 using namespace ::ooo::vba;
27 uno::Any DataPilotToPivotTable( const uno::Any& aSource, uno::Reference< uno::XComponentContext > & xContext )
29 uno::Reference< sheet::XDataPilotTable > xTable( aSource, uno::UNO_QUERY_THROW );
30 return uno::makeAny( uno::Reference< excel::XPivotTable > ( new ScVbaPivotTable( xContext, xTable ) ) );
33 class PivotTableEnumeration : public EnumerationHelperImpl
35 public:
36 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 ) {}
38 virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) SAL_OVERRIDE
40 return DataPilotToPivotTable( m_xEnumeration->nextElement(), m_xContext );
45 ScVbaPivotTables::ScVbaPivotTables( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext > & xContext, const uno::Reference< container::XIndexAccess >& xIndexAccess ): ScVbaPivotTables_BASE( xParent, xContext, xIndexAccess )
49 uno::Reference< container::XEnumeration >
50 ScVbaPivotTables::createEnumeration() throw (uno::RuntimeException)
52 uno::Reference< container::XEnumerationAccess > xEnumAccess( m_xIndexAccess, uno::UNO_QUERY_THROW );
53 return new PivotTableEnumeration( mxParent, mxContext, xEnumAccess->createEnumeration() );
56 uno::Any
57 ScVbaPivotTables::createCollectionObject( const css::uno::Any& aSource )
59 return DataPilotToPivotTable( aSource, mxContext );
62 uno::Type
63 ScVbaPivotTables::getElementType() throw (uno::RuntimeException)
65 return cppu::UnoType<excel::XPivotTable>::get();
68 OUString
69 ScVbaPivotTables::getServiceImplName()
71 return OUString("ScVbaPivotTables");
74 css::uno::Sequence<OUString>
75 ScVbaPivotTables::getServiceNames()
77 static uno::Sequence< OUString > sNames;
78 if ( sNames.getLength() == 0 )
80 sNames.realloc( 1 );
81 sNames[0] = "ooo.vba.excel.PivotTables";
83 return sNames;
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */