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/DataPilotOutputRangeType.hpp>
23 #include <com/sun/star/sheet/DataPilotFieldOrientation.hpp>
24 #include <com/sun/star/uno/Sequence.hxx>
26 #include <tools/long.hxx>
28 #include "address.hxx"
30 #include "dptypes.hxx"
35 namespace com::sun::star::sheet
{
36 struct DataPilotFieldFilter
;
37 struct DataPilotTablePositionData
;
40 class XDimensionsSupplier
;
42 namespace tools
{ class Rectangle
; }
44 struct ScDPOutLevelData
;
50 css::uno::Reference
< css::sheet::XDimensionsSupplier
> xSource
;
52 std::vector
<ScDPOutLevelData
> pColFields
;
53 std::vector
<ScDPOutLevelData
> pRowFields
;
54 std::vector
<ScDPOutLevelData
> pPageFields
;
55 css::uno::Sequence
< css::uno::Sequence
< css::sheet::DataResult
> > aData
;
56 OUString aDataDescription
;
58 // Number format related parameters
59 std::unique_ptr
<sal_uInt32
[]>
61 std::unique_ptr
<sal_uInt32
[]>
63 std::vector
<bool> aRowCompactFlags
;
64 sal_Int32 nColFmtCount
;
65 sal_Int32 nRowFmtCount
;
66 sal_uInt32 nSingleNumFmt
;
67 size_t nRowDims
; // Including empty ones.
69 // Output geometry related parameters
72 sal_Int32 nHeaderSize
;
75 SCCOL nMemberStartCol
;
76 SCROW nMemberStartRow
;
85 bool mbHeaderLayout
:1; // true : grid, false : standard
86 bool mbHasCompactRowField
:1; // true: at least one of the row fields has compact layout.
87 bool mbExpandCollapse
:1; // true: show expand/collapse buttons
89 void DataCell( SCCOL nCol
, SCROW nRow
, SCTAB nTab
,
90 const css::sheet::DataResult
& rData
);
91 void HeaderCell( SCCOL nCol
, SCROW nRow
, SCTAB nTab
,
92 const css::sheet::MemberResult
& rData
,
93 bool bColHeader
, tools::Long nLevel
);
95 void FieldCell(SCCOL nCol
, SCROW nRow
, SCTAB nTab
, const ScDPOutLevelData
& rData
, bool bInTable
);
96 void MultiFieldCell(SCCOL nCol
, SCROW nRow
, SCTAB nTab
, bool bRowField
);
98 /// Computes number of columns needed to write row fields.
99 SCCOL
GetColumnsForRowFields() const;
102 /** Query which sub-area of the table the cell is in. See
103 css.sheet.DataPilotTablePositionType for the interpretation of the
105 sal_Int32
GetPositionType(const ScAddress
& rPos
);
106 /// Returns the range of row fields that are contained by table's row fields column nCol.
107 void GetRowFieldRange(SCCOL nCol
, sal_Int32
& nRowFieldStart
, sal_Int32
& nRowFieldEnd
) const;
108 /// Find row field index from row position in case of compact layout.
109 sal_Int32
GetRowFieldCompact(SCCOL nColQuery
, SCROW nRowQuery
) const;
112 ScDPOutput( ScDocument
* pD
,
113 css::uno::Reference
< css::sheet::XDimensionsSupplier
> xSrc
,
114 const ScAddress
& rPos
, bool bFilter
, bool bExpandCollapse
);
117 void SetPosition( const ScAddress
& rPos
);
119 void Output(); //! Refresh?
120 ScRange
GetOutputRange( sal_Int32 nRegionType
= css::sheet::DataPilotOutputRangeType::WHOLE
);
121 sal_Int32
GetHeaderRows() const;
122 bool HasError(); // range overflow or exception from source
124 void GetPositionData(const ScAddress
& rPos
, css::sheet::DataPilotTablePositionData
& rPosData
);
126 /** Get filtering criteria based on the position of the cell within data
128 bool GetDataResultPositionData(::std::vector
< css::sheet::DataPilotFieldFilter
>& rFilters
, const ScAddress
& rPos
);
130 tools::Long
GetHeaderDim( const ScAddress
& rPos
, css::sheet::DataPilotFieldOrientation
& rOrient
);
132 const ScAddress
& rPos
, bool bMouseLeft
, bool bMouseTop
, tools::Long nDragDim
,
133 tools::Rectangle
& rPosRect
, css::sheet::DataPilotFieldOrientation
& rOrient
, tools::Long
& rDimPos
);
134 bool IsFilterButton( const ScAddress
& rPos
);
136 void GetMemberResultNames(ScDPUniqueStringSet
& rNames
, tools::Long nDimension
);
138 void SetHeaderLayout(bool bUseGrid
);
139 bool GetHeaderLayout() const { return mbHeaderLayout
;}
141 static void GetDataDimensionNames(
142 OUString
& rSourceName
, OUString
& rGivenName
,
143 const css::uno::Reference
< css::uno::XInterface
>& xDim
);
146 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */