/************************************************************************* * * 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 * * 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.

Named Item

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.

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.

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.

The difference for item combinations containing the base item is shown as empty result.

Previous or Next

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.

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

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

*/ const long ITEM_DIFFERENCE = 1; //------------------------------------------------------------------------- /** Each result is divided by its reference value. The reference value is determined in the same way as for DataPilotFieldReferenceType::ITEM_DIFFERENCE. Totals outside of the base field are shown as empty results.

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

*/ 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 DataPilotFieldReferenceType::ITEM_DIFFERENCE. Totals outside of the base field are shown as empty results.

Division by zero results in an error. Otherwise, the rules for DataPilotFieldReferenceType::ITEM_DIFFERENCE apply.

*/ 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.

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.

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

Totals outside of the base field are shown as empty results.

*/ const long RUNNING_TOTAL = 4; //------------------------------------------------------------------------- /** Each result is divided by the total result for its row in the DataPilot table.

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

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

Division by zero results in an error.

Otherwise, empty results remain empty.

*/ const long ROW_PERCENTAGE = 5; //------------------------------------------------------------------------- /** Same as DataPilotFieldReferenceType::ROW_PERCENTAGE, but the total for the result's column is used. */ const long COLUMN_PERCENTAGE = 6; //------------------------------------------------------------------------- /** Same as DataPilotFieldReferenceType::ROW_PERCENTAGE, 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.

( original result * grand total ) / ( row total * column total )

Division by zero results in an error. Otherwise, empty results remain empty.

*/ const long INDEX = 8; }; //============================================================================= }; }; }; }; #endif