Version 7.5.1.1, tag libreoffice-7.5.1.1
[LibreOffice.git] / sc / inc / dpoutputgeometry.hxx
blobbf6c4377a351ddc89794e89252677b17167baf49
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 #pragma once
22 #include "address.hxx"
23 #include <vector>
25 class SC_DLLPUBLIC ScDPOutputGeometry
27 public:
28 enum FieldType { Column = 0, Row, Page, Data, None };
30 ScDPOutputGeometry() = delete;
31 ScDPOutputGeometry(const ScRange& rOutRange, bool bShowFilter);
33 /**
34 * @param nCount number of row fields.
36 void setRowFieldCount(sal_uInt32 nCount);
37 void setColumnFieldCount(sal_uInt32 nCount);
38 void setPageFieldCount(sal_uInt32 nCount);
39 void setDataFieldCount(sal_uInt32 nCount);
40 void setDataLayoutType(FieldType eType);
41 void setHeaderLayout(bool bHeaderLayout);
42 void setCompactMode(bool bCompactMode);
44 void getColumnFieldPositions(::std::vector<ScAddress>& rAddrs) const;
45 void getRowFieldPositions(::std::vector<ScAddress>& rAddrs) const;
46 void getPageFieldPositions(::std::vector<ScAddress>& rAddrs) const;
48 SCROW getRowFieldHeaderRow() const;
50 std::pair<FieldType, size_t> getFieldButtonType(const ScAddress& rPos) const;
52 private:
53 void adjustFieldsForDataLayout(sal_uInt32& rColumnFields, sal_uInt32& rRowFields) const;
55 private:
56 ScRange maOutRange;
57 sal_uInt32 mnRowFields; /// number of row fields
58 sal_uInt32 mnColumnFields;
59 sal_uInt32 mnPageFields;
60 sal_uInt32 mnDataFields;
61 FieldType meDataLayoutType;
62 bool mbShowFilter;
63 bool mbHeaderLayout;
64 bool mbCompactMode; // MSO only setting
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */