tdf#164393 Change themes UI as per UX feedback
[LibreOffice.git] / offapi / com / sun / star / sheet / DataPilotFieldLayoutMode.idl
blobae8cee9ee75c34705c0371fad4d735a5d04e4950
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 .
21 module com { module sun { module star { module sheet {
24 /** describes the layout mode of the data field
26 @see com::sun::star::sheet::DataPilotFieldLayoutInfo
29 constants DataPilotFieldLayoutMode
32 /** Tabular layout mode is the layout, where each item's name is on the same
33 row as the first item from the following field. Subtotals are always shown below
34 an item's data in this mode.
37 const long TABULAR_LAYOUT = 0;
40 /** In outline layout mode, the items from the following field start in the row
41 below an item's name, like in traditional database reports.
43 <P>Subtotals are shown at the top (on the same row as the item's name). When
44 the subtotals take up more than one row (manually selected, or because there
45 are several data fields), they are always shown below the item's data,
46 regardless of the setting.</p>
49 const long OUTLINE_SUBTOTALS_TOP = 1;
52 /** In outline layout mode, the items from the following field start in the row
53 below an item's name, like in traditional database reports.
55 <P>Subtotals are shown at the bottom (below the item's data, as in tabular
56 layout mode). When the subtotals take up more than one row (manually
57 selected, or because there are several data fields), they are always shown
58 below the item's data, regardless of the setting.</p>
61 const long OUTLINE_SUBTOTALS_BOTTOM = 2;
63 /** In compact layout mode, the items from the following field start in the row
64 below an item's name with an indentation but in the same column as this field's
65 items are.
67 <P>Subtotals are shown at the top (on the same row as the item's name). When
68 the subtotals take up more than one row (manually selected, or because there
69 are several data fields), they are always shown below the item's data,
70 regardless of the setting.</p>
72 @since LibreOffice 7.6
75 const long COMPACT_LAYOUT = 3;
80 }; }; }; };
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */