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 <com/sun/star/sheet/XDimensionsSupplier.hpp>
23 #include <com/sun/star/sheet/XHierarchiesSupplier.hpp>
24 #include <com/sun/star/sheet/XLevelsSupplier.hpp>
25 #include <com/sun/star/sheet/XMembersSupplier.hpp>
26 #include <com/sun/star/sheet/XDataPilotResults.hpp>
27 #include <com/sun/star/sheet/XDataPilotMemberResults.hpp>
28 #include <com/sun/star/sheet/DataPilotFieldAutoShowInfo.hpp>
29 #include <com/sun/star/sheet/DataPilotFieldLayoutInfo.hpp>
30 #include <com/sun/star/sheet/DataPilotFieldLayoutMode.hpp>
31 #include <com/sun/star/sheet/DataPilotFieldReference.hpp>
32 #include <com/sun/star/sheet/DataPilotFieldSortInfo.hpp>
33 #include <com/sun/star/sheet/DataPilotFieldOrientation.hpp>
34 #include <com/sun/star/util/XRefreshable.hpp>
35 #include <com/sun/star/sheet/XDrillDownDataSupplier.hpp>
36 #include <com/sun/star/util/XCloneable.hpp>
37 #include <com/sun/star/beans/XPropertySet.hpp>
38 #include <com/sun/star/lang/XServiceInfo.hpp>
39 #include <com/sun/star/container/XNamed.hpp>
40 #include <cppuhelper/implbase.hxx>
41 #include <rtl/ref.hxx>
43 #include "dptabdat.hxx"
44 #include "dpresfilter.hxx"
47 #include <unordered_map>
48 #include <unordered_set>
52 namespace com::sun::star
{
54 struct DataPilotFieldFilter
;
59 class ScDPResultMember
;
64 class ScDPHierarchies
;
70 enum class ScGeneralFunction
;
72 // implementation of DataPilotSource using ScDPTableData
74 class ScDPSource final
: public cppu::WeakImplHelper
<
75 css::sheet::XDimensionsSupplier
,
76 css::sheet::XDataPilotResults
,
77 css::util::XRefreshable
,
78 css::sheet::XDrillDownDataSupplier
,
79 css::beans::XPropertySet
,
80 css::lang::XServiceInfo
>
83 ScDPTableData
* pData
; // data source (ScDPObject manages its life time)
84 rtl::Reference
<ScDPDimensions
> pDimensions
; // api objects
87 std::vector
<sal_Int32
> maColDims
;
88 std::vector
<sal_Int32
> maRowDims
;
89 std::vector
<sal_Int32
> maDataDims
;
90 std::vector
<sal_Int32
> maPageDims
;
91 ScDPResultTree maResFilterSet
;
95 bool bIgnoreEmptyRows
;
101 std::unique_ptr
<ScDPResultData
> pResData
; // keep the rest in this!
102 std::unique_ptr
<ScDPResultMember
> pColResRoot
;
103 std::unique_ptr
<ScDPResultMember
> pRowResRoot
;
104 std::unique_ptr
<css::uno::Sequence
<css::sheet::MemberResult
>[]> pColResults
;
105 std::unique_ptr
<css::uno::Sequence
<css::sheet::MemberResult
>[]> pRowResults
;
106 std::vector
<ScDPLevel
*> aColLevelList
;
107 std::vector
<ScDPLevel
*> aRowLevelList
;
108 bool bResultOverflow
;
109 bool bPageFiltered
; // set if page field filters have been applied to cache table
111 std::optional
<OUString
> mpGrandTotalName
;
113 void CreateRes_Impl();
114 void FillMemberResults();
115 void FillLevelList( css::sheet::DataPilotFieldOrientation nOrientation
, std::vector
<ScDPLevel
*> &rList
);
116 void FillCalcInfo(bool bIsRow
, ScDPTableData::CalcInfo
& rInfo
, bool &bHasAutoShow
);
119 * Compile a list of dimension indices that are either, column, row or
120 * page dimensions (i.e. all but data dimensions).
122 void GetCategoryDimensionIndices(std::unordered_set
<sal_Int32
>& rCatDims
);
125 * Set visibilities of individual rows in the cache table based on the
128 void FilterCacheByPageDimensions();
130 void SetDupCount( tools::Long nNew
);
132 OUString
getDataDescription(); //! ???
134 void setIgnoreEmptyRows(bool bSet
);
135 void setRepeatIfEmpty(bool bSet
);
140 ScDPSource( ScDPTableData
* pD
);
141 virtual ~ScDPSource() override
;
143 ScDPTableData
* GetData() { return pData
; }
144 const ScDPTableData
* GetData() const { return pData
; }
146 const std::optional
<OUString
> &
147 GetGrandTotalName() const;
149 css::sheet::DataPilotFieldOrientation
150 GetOrientation(sal_Int32 nColumn
);
151 void SetOrientation(sal_Int32 nColumn
, css::sheet::DataPilotFieldOrientation nNew
);
152 sal_Int32
GetPosition(sal_Int32 nColumn
);
154 sal_Int32
GetDataDimensionCount() const;
155 ScDPDimension
* GetDataDimension(sal_Int32 nIndex
);
156 OUString
GetDataDimName(sal_Int32 nIndex
);
157 const ScDPCache
* GetCache();
158 const ScDPItemData
* GetItemDataById( sal_Int32 nDim
, sal_Int32 nId
);
159 bool IsDataLayoutDimension(sal_Int32 nDim
);
160 css::sheet::DataPilotFieldOrientation
161 GetDataLayoutOrientation();
163 bool IsDateDimension(sal_Int32 nDim
);
165 bool SubTotalAllowed(sal_Int32 nColumn
); //! move to ScDPResultData
167 ScDPDimension
* AddDuplicated(std::u16string_view rNewName
);
168 sal_Int32
GetDupCount() const { return nDupCount
; }
170 sal_Int32
GetSourceDim(sal_Int32 nDim
);
172 const css::uno::Sequence
<css::sheet::MemberResult
>*
173 GetMemberResults( const ScDPLevel
* pLevel
);
175 ScDPDimensions
* GetDimensionsObject();
177 // XDimensionsSupplier
178 virtual css::uno::Reference
< css::container::XNameAccess
>
179 SAL_CALL
getDimensions( ) override
;
182 virtual css::uno::Sequence
< css::uno::Sequence
< css::sheet::DataResult
> > SAL_CALL
getResults( ) override
;
184 virtual css::uno::Sequence
<double> SAL_CALL
186 const css::uno::Sequence
<css::sheet::DataPilotFieldFilter
>& aFilters
) override
;
189 virtual void SAL_CALL
refresh() override
;
190 virtual void SAL_CALL
addRefreshListener( const css::uno::Reference
< css::util::XRefreshListener
>& l
) override
;
191 virtual void SAL_CALL
removeRefreshListener( const css::uno::Reference
< css::util::XRefreshListener
>& l
) override
;
193 // XDrillDownDataSupplier
194 virtual css::uno::Sequence
< css::uno::Sequence
< css::uno::Any
> >
195 SAL_CALL
getDrillDownData(const css::uno::Sequence
<
196 css::sheet::DataPilotFieldFilter
>& aFilters
) override
;
199 virtual css::uno::Reference
< css::beans::XPropertySetInfo
>
200 SAL_CALL
getPropertySetInfo( ) override
;
201 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
,
202 const css::uno::Any
& aValue
) override
;
203 virtual css::uno::Any SAL_CALL
getPropertyValue(
204 const OUString
& PropertyName
) override
;
205 virtual void SAL_CALL
addPropertyChangeListener( const OUString
& aPropertyName
,
206 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& xListener
) override
;
207 virtual void SAL_CALL
removePropertyChangeListener( const OUString
& aPropertyName
,
208 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& aListener
) override
;
209 virtual void SAL_CALL
addVetoableChangeListener( const OUString
& PropertyName
,
210 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
211 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
,
212 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
215 virtual OUString SAL_CALL
getImplementationName( ) override
;
216 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
217 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
220 void DumpResults() const;
224 class ScDPDimensions final
: public cppu::WeakImplHelper
<
225 css::container::XNameAccess
,
226 css::lang::XServiceInfo
>
231 std::unique_ptr
<rtl::Reference
<ScDPDimension
>[]>
235 ScDPDimensions( ScDPSource
* pSrc
);
236 virtual ~ScDPDimensions() override
;
241 virtual css::uno::Any SAL_CALL
getByName( const OUString
& aName
) override
;
242 virtual css::uno::Sequence
< OUString
> SAL_CALL
getElementNames() override
;
243 virtual sal_Bool SAL_CALL
hasByName( const OUString
& aName
) override
;
246 virtual css::uno::Type SAL_CALL
getElementType() override
;
247 virtual sal_Bool SAL_CALL
hasElements() override
;
250 virtual OUString SAL_CALL
getImplementationName( ) override
;
251 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
252 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
254 tools::Long
getCount() const;
255 ScDPDimension
* getByIndex(tools::Long nIndex
) const;
258 class ScDPDimension final
: public cppu::WeakImplHelper
<
259 css::sheet::XHierarchiesSupplier
,
260 css::container::XNamed
,
261 css::util::XCloneable
,
262 css::beans::XPropertySet
,
263 css::lang::XServiceInfo
>
266 sal_Int32 nDim
; // dimension index (== column ID)
267 rtl::Reference
<ScDPHierarchies
> mxHierarchies
;
268 ScGeneralFunction nFunction
;
269 OUString aName
; // if empty, take from source
270 std::optional
<OUString
> mpLayoutName
;
271 std::optional
<OUString
> mpSubtotalName
;
272 sal_Int32 nSourceDim
; // >=0 if dup'ed
273 css::sheet::DataPilotFieldReference
274 aReferenceValue
; // settings for "show data as" / "displayed value"
275 bool bHasSelectedPage
;
276 OUString aSelectedPage
;
277 std::unique_ptr
<ScDPItemData
>
278 pSelectedData
; // internal, temporary, created from aSelectedPage
279 bool mbHasHiddenMember
;
282 ScDPDimension( ScDPSource
* pSrc
, tools::Long nD
);
283 virtual ~ScDPDimension() override
;
284 ScDPDimension(const ScDPDimension
&) = delete;
285 ScDPDimension
& operator=(const ScDPDimension
&) = delete;
287 sal_Int32
GetDimension() const { return nDim
; } // dimension index in source
288 sal_Int32
GetSourceDim() const { return nSourceDim
; } // >=0 if dup'ed
290 ScDPDimension
* CreateCloneObject();
291 ScDPHierarchies
* GetHierarchiesObject();
293 const std::optional
<OUString
> & GetLayoutName() const;
294 const std::optional
<OUString
> & GetSubtotalName() const;
297 virtual OUString SAL_CALL
getName() override
;
298 virtual void SAL_CALL
setName( const OUString
& aName
) override
;
300 // XHierarchiesSupplier
301 virtual css::uno::Reference
< css::container::XNameAccess
> SAL_CALL
302 getHierarchies() override
;
305 virtual css::uno::Reference
< css::util::XCloneable
> SAL_CALL
306 createClone() override
;
309 virtual css::uno::Reference
< css::beans::XPropertySetInfo
>
310 SAL_CALL
getPropertySetInfo( ) override
;
311 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
,
312 const css::uno::Any
& aValue
) override
;
313 virtual css::uno::Any SAL_CALL
getPropertyValue(
314 const OUString
& PropertyName
) override
;
315 virtual void SAL_CALL
addPropertyChangeListener( const OUString
& aPropertyName
,
316 const css::uno::Reference
<
317 css::beans::XPropertyChangeListener
>& xListener
) override
;
318 virtual void SAL_CALL
removePropertyChangeListener( const OUString
& aPropertyName
,
319 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& aListener
) override
;
320 virtual void SAL_CALL
addVetoableChangeListener( const OUString
& PropertyName
,
321 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
322 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
,
323 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
326 virtual OUString SAL_CALL
getImplementationName( ) override
;
327 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
328 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
330 css::sheet::DataPilotFieldOrientation
getOrientation() const;
331 bool getIsDataLayoutDimension() const;
332 ScGeneralFunction
getFunction() const { return nFunction
;}
333 void setFunction(ScGeneralFunction nNew
); // for data dimension
334 static tools::Long
getUsedHierarchy() { return 0;}
336 bool HasSelectedPage() const { return bHasSelectedPage
; }
337 const ScDPItemData
& GetSelectedData();
339 const css::sheet::DataPilotFieldReference
& GetReferenceValue() const { return aReferenceValue
;}
342 class ScDPHierarchies final
: public cppu::WeakImplHelper
<
343 css::container::XNameAccess
,
344 css::lang::XServiceInfo
>
349 // date columns have 3 hierarchies (flat/quarter/week), other columns only one
350 // #i52547# don't offer the incomplete date hierarchy implementation
351 static const tools::Long nHierCount
= 1;
352 std::unique_ptr
<rtl::Reference
<ScDPHierarchy
>[]>
356 ScDPHierarchies( ScDPSource
* pSrc
, tools::Long nD
);
357 virtual ~ScDPHierarchies() override
;
360 virtual css::uno::Any SAL_CALL
getByName( const OUString
& aName
) override
;
361 virtual css::uno::Sequence
< OUString
> SAL_CALL
getElementNames() override
;
362 virtual sal_Bool SAL_CALL
hasByName( const OUString
& aName
) override
;
365 virtual css::uno::Type SAL_CALL
getElementType() override
;
366 virtual sal_Bool SAL_CALL
hasElements() override
;
369 virtual OUString SAL_CALL
getImplementationName( ) override
;
370 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
371 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
373 static sal_Int32
getCount();
374 ScDPHierarchy
* getByIndex(tools::Long nIndex
) const;
377 class ScDPHierarchy final
: public cppu::WeakImplHelper
<
378 css::sheet::XLevelsSupplier
,
379 css::container::XNamed
,
380 css::lang::XServiceInfo
>
386 rtl::Reference
<ScDPLevels
> mxLevels
;
389 ScDPHierarchy( ScDPSource
* pSrc
, sal_Int32 nDim
, sal_Int32 nHier
);
390 virtual ~ScDPHierarchy() override
;
392 ScDPLevels
* GetLevelsObject();
395 virtual OUString SAL_CALL
getName() override
;
396 virtual void SAL_CALL
setName( const OUString
& aName
) override
;
399 virtual css::uno::Reference
< css::container::XNameAccess
> SAL_CALL
400 getLevels() override
;
403 virtual OUString SAL_CALL
getImplementationName( ) override
;
404 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
405 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
408 class ScDPLevels final
: public cppu::WeakImplHelper
<
409 css::container::XNameAccess
,
410 css::lang::XServiceInfo
>
417 std::unique_ptr
<rtl::Reference
<ScDPLevel
>[]>
421 ScDPLevels( ScDPSource
* pSrc
, sal_Int32 nDim
, sal_Int32 nHier
);
422 virtual ~ScDPLevels() override
;
425 virtual css::uno::Any SAL_CALL
getByName( const OUString
& aName
) override
;
426 virtual css::uno::Sequence
< OUString
> SAL_CALL
getElementNames() override
;
427 virtual sal_Bool SAL_CALL
hasByName( const OUString
& aName
) override
;
430 virtual css::uno::Type SAL_CALL
getElementType() override
;
431 virtual sal_Bool SAL_CALL
hasElements() override
;
434 virtual OUString SAL_CALL
getImplementationName( ) override
;
435 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
436 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
438 sal_Int32
getCount() const;
439 ScDPLevel
* getByIndex(sal_Int32 nIndex
) const;
442 class ScDPLevel final
: public cppu::WeakImplHelper
<
443 css::sheet::XMembersSupplier
,
444 css::container::XNamed
,
445 css::sheet::XDataPilotMemberResults
,
446 css::beans::XPropertySet
,
447 css::lang::XServiceInfo
>
454 rtl::Reference
<ScDPMembers
> mxMembers
;
455 css::uno::Sequence
<sal_Int16
> aSubTotals
;
456 css::sheet::DataPilotFieldSortInfo aSortInfo
; // stored user settings
457 css::sheet::DataPilotFieldAutoShowInfo aAutoShowInfo
; // stored user settings
458 css::sheet::DataPilotFieldLayoutInfo aLayoutInfo
; // stored user settings
459 // valid only from result calculation:
460 ::std::vector
<sal_Int32
> aGlobalOrder
; // result of sorting by name or position
461 sal_Int32 nSortMeasure
; // measure (index of data dimension) to sort by
462 sal_Int32 nAutoMeasure
; // measure (index of data dimension) for AutoShow
464 bool bEnableLayout
:1; // enabled only for row fields, not for the innermost one
465 bool bRepeatItemLabels
:1;
468 ScDPLevel( ScDPSource
* pSrc
, sal_Int32 nDim
, sal_Int32 nHier
, sal_Int32 nLevel
);
469 virtual ~ScDPLevel() override
;
471 ScDPMembers
* GetMembersObject();
474 virtual OUString SAL_CALL
getName() override
;
475 virtual void SAL_CALL
setName( const OUString
& aName
) override
;
478 virtual css::uno::Reference
< css::sheet::XMembersAccess
> SAL_CALL
479 getMembers() override
;
481 // XDataPilotMemberResults
482 virtual css::uno::Sequence
< css::sheet::MemberResult
> SAL_CALL
483 getResults() override
;
486 virtual css::uno::Reference
< css::beans::XPropertySetInfo
>
487 SAL_CALL
getPropertySetInfo( ) override
;
488 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
,
489 const css::uno::Any
& aValue
) override
;
490 virtual css::uno::Any SAL_CALL
getPropertyValue(
491 const OUString
& PropertyName
) override
;
492 virtual void SAL_CALL
addPropertyChangeListener( const OUString
& aPropertyName
,
493 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& xListener
) override
;
494 virtual void SAL_CALL
removePropertyChangeListener( const OUString
& aPropertyName
,
495 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& aListener
) override
;
496 virtual void SAL_CALL
addVetoableChangeListener( const OUString
& PropertyName
,
497 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
498 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
,
499 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
502 virtual OUString SAL_CALL
getImplementationName( ) override
;
503 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
504 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
506 css::uno::Sequence
<sal_Int16
> getSubTotals() const;
507 bool getShowEmpty() const { return bShowEmpty
;}
508 bool getRepeatItemLabels() const { return bRepeatItemLabels
; }
510 const css::sheet::DataPilotFieldSortInfo
& GetSortInfo() const { return aSortInfo
; }
511 const css::sheet::DataPilotFieldAutoShowInfo
& GetAutoShow() const { return aAutoShowInfo
; }
513 void EvaluateSortOrder();
514 void SetEnableLayout(bool bSet
);
516 const ::std::vector
<sal_Int32
>& GetGlobalOrder() const { return aGlobalOrder
; }
517 ::std::vector
<sal_Int32
>& GetGlobalOrder() { return aGlobalOrder
; }
518 sal_Int32
GetSortMeasure() const { return nSortMeasure
; }
519 sal_Int32
GetAutoMeasure() const { return nAutoMeasure
; }
521 bool IsOutlineLayout() const
523 return bEnableLayout
&&
524 aLayoutInfo
.LayoutMode
!=
525 css::sheet::DataPilotFieldLayoutMode::TABULAR_LAYOUT
;
528 bool IsSubtotalsAtTop() const
530 return bEnableLayout
&&
531 (aLayoutInfo
.LayoutMode
==
532 css::sheet::DataPilotFieldLayoutMode::OUTLINE_SUBTOTALS_TOP
||
533 aLayoutInfo
.LayoutMode
==
534 css::sheet::DataPilotFieldLayoutMode::COMPACT_LAYOUT
);
537 bool IsAddEmpty() const
539 return bEnableLayout
&& aLayoutInfo
.AddEmptyLines
;
542 //! number format (for data fields and date fields)
545 // hash map from name to index in the member array, for fast name access
546 typedef std::unordered_map
< OUString
, sal_Int32
> ScDPMembersHashMap
;
548 class ScDPMembers final
: public cppu::WeakImplHelper
<
549 css::sheet::XMembersAccess
,
550 css::lang::XServiceInfo
>
553 typedef std::vector
<rtl::Reference
<ScDPMember
> > MembersType
;
559 mutable MembersType maMembers
;
560 mutable ScDPMembersHashMap aHashMap
;
563 ScDPMembers( ScDPSource
* pSrc
, sal_Int32 nDim
, sal_Int32 nHier
, sal_Int32 nLev
);
564 virtual ~ScDPMembers() override
;
567 virtual css::uno::Sequence
< OUString
> SAL_CALL
getLocaleIndependentElementNames() override
;
570 virtual css::uno::Any SAL_CALL
getByName( const OUString
& aName
) override
;
571 virtual css::uno::Sequence
< OUString
> SAL_CALL
getElementNames() override
;
572 virtual sal_Bool SAL_CALL
hasByName( const OUString
& aName
) override
;
575 virtual css::uno::Type SAL_CALL
getElementType() override
;
576 virtual sal_Bool SAL_CALL
hasElements() override
;
579 virtual OUString SAL_CALL
getImplementationName( ) override
;
580 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
581 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
583 sal_Int32
getCount() const { return nMbrCount
;}
584 ScDPMember
* getByIndex(sal_Int32 nIndex
) const;
586 sal_Int32
getMinMembers() const;
588 sal_Int32
GetIndexFromName( const OUString
& rName
) const; // <0 if not found
589 const ScDPItemData
* GetSrcItemDataByIndex( SCROW nIndex
);
592 /// @throws css::uno::RuntimeException
593 css::uno::Sequence
< OUString
> getElementNames( bool bLocaleIndependent
) const;
596 class ScDPMember final
: public cppu::WeakImplHelper
<
597 css::container::XNamed
,
598 css::beans::XPropertySet
,
599 css::lang::XServiceInfo
>
608 std::optional
<OUString
> mpLayoutName
;
610 sal_Int32 nPosition
; // manual sorting
615 ScDPMember(ScDPSource
* pSrc
, sal_Int32 nDim
, sal_Int32 nHier
, sal_Int32 nLev
, SCROW nIndex
);
616 virtual ~ScDPMember() override
;
617 ScDPMember(const ScDPMember
&) = delete;
618 ScDPMember
& operator=(const ScDPMember
&) = delete;
620 OUString
GetNameStr( bool bLocaleIndependent
) const;
621 ScDPItemData
FillItemData() const;
622 const ScDPItemData
* GetItemData() const;
623 SCROW
GetItemDataId() const { return mnDataId
; }
624 bool IsNamedItem(SCROW nIndex
) const;
626 const std::optional
<OUString
> & GetLayoutName() const;
627 tools::Long
GetDim() const { return nDim
;}
629 sal_Int32
Compare( const ScDPMember
& rOther
) const; // visible order
632 virtual OUString SAL_CALL
getName() override
;
633 virtual void SAL_CALL
setName( const OUString
& aName
) override
;
636 virtual css::uno::Reference
< css::beans::XPropertySetInfo
>
637 SAL_CALL
getPropertySetInfo( ) override
;
638 virtual void SAL_CALL
setPropertyValue( const OUString
& aPropertyName
,
639 const css::uno::Any
& aValue
) override
;
640 virtual css::uno::Any SAL_CALL
getPropertyValue(
641 const OUString
& PropertyName
) override
;
642 virtual void SAL_CALL
addPropertyChangeListener( const OUString
& aPropertyName
,
643 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& xListener
) override
;
644 virtual void SAL_CALL
removePropertyChangeListener( const OUString
& aPropertyName
,
645 const css::uno::Reference
< css::beans::XPropertyChangeListener
>& aListener
) override
;
646 virtual void SAL_CALL
addVetoableChangeListener( const OUString
& PropertyName
,
647 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
648 virtual void SAL_CALL
removeVetoableChangeListener( const OUString
& PropertyName
,
649 const css::uno::Reference
< css::beans::XVetoableChangeListener
>& aListener
) override
;
652 virtual OUString SAL_CALL
getImplementationName( ) override
;
653 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
654 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
656 bool isVisible() const { return bVisible
;}
657 bool getShowDetails() const { return bShowDet
;}
660 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */