Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / inc / dpoutputgeometry.hxx
blobe275cd87d947f0031fad8c9569b136c887159f6a
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 SC_DPOUTPUTGEOMETRY_HXX
21 #define SC_DPOUTPUTGEOMETRY_HXX
23 #include "address.hxx"
24 #include <vector>
26 class ScAddress;
28 class SC_DLLPUBLIC ScDPOutputGeometry
30 public:
31 enum FieldType { Column = 0, Row, Page, Data, None };
33 ScDPOutputGeometry(const ScRange& rOutRange, bool bShowFilter);
34 ~ScDPOutputGeometry();
36 /**
37 * @param nCount number of row fields.
39 void setRowFieldCount(sal_uInt32 nCount);
40 void setColumnFieldCount(sal_uInt32 nCount);
41 void setPageFieldCount(sal_uInt32 nCount);
42 void setDataFieldCount(sal_uInt32 nCount);
43 void setDataLayoutType(FieldType eType);
45 void getColumnFieldPositions(::std::vector<ScAddress>& rAddrs) const;
46 void getRowFieldPositions(::std::vector<ScAddress>& rAddrs) const;
47 void getPageFieldPositions(::std::vector<ScAddress>& rAddrs) const;
49 SCROW getRowFieldHeaderRow() const;
51 std::pair<FieldType, size_t> getFieldButtonType(const ScAddress& rPos) const;
53 private:
54 ScDPOutputGeometry(); // disabled
56 void adjustFieldsForDataLayout(sal_uInt32& rColumnFields, sal_uInt32& rRowFields) const;
58 private:
59 ScRange maOutRange;
60 sal_uInt32 mnRowFields; /// number of row fields
61 sal_uInt32 mnColumnFields;
62 sal_uInt32 mnPageFields;
63 sal_uInt32 mnDataFields;
64 FieldType meDataLayoutType;
65 bool mbShowFilter;
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */