LibreOffice Module sc (master) 1
chartuno.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 "rangelst.hxx"
23#include <rtl/ref.hxx>
24#include <svl/lstner.hxx>
27
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>
38
39class ScDocShell;
40class ScChartObj;
41
42class ScChartsObj final : public cppu::WeakImplHelper<
43 css::table::XTableCharts,
44 css::container::XEnumerationAccess,
45 css::container::XIndexAccess,
46 css::lang::XServiceInfo >,
47 public SfxListener
48{
49private:
51 SCTAB nTab; // Charts are per sheet
52
54 rtl::Reference<ScChartObj> GetObjectByName_Impl(const OUString& aName) const;
55
56public:
57 ScChartsObj(ScDocShell* pDocSh, SCTAB nT);
58 virtual ~ScChartsObj() override;
59
60 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
61
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;
68
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;
73
74 // XIndexAccess
75 virtual sal_Int32 SAL_CALL getCount() override;
76 virtual css::uno::Any SAL_CALL getByIndex( sal_Int32 Index ) override;
77
78 // XEnumerationAccess
79 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL
80 createEnumeration() override;
81
82 // XElementAccess
83 virtual css::uno::Type SAL_CALL getElementType() override;
84 virtual sal_Bool SAL_CALL hasElements() override;
85
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;
90};
91
92typedef ::cppu::WeakComponentImplHelper<
93 css::table::XTableChart,
94 css::document::XEmbeddedObjectSupplier,
95 css::container::XNamed,
96 css::lang::XServiceInfo > ScChartObj_Base;
97
99typedef ::comphelper::OPropertyArrayUsageHelper< ScChartObj > ScChartObj_PABase;
100
101class ScChartObj final : public ::cppu::BaseMutex
102 ,public ScChartObj_Base
103 ,public ScChartObj_PBase
104 ,public ScChartObj_PABase
105 ,public SfxListener
106{
107private:
109 SCTAB nTab; // Charts are per sheet
110 OUString aChartName;
111
112 void Update_Impl( const ScRangeListRef& rRanges, bool bColHeaders, bool bRowHeaders );
113 void GetData_Impl( ScRangeListRef& rRanges, bool& rColHeaders, bool& rRowHeaders ) const;
114
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;
120
121 // ::comphelper::OPropertyArrayUsageHelper
122 virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const override;
123
124public:
125 ScChartObj(ScDocShell* pDocSh, SCTAB nT, OUString aN);
126 virtual ~ScChartObj() override;
127
128 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
129
130 // XInterface
132
133 // XTypeProvider
134 DECLARE_XTYPEPROVIDER()
135
136 // XComponent
137 using ScChartObj_Base::disposing;
138
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;
147
148 // XEmbeddedObjectSupplier
149 virtual css::uno::Reference< css::lang::XComponent > SAL_CALL
150 getEmbeddedObject() override;
151
152 // XNamed
153 virtual OUString SAL_CALL getName() override;
154 virtual void SAL_CALL setName( const OUString& aName ) override;
155
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;
160
161 // XPropertySet
162 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
163};
164
165/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
struct _ADOIndex Index
::comphelper::OPropertyContainer ScChartObj_PBase
Definition: chartuno.hxx:98
::cppu::WeakComponentImplHelper< css::table::XTableChart, css::document::XEmbeddedObjectSupplier, css::container::XNamed, css::lang::XServiceInfo > ScChartObj_Base
Definition: chartuno.hxx:96
::comphelper::OPropertyArrayUsageHelper< ScChartObj > ScChartObj_PABase
Definition: chartuno.hxx:99
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any &rValue) override
Definition: chartuno.cxx:522
void GetData_Impl(ScRangeListRef &rRanges, bool &rColHeaders, bool &rRowHeaders) const
Definition: chartuno.cxx:441
virtual void SAL_CALL setHasRowHeaders(sal_Bool bHasRowHeaders) override
Definition: chartuno.cxx:641
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: chartuno.cxx:734
virtual css::uno::Sequence< css::table::CellRangeAddress > SAL_CALL getRanges() override
Definition: chartuno.cxx:651
OUString aChartName
Definition: chartuno.hxx:110
virtual void SAL_CALL setName(const OUString &aName) override
Definition: chartuno.cxx:727
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
void Update_Impl(const ScRangeListRef &rRanges, bool bColHeaders, bool bRowHeaders)
Definition: chartuno.cxx:499
virtual sal_Bool SAL_CALL getHasColumnHeaders() override
Definition: chartuno.cxx:613
virtual css::uno::Reference< css::lang::XComponent > SAL_CALL getEmbeddedObject() override
Definition: chartuno.cxx:705
ScDocShell * pDocShell
Definition: chartuno.hxx:108
ScChartObj(ScDocShell *pDocSh, SCTAB nT, OUString aN)
Definition: chartuno.cxx:408
virtual sal_Bool SAL_CALL getHasRowHeaders() override
Definition: chartuno.cxx:632
virtual OUString SAL_CALL getName() override
Definition: chartuno.cxx:721
virtual ::cppu::IPropertyArrayHelper &SAL_CALL getInfoHelper() override
Definition: chartuno.cxx:517
virtual void SAL_CALL setRanges(const css::uno::Sequence< css::table::CellRangeAddress > &aRanges) override
Definition: chartuno.cxx:683
SCTAB nTab
Definition: chartuno.hxx:109
virtual ~ScChartObj() override
Definition: chartuno.cxx:423
virtual ::cppu::IPropertyArrayHelper * createArrayHelper() const override
Definition: chartuno.cxx:596
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
virtual OUString SAL_CALL getImplementationName() override
virtual void SAL_CALL getFastPropertyValue(css::uno::Any &rValue, sal_Int32 nHandle) const override
Definition: chartuno.cxx:554
virtual void Notify(SfxBroadcaster &rBC, const SfxHint &rHint) override
Definition: chartuno.cxx:431
virtual void SAL_CALL setHasColumnHeaders(sal_Bool bHasColumnHeaders) override
Definition: chartuno.cxx:622
SCTAB nTab
Definition: chartuno.hxx:51
rtl::Reference< ScChartObj > GetObjectByName_Impl(const OUString &aName) const
Definition: chartuno.cxx:127
virtual void SAL_CALL removeByName(const OUString &aName) override
Definition: chartuno.cxx:269
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override
Definition: chartuno.cxx:289
virtual sal_Bool SAL_CALL hasByName(const OUString &aName) override
Definition: chartuno.cxx:400
rtl::Reference< ScChartObj > GetObjectByIndex_Impl(tools::Long nIndex) const
Definition: chartuno.cxx:85
virtual sal_Bool SAL_CALL hasElements() override
Definition: chartuno.cxx:340
ScChartsObj(ScDocShell *pDocSh, SCTAB nT)
Definition: chartuno.cxx:60
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
virtual css::uno::Any SAL_CALL getByName(const OUString &aName) override
Definition: chartuno.cxx:346
virtual void SAL_CALL addNewByName(const OUString &aName, const css::awt::Rectangle &aRect, const css::uno::Sequence< css::table::CellRangeAddress > &aRanges, sal_Bool bColumnHeaders, sal_Bool bRowHeaders) override
Definition: chartuno.cxx:138
virtual ~ScChartsObj() override
Definition: chartuno.cxx:67
virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() override
Definition: chartuno.cxx:356
virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 Index) override
Definition: chartuno.cxx:325
virtual sal_Int32 SAL_CALL getCount() override
Definition: chartuno.cxx:297
virtual void Notify(SfxBroadcaster &rBC, const SfxHint &rHint) override
Definition: chartuno.cxx:75
ScDocShell * pDocShell
Definition: chartuno.hxx:50
virtual css::uno::Type SAL_CALL getElementType() override
Definition: chartuno.cxx:335
virtual OUString SAL_CALL getImplementationName() override
long Long
unsigned char sal_Bool
sal_Int16 SCTAB
Definition: types.hxx:22
#define DECLARE_XINTERFACE()