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 .
20 #ifndef INCLUDED_SC_INC_DPOUTPUTGEOMETRY_HXX
21 #define INCLUDED_SC_INC_DPOUTPUTGEOMETRY_HXX
23 #include "address.hxx"
26 class SC_DLLPUBLIC ScDPOutputGeometry
29 enum FieldType
{ Column
= 0, Row
, Page
, Data
, None
};
31 ScDPOutputGeometry() = delete;
32 ScDPOutputGeometry(const ScRange
& rOutRange
, bool bShowFilter
);
33 ~ScDPOutputGeometry();
36 * @param nCount number of row fields.
38 void setRowFieldCount(sal_uInt32 nCount
);
39 void setColumnFieldCount(sal_uInt32 nCount
);
40 void setPageFieldCount(sal_uInt32 nCount
);
41 void setDataFieldCount(sal_uInt32 nCount
);
42 void setDataLayoutType(FieldType eType
);
43 void setHeaderLayout(bool bHeaderLayout
);
44 void setCompactMode(bool bCompactMode
);
46 void getColumnFieldPositions(::std::vector
<ScAddress
>& rAddrs
) const;
47 void getRowFieldPositions(::std::vector
<ScAddress
>& rAddrs
) const;
48 void getPageFieldPositions(::std::vector
<ScAddress
>& rAddrs
) const;
50 SCROW
getRowFieldHeaderRow() const;
52 std::pair
<FieldType
, size_t> getFieldButtonType(const ScAddress
& rPos
) const;
55 void adjustFieldsForDataLayout(sal_uInt32
& rColumnFields
, sal_uInt32
& rRowFields
) const;
59 sal_uInt32 mnRowFields
; /// number of row fields
60 sal_uInt32 mnColumnFields
;
61 sal_uInt32 mnPageFields
;
62 sal_uInt32 mnDataFields
;
63 FieldType meDataLayoutType
;
66 bool mbCompactMode
; // MSO only setting
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */