LOK: tilebench improvements
[LibreOffice.git] / sc / inc / dpoutputgeometry.hxx
blob872b57dd1e70a3ddb3f152971d277f268ec6bf28
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_DPOUTPUTGEOMETRY_HXX
21 #define INCLUDED_SC_INC_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() = delete;
34 ScDPOutputGeometry(const ScRange& rOutRange, bool bShowFilter);
35 ~ScDPOutputGeometry();
37 /**
38 * @param nCount number of row fields.
40 void setRowFieldCount(sal_uInt32 nCount);
41 void setColumnFieldCount(sal_uInt32 nCount);
42 void setPageFieldCount(sal_uInt32 nCount);
43 void setDataFieldCount(sal_uInt32 nCount);
44 void setDataLayoutType(FieldType eType);
45 void setHeaderLayout(bool bHeaderLayout);
46 void setCompactMode(bool bCompactMode);
48 void getColumnFieldPositions(::std::vector<ScAddress>& rAddrs) const;
49 void getRowFieldPositions(::std::vector<ScAddress>& rAddrs) const;
50 void getPageFieldPositions(::std::vector<ScAddress>& rAddrs) const;
52 SCROW getRowFieldHeaderRow() const;
54 std::pair<FieldType, size_t> getFieldButtonType(const ScAddress& rPos) const;
56 private:
57 void adjustFieldsForDataLayout(sal_uInt32& rColumnFields, sal_uInt32& rRowFields) const;
59 private:
60 ScRange maOutRange;
61 sal_uInt32 mnRowFields; /// number of row fields
62 sal_uInt32 mnColumnFields;
63 sal_uInt32 mnPageFields;
64 sal_uInt32 mnDataFields;
65 FieldType meDataLayoutType;
66 bool mbShowFilter;
67 bool mbHeaderLayout;
68 bool mbCompactMode; // MSO only setting
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */