Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / inc / chartuno.hxx
blob8eba30e630f5509dd2f4a5c4fdf6325908128889
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 .
20 #pragma once
22 #include "rangelst.hxx"
23 #include <rtl/ref.hxx>
24 #include <svl/lstner.hxx>
25 #include <comphelper/proparrhlp.hxx>
26 #include <comphelper/propertycontainer.hxx>
28 #include <com/sun/star/table/XTableChart.hpp>
29 #include <com/sun/star/table/XTableCharts.hpp>
30 #include <com/sun/star/document/XEmbeddedObjectSupplier.hpp>
31 #include <com/sun/star/lang/XServiceInfo.hpp>
32 #include <com/sun/star/container/XEnumerationAccess.hpp>
33 #include <com/sun/star/container/XIndexAccess.hpp>
34 #include <com/sun/star/container/XNamed.hpp>
35 #include <cppuhelper/basemutex.hxx>
36 #include <cppuhelper/compbase.hxx>
37 #include <cppuhelper/implbase.hxx>
39 class ScDocShell;
40 class ScChartObj;
42 class ScChartsObj final : public cppu::WeakImplHelper<
43 css::table::XTableCharts,
44 css::container::XEnumerationAccess,
45 css::container::XIndexAccess,
46 css::lang::XServiceInfo >,
47 public SfxListener
49 private:
50 ScDocShell* pDocShell;
51 SCTAB nTab; // Charts are per sheet
53 rtl::Reference<ScChartObj> GetObjectByIndex_Impl(tools::Long nIndex) const;
54 rtl::Reference<ScChartObj> GetObjectByName_Impl(const OUString& aName) const;
56 public:
57 ScChartsObj(ScDocShell* pDocSh, SCTAB nT);
58 virtual ~ScChartsObj() override;
60 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
62 // XTableCharts
63 virtual void SAL_CALL addNewByName( const OUString& aName,
64 const css::awt::Rectangle& aRect,
65 const css::uno::Sequence< css::table::CellRangeAddress >& aRanges,
66 sal_Bool bColumnHeaders, sal_Bool bRowHeaders ) override;
67 virtual void SAL_CALL removeByName( const OUString& aName ) override;
69 // XNameAccess
70 virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override;
71 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override;
72 virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
74 // XIndexAccess
75 virtual sal_Int32 SAL_CALL getCount() override;
76 virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) override;
78 // XEnumerationAccess
79 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
80 createEnumeration() override;
82 // XElementAccess
83 virtual css::uno::Type SAL_CALL getElementType() override;
84 virtual sal_Bool SAL_CALL hasElements() override;
86 // XServiceInfo
87 virtual OUString SAL_CALL getImplementationName() override;
88 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
89 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
92 typedef ::cppu::WeakComponentImplHelper<
93 css::table::XTableChart,
94 css::document::XEmbeddedObjectSupplier,
95 css::container::XNamed,
96 css::lang::XServiceInfo > ScChartObj_Base;
98 typedef ::comphelper::OPropertyContainer ScChartObj_PBase;
99 typedef ::comphelper::OPropertyArrayUsageHelper< ScChartObj > ScChartObj_PABase;
101 class ScChartObj final : public ::cppu::BaseMutex
102 ,public ScChartObj_Base
103 ,public ScChartObj_PBase
104 ,public ScChartObj_PABase
105 ,public SfxListener
107 private:
108 ScDocShell* pDocShell;
109 SCTAB nTab; // Charts are per sheet
110 OUString aChartName;
112 void Update_Impl( const ScRangeListRef& rRanges, bool bColHeaders, bool bRowHeaders );
113 void GetData_Impl( ScRangeListRef& rRanges, bool& rColHeaders, bool& rRowHeaders ) const;
115 // ::comphelper::OPropertySetHelper
116 virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() override;
117 virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& rValue ) override;
118 using ::cppu::OPropertySetHelper::getFastPropertyValue;
119 virtual void SAL_CALL getFastPropertyValue( css::uno::Any& rValue, sal_Int32 nHandle ) const override;
121 // ::comphelper::OPropertyArrayUsageHelper
122 virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const override;
124 public:
125 ScChartObj(ScDocShell* pDocSh, SCTAB nT, OUString aN);
126 virtual ~ScChartObj() override;
128 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
130 // XInterface
131 DECLARE_XINTERFACE()
133 // XTypeProvider
134 DECLARE_XTYPEPROVIDER()
136 // XComponent
137 using ScChartObj_Base::disposing;
139 // XTableChart
140 virtual sal_Bool SAL_CALL getHasColumnHeaders() override;
141 virtual void SAL_CALL setHasColumnHeaders( sal_Bool bHasColumnHeaders ) override;
142 virtual sal_Bool SAL_CALL getHasRowHeaders() override;
143 virtual void SAL_CALL setHasRowHeaders( sal_Bool bHasRowHeaders ) override;
144 virtual css::uno::Sequence< css::table::CellRangeAddress > SAL_CALL
145 getRanges( ) override;
146 virtual void SAL_CALL setRanges( const css::uno::Sequence< css::table::CellRangeAddress >& aRanges ) override;
148 // XEmbeddedObjectSupplier
149 virtual css::uno::Reference< css::lang::XComponent > SAL_CALL
150 getEmbeddedObject() override;
152 // XNamed
153 virtual OUString SAL_CALL getName() override;
154 virtual void SAL_CALL setName( const OUString& aName ) override;
156 // XServiceInfo
157 virtual OUString SAL_CALL getImplementationName() override;
158 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
159 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
161 // XPropertySet
162 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
165 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */