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 :
25 : using namespace ::com::sun::star;
26 : using namespace ::ooo::vba;
27 :
28 0 : uno::Any DataPilotToPivotTable( const uno::Any& aSource, uno::Reference< uno::XComponentContext > & xContext )
29 : {
30 0 : uno::Reference< sheet::XDataPilotTable > xTable( aSource, uno::UNO_QUERY_THROW );
31 0 : return uno::makeAny( uno::Reference< excel::XPivotTable > ( new ScVbaPivotTable( xContext, xTable ) ) );
32 : }
33 :
34 0 : class PivotTableEnumeration : public EnumerationHelperImpl
35 : {
36 : public:
37 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 ) {}
38 :
39 0 : virtual uno::Any SAL_CALL nextElement( ) throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception) SAL_OVERRIDE
40 : {
41 0 : return DataPilotToPivotTable( m_xEnumeration->nextElement(), m_xContext );
42 : }
43 :
44 : };
45 :
46 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 )
47 : {
48 0 : }
49 :
50 : uno::Reference< container::XEnumeration >
51 0 : ScVbaPivotTables::createEnumeration() throw (uno::RuntimeException)
52 : {
53 0 : uno::Reference< container::XEnumerationAccess > xEnumAccess( m_xIndexAccess, uno::UNO_QUERY_THROW );
54 0 : return new PivotTableEnumeration( mxParent, mxContext, xEnumAccess->createEnumeration() );
55 : }
56 :
57 : uno::Any
58 0 : ScVbaPivotTables::createCollectionObject( const css::uno::Any& aSource )
59 : {
60 0 : return DataPilotToPivotTable( aSource, mxContext );
61 : }
62 :
63 : uno::Type
64 0 : ScVbaPivotTables::getElementType() throw (uno::RuntimeException)
65 : {
66 0 : return cppu::UnoType<excel::XPivotTable>::get();
67 : }
68 :
69 : OUString
70 0 : ScVbaPivotTables::getServiceImplName()
71 : {
72 0 : return OUString("ScVbaPivotTables");
73 : }
74 :
75 : css::uno::Sequence<OUString>
76 0 : ScVbaPivotTables::getServiceNames()
77 : {
78 0 : static uno::Sequence< OUString > sNames;
79 0 : if ( sNames.getLength() == 0 )
80 : {
81 0 : sNames.realloc( 1 );
82 0 : sNames[0] = "ooo.vba.excel.PivotTables";
83 : }
84 0 : return sNames;
85 : }
86 :
87 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|