1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <ooo/vba/excel/XChartObjects.hpp>
23 #include <vbahelper/vbacollectionimpl.hxx>
25 namespace com::sun::star::container
{ class XEnumeration
; }
26 namespace com::sun::star::drawing
{ class XDrawPageSupplier
; }
27 namespace com::sun::star::table
{ class XTableCharts
; }
28 namespace com::sun::star::uno
{ class XComponentContext
; }
30 typedef CollTestImplHelper
< ov::excel::XChartObjects
> ChartObjects_BASE
;
32 class ScVbaChartObjects
: public ChartObjects_BASE
35 css::uno::Reference
< css::table::XTableCharts
> xTableCharts
;
36 css::uno::Reference
< css::drawing::XDrawPageSupplier
> xDrawPageSupplier
;
37 // method associated with populating the hashmap ( I'm not convinced this is necessary )
38 //css::uno::Reference< ov::excel::XChartObject > putByPersistName( const rtl:::OUString& _sPersistChartName );
40 ScVbaChartObjects( const css::uno::Reference
< ov::XHelperInterface
>& _xParent
, const css::uno::Reference
< css::uno::XComponentContext
>& _xContext
, const css::uno::Reference
< css::table::XTableCharts
>& _xTableCharts
, css::uno::Reference
< css::drawing::XDrawPageSupplier
> _xDrawPageSupplier
);
42 /// @throws css::script::BasicErrorException
43 css::uno::Sequence
< OUString
> getChartObjectNames() const;
44 void removeByName(const OUString
& _sChartName
);
47 virtual css::uno::Any SAL_CALL
Add( double Left
, double Top
, double Width
, double Height
) override
;
48 virtual void SAL_CALL
Delete( ) override
;
50 virtual css::uno::Reference
< css::container::XEnumeration
> SAL_CALL
createEnumeration() override
;
52 virtual css::uno::Type SAL_CALL
getElementType() override
;
53 // ScVbaCollectionBaseImpl
54 virtual css::uno::Any
createCollectionObject( const css::uno::Any
& aSource
) override
;
56 virtual OUString
getServiceImplName() override
;
57 virtual css::uno::Sequence
<OUString
> getServiceNames() override
;
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */