summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sheet/DataPilotFieldReferenceType.idl
blob: d6b677997c7073f2a5d163923d917a9f47dbf3d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/

#ifndef __com_sun_star_sheet_DataPilotFieldReferenceType_idl__
#define __com_sun_star_sheet_DataPilotFieldReferenceType_idl__

//=============================================================================

module com {  module sun {  module star {  module sheet {

//=============================================================================

/** These constants select different types of References to calculate
    the data fields.
 */
constants DataPilotFieldReferenceType
{
    //-------------------------------------------------------------------------

    /** This type means, that the results in the data fields are displayed like they are.
     */
    const long NONE = 0;

    //-------------------------------------------------------------------------

    /** From each result, its reference value (see below) is subtracted, and the difference is shown.
        Totals outside of the base field are shown as empty results.

    <p><b>Named Item</b></p>

    <p>If a base item name is specified, the reference value for a combination of field items is the
       result where the item in the base field is replaced by the specified base item.</p>

    <p>If the reference value isn't shown in the DataPilot table because of hidden details for a
       parent field, the difference isn't calculated and an error value is shown.</p>

    <p>If the result for an item combination is empty, the value 0 is used for the difference, even
       if the summary function is undefined without values, like average or variance. The difference
       is shown in the result table even if the original result was empty.</p>

    <p>The difference for item combinations containing the base item is shown as empty result.</p>

    <p><b>Previous or Next</b></p>

    <p>If "previous" or "next" is specified as the base item, the reference value is the result for
       the next visible member of the base field, in the base field's sort order. If details for one
       item in the base field are hidden, that item is skipped. The difference for the item with
       hidden details isn't calculated, not even for the item's summary, to have a consistent order
       of previous and next items.</p>

    <p>Empty results are handled as for named items (see above).<p>

    <p>The difference for the first (for <TYPE>com::sun::star::sheet::DataPilotFieldReferenceItemType::PREVIOUS</TYPE>)
       or last (for <TYPE>com::sun::star::sheet::DataPilotFieldReferenceItemType::NEXT</TYPE>) item of the base field is
       shown as empty result.</p>
    */

    const long ITEM_DIFFERENCE = 1;

    //-------------------------------------------------------------------------

    /** Each result is divided by its reference value. The reference value is determined in the
        same way as for <const scope="::com::sun::star::sheet">DataPilotFieldReferenceType::ITEM_DIFFERENCE</const>.
        Totals outside of the base field are shown as empty results.

        <p>Division by zero results in an error. Otherwise, empty results are shown as 0. Results for
           the base item, first (for <TYPE>com::sun::star::sheet::DataPilotFieldReferenceItemType::PREVIOUS</TYPE>)
           or last (for <TYPE>com::sun::star::sheet::DataPilotFieldReferenceItemType::NEXT</TYPE>) item of the base field are shown
           as 1 if not empty.</p>
    */

        const long ITEM_PERCENTAGE = 2;

    //-------------------------------------------------------------------------

    /** From each result, its reference value is subtracted, and the difference divided by the
        reference value. The reference value is determined in the same way as for
        <const scope="::com::sun::star::sheet">DataPilotFieldReferenceType::ITEM_DIFFERENCE</const>.
        Totals outside of the base field are shown as empty results.

    <p>Division by zero results in an error. Otherwise, the rules for <const scope="::com::sun::star::sheet">DataPilotFieldReferenceType::ITEM_DIFFERENCE</const> apply.</p>
    */

        const long ITEM_PERCENTAGE_DIFFERENCE = 3;

    //-------------------------------------------------------------------------

    /** Each result is added to the sum of the results for preceding items in the base field,
        in the base field's sort order, and the total sum is shown.

    <p>If details for one item in the base field are hidden, that item isn't included in
    calculating the sum, and results for that item are shown as error, to ensure consistency
    between details and subtotals for the following items.</p>

    <p>Results are always summed, even if a different summary function was used to get each result.</p>

    <p>Totals outside of the base field are shown as empty results.</p>
    */

        const long RUNNING_TOTAL = 4;

    //-------------------------------------------------------------------------

    /** Each result is divided by the total result for its row in the DataPilot table.

        <p>If there are several data fields, the total for the result's data field is used.</p>

        <p>If there are subtotals with manually selected summary functions, still the total with
        the data field's summary function is used.</p>

        <p>Division by zero results in an error.</p>

        <p>Otherwise, empty results remain empty.</p>
    */

        const long ROW_PERCENTAGE = 5;

    //-------------------------------------------------------------------------

    /** Same as <const scope="::com::sun::star::sheet">DataPilotFieldReferenceType::ROW_PERCENTAGE</const>, but the total for the result's column is used.
    */

        const long COLUMN_PERCENTAGE = 6;

    //-------------------------------------------------------------------------

    /** Same as <const scope="::com::sun::star::sheet">DataPilotFieldReferenceType::ROW_PERCENTAGE</const>, but the grand total for the result's data field is used.
    */

        const long TOTAL_PERCENTAGE = 7;

    //-------------------------------------------------------------------------

    /** The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression.

    <p>( original result * grand total ) / ( row total * column total )</p>

    <p>Division by zero results in an error. Otherwise, empty results remain empty.</p>
    */

        const long INDEX = 8;


};

//=============================================================================

}; }; }; };

#endif