LibreOffice Module sc (master) 1
vbachartobjects.hxx
Go to the documentation of this file.
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
20#pragma once
21
22#include <ooo/vba/excel/XChartObjects.hpp>
24
25namespace com::sun::star::container { class XEnumeration; }
26namespace com::sun::star::drawing { class XDrawPageSupplier; }
27namespace com::sun::star::table { class XTableCharts; }
28namespace com::sun::star::uno { class XComponentContext; }
29
31
33{
34
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 );
39public:
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 );
41
43 css::uno::Sequence< OUString > getChartObjectNames() const;
44 void removeByName(const OUString& _sChartName);
45
46 // XChartObjects
47 virtual css::uno::Any SAL_CALL Add( double Left, double Top, double Width, double Height ) override;
48 virtual void SAL_CALL Delete( ) override;
49 // XEnumerationAccess
50 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
51 // XElementAccess
52 virtual css::uno::Type SAL_CALL getElementType() override;
53 // ScVbaCollectionBaseImpl
54 virtual css::uno::Any createCollectionObject( const css::uno::Any& aSource ) override;
55 // ChartObjects_BASE
56 virtual OUString getServiceImplName() override;
57 virtual css::uno::Sequence<OUString> getServiceNames() override;
58};
59
60/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
css::uno::Reference< css::table::XTableCharts > xTableCharts
virtual OUString getServiceImplName() override
void removeByName(const OUString &_sChartName)
css::uno::Sequence< OUString > getChartObjectNames() const
virtual void SAL_CALL Delete() override
css::uno::Reference< css::drawing::XDrawPageSupplier > xDrawPageSupplier
virtual css::uno::Any createCollectionObject(const css::uno::Any &aSource) override
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)
virtual css::uno::Type SAL_CALL getElementType() override
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override
virtual css::uno::Sequence< OUString > getServiceNames() override
virtual css::uno::Any SAL_CALL Add(double Left, double Top, double Width, double Height) override
CollTestImplHelper< ov::excel::XChartObjects > ChartObjects_BASE