tdf#125800: accessing cond format props in UNO throws error
[LibreOffice.git] / sc / inc / chartuno.hxx
blob3e40ead05d400484f68e1259d28e76ef8f5d709f
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 #ifndef INCLUDED_SC_INC_CHARTUNO_HXX
21 #define INCLUDED_SC_INC_CHARTUNO_HXX
23 #include "rangelst.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 : 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 const nTab; // Charts are per sheet
53 ScChartObj* GetObjectByIndex_Impl(long nIndex) const;
54 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 : 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 const nTab; // Charts are per sheet
110 OUString const aChartName;
112 void Update_Impl( const ScRangeListRef& rRanges, bool bColHeaders, bool bRowHeaders );
113 void GetData_Impl( ScRangeListRef& rRanges, bool& rColHeaders, bool& rRowHeaders ) const;
115 protected:
116 // ::comphelper::OPropertySetHelper
117 virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() override;
118 virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const css::uno::Any& rValue ) override;
119 using ::cppu::OPropertySetHelper::getFastPropertyValue;
120 virtual void SAL_CALL getFastPropertyValue( css::uno::Any& rValue, sal_Int32 nHandle ) const override;
122 // ::comphelper::OPropertyArrayUsageHelper
123 virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const override;
125 public:
126 ScChartObj(ScDocShell* pDocSh, SCTAB nT, const OUString& rN);
127 virtual ~ScChartObj() override;
129 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
131 // XInterface
132 DECLARE_XINTERFACE()
134 // XTypeProvider
135 DECLARE_XTYPEPROVIDER()
137 // XComponent
138 using ScChartObj_Base::disposing;
140 // XTableChart
141 virtual sal_Bool SAL_CALL getHasColumnHeaders() override;
142 virtual void SAL_CALL setHasColumnHeaders( sal_Bool bHasColumnHeaders ) override;
143 virtual sal_Bool SAL_CALL getHasRowHeaders() override;
144 virtual void SAL_CALL setHasRowHeaders( sal_Bool bHasRowHeaders ) override;
145 virtual css::uno::Sequence< css::table::CellRangeAddress > SAL_CALL
146 getRanges( ) override;
147 virtual void SAL_CALL setRanges( const css::uno::Sequence< css::table::CellRangeAddress >& aRanges ) override;
149 // XEmbeddedObjectSupplier
150 virtual css::uno::Reference< css::lang::XComponent > SAL_CALL
151 getEmbeddedObject() override;
153 // XNamed
154 virtual OUString SAL_CALL getName() override;
155 virtual void SAL_CALL setName( const OUString& aName ) override;
157 // XServiceInfo
158 virtual OUString SAL_CALL getImplementationName() override;
159 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
160 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
162 // XPropertySet
163 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
166 #endif
168 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */