tdf#104816 sw: if non-section content, let all sections hide.
[LibreOffice.git] / sc / inc / consoli.hxx
blobc00081a305b3cb543ea370fb5f7c6aa551fbd445
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_CONSOLI_HXX
21 #define INCLUDED_SC_INC_CONSOLI_HXX
23 #include "global.hxx"
24 #include "address.hxx"
25 #include <vector>
27 class ScDocument;
28 class ScFunctionData;
30 // Sequence:
31 // 1) create ScConsData
32 // 2) Parameter (Size/Flags)
33 // 3) AddFields for all areas (only needed for bColByName or bRowByName)
34 // 4) DoneFields ( " " )
35 // 5) AddData for all areas
36 // perhaps AddName after each area
37 // 6) OutputToDocument
39 //! Use structure ScDocument if a certain size is exceeded?
41 class ScConsData
43 private:
44 struct ScReferenceEntry // without constructor !
46 SCCOL nCol;
47 SCROW nRow;
48 SCTAB nTab;
50 typedef std::vector<ScReferenceEntry> ScReferenceList;
51 ScSubTotalFunc eFunction;
52 bool bReference;
53 bool bColByName;
54 bool bRowByName;
55 SCSIZE nColCount;
56 SCSIZE nRowCount;
57 std::unique_ptr<std::unique_ptr<bool[]>[]> ppUsed;
58 std::unique_ptr<std::unique_ptr<ScFunctionData[]>[]> ppFunctionData;
59 std::unique_ptr<std::unique_ptr<ScReferenceList[]>[]> ppRefs;
60 ::std::vector<OUString> maColHeaders;
61 ::std::vector<OUString> maRowHeaders;
62 ::std::vector<OUString> maTitles;
63 SCSIZE nDataCount;
64 std::unique_ptr<std::unique_ptr<SCSIZE[]>[]> ppTitlePos;
65 bool bCornerUsed;
66 OUString aCornerText; // only for bColByName && bRowByName
68 public:
69 ScConsData();
70 ~ScConsData();
72 void SetSize( SCCOL nCols, SCROW nRows );
73 void SetFlags( ScSubTotalFunc eFunc, bool bColName, bool bRowName, bool bRef );
75 void InitData();
76 void DeleteData();
78 void AddFields( const ScDocument* pSrcDoc, SCTAB nTab,
79 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
80 void DoneFields();
82 void AddData( ScDocument* pSrcDoc, SCTAB nTab,
83 SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 );
84 void AddName( const OUString& rName );
86 void OutputToDocument( ScDocument* pDestDoc, SCCOL nCol, SCROW nRow, SCTAB nTab );
88 void GetSize( SCCOL& rCols, SCROW& rRows ) const;
89 SCROW GetInsertCount() const;
92 #endif
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */