Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #include "vbapivottables.hxx"
20 : #include "vbapivottable.hxx"
21 : #include <com/sun/star/sheet/XDataPilotTable.hpp>
22 : #include <ooo/vba/excel/XPivotTable.hpp>
23 :
24 : using namespace ::com::sun::star;
25 : using namespace ::ooo::vba;
26 :
27 0 : uno::Any DataPilotToPivotTable( const uno::Any& aSource, uno::Reference< uno::XComponentContext > & xContext )
28 : {
29 0 : uno::Reference< sheet::XDataPilotTable > xTable( aSource, uno::UNO_QUERY_THROW );
30 0 : return uno::makeAny( uno::Reference< excel::XPivotTable > ( new ScVbaPivotTable( xContext, xTable ) ) );
31 : }
32 :
33 0 : class PivotTableEnumeration : public EnumerationHelperImpl
34 : {
35 : public:
36 0 : 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 ) {}
37 :
38 0 : virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) SAL_OVERRIDE
39 : {
40 0 : return DataPilotToPivotTable( m_xEnumeration->nextElement(), m_xContext );
41 : }
42 :
43 : };
44 :
45 0 : ScVbaPivotTables::ScVbaPivotTables( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext > & xContext, const uno::Reference< container::XIndexAccess >& xIndexAccess ): ScVbaPivotTables_BASE( xParent, xContext, xIndexAccess )
46 : {
47 0 : }
48 :
49 : uno::Reference< container::XEnumeration >
50 0 : ScVbaPivotTables::createEnumeration() throw (uno::RuntimeException)
51 : {
52 0 : uno::Reference< container::XEnumerationAccess > xEnumAccess( m_xIndexAccess, uno::UNO_QUERY_THROW );
53 0 : return new PivotTableEnumeration( mxParent, mxContext, xEnumAccess->createEnumeration() );
54 : }
55 :
56 : uno::Any
57 0 : ScVbaPivotTables::createCollectionObject( const css::uno::Any& aSource )
58 : {
59 0 : return DataPilotToPivotTable( aSource, mxContext );
60 : }
61 :
62 : uno::Type
63 0 : ScVbaPivotTables::getElementType() throw (uno::RuntimeException)
64 : {
65 0 : return cppu::UnoType<excel::XPivotTable>::get();
66 : }
67 :
68 : OUString
69 0 : ScVbaPivotTables::getServiceImplName()
70 : {
71 0 : return OUString("ScVbaPivotTables");
72 : }
73 :
74 : css::uno::Sequence<OUString>
75 0 : ScVbaPivotTables::getServiceNames()
76 : {
77 0 : static uno::Sequence< OUString > sNames;
78 0 : if ( sNames.getLength() == 0 )
79 : {
80 0 : sNames.realloc( 1 );
81 0 : sNames[0] = "ooo.vba.excel.PivotTables";
82 : }
83 0 : return sNames;
84 9 : }
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|