tdf#104816 sw: if non-section content, let all sections hide.
[LibreOffice.git] / sc / inc / dpglobal.hxx
blob0a5b6e94dc6b965de5002db99e4710c98f790247
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_DPGLOBAL_HXX
21 #define INCLUDED_SC_INC_DPGLOBAL_HXX
23 #include <o3tl/typed_flags_set.hxx>
25 enum class PivotFunc {
26 NONE = 0x0000,
27 Sum = 0x0001,
28 Count = 0x0002,
29 Average = 0x0004,
30 Median = 0x0008,
31 Max = 0x0010,
32 Min = 0x0020,
33 Product = 0x0040,
34 CountNum = 0x0080,
35 StdDev = 0x0100,
36 StdDevP = 0x0200,
37 StdVar = 0x0400,
38 StdVarP = 0x0800,
39 Auto = 0x1000
41 namespace o3tl {
42 template<> struct typed_flags<PivotFunc> : is_typed_flags<PivotFunc, 0x1fff> {};
45 struct ScDPValue
47 enum Type { Empty = 0, Value, String, Error };
49 double mfValue;
50 Type meType;
52 ScDPValue();
54 void Set( double fV, Type eT );
57 #endif
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */