LibreOffice Module sc (master) 1
dpoutputgeometry.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include "address.hxx"
23#include <vector>
24
26{
27public:
28 enum FieldType { Column = 0, Row, Page, Data, None };
29
31 ScDPOutputGeometry(const ScRange& rOutRange, bool bShowFilter);
32
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);
43
44 void getColumnFieldPositions(::std::vector<ScAddress>& rAddrs) const;
45 void getRowFieldPositions(::std::vector<ScAddress>& rAddrs) const;
46 void getPageFieldPositions(::std::vector<ScAddress>& rAddrs) const;
47
48 SCROW getRowFieldHeaderRow() const;
49
50 std::pair<FieldType, size_t> getFieldButtonType(const ScAddress& rPos) const;
51
52private:
53 void adjustFieldsForDataLayout(sal_uInt32& rColumnFields, sal_uInt32& rRowFields) const;
54
55private:
57 sal_uInt32 mnRowFields;
58 sal_uInt32 mnColumnFields;
59 sal_uInt32 mnPageFields;
60 sal_uInt32 mnDataFields;
64 bool mbCompactMode; // MSO only setting
65};
66
67/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
struct _ADOColumn Column
ScDPOutputGeometry()=delete
sal_uInt32 mnColumnFields
number of row fields
None
#define SC_DLLPUBLIC
Definition: scdllapi.h:27
sal_Int32 SCROW
Definition: types.hxx:17
Page