1*a5ae5a41SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*a5ae5a41SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*a5ae5a41SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*a5ae5a41SAndrew Rist * distributed with this work for additional information 6*a5ae5a41SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*a5ae5a41SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*a5ae5a41SAndrew Rist * "License"); you may not use this file except in compliance 9*a5ae5a41SAndrew Rist * with the License. You may obtain a copy of the License at 10*a5ae5a41SAndrew Rist * 11*a5ae5a41SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*a5ae5a41SAndrew Rist * 13*a5ae5a41SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*a5ae5a41SAndrew Rist * software distributed under the License is distributed on an 15*a5ae5a41SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*a5ae5a41SAndrew Rist * KIND, either express or implied. See the License for the 17*a5ae5a41SAndrew Rist * specific language governing permissions and limitations 18*a5ae5a41SAndrew Rist * under the License. 19*a5ae5a41SAndrew Rist * 20*a5ae5a41SAndrew Rist *************************************************************/ 21*a5ae5a41SAndrew Rist 22*a5ae5a41SAndrew Rist 23cdf0e10cSrcweir#include "sc.hrc" // ->RID_SCDLG_PIVOT_LAYOUT 24cdf0e10cSrcweir 25cdf0e10cSrcweir#define BTN_OK 1 26cdf0e10cSrcweir#define BTN_CANCEL 2 27cdf0e10cSrcweir#define BTN_HELP 3 28cdf0e10cSrcweir#define BTN_MORE 4 29cdf0e10cSrcweir#define BTN_REMOVE 5 30cdf0e10cSrcweir#define BTN_OPTIONS 6 31cdf0e10cSrcweir 32cdf0e10cSrcweir#define FL_LAYOUT 10 33cdf0e10cSrcweir#define FL_SELECT 90 34cdf0e10cSrcweir#define SCROLL_COL 91 35cdf0e10cSrcweir#define WND_COL 11 36cdf0e10cSrcweir#define SCROLL_ROW 92 37cdf0e10cSrcweir#define WND_ROW 12 38cdf0e10cSrcweir#define SCROLL_DATA 93 39cdf0e10cSrcweir#define WND_DATA 13 40cdf0e10cSrcweir#define WND_SELECT 14 41cdf0e10cSrcweir#define WND_HSCROLL 17 42cdf0e10cSrcweir#define SCROLL_PAGE 98 43cdf0e10cSrcweir#define WND_PAGE 18 44cdf0e10cSrcweir#define FT_COL 31 45cdf0e10cSrcweir#define FT_ROW 32 46cdf0e10cSrcweir#define FT_DATA 33 47cdf0e10cSrcweir#define STR_SELECT 34 48cdf0e10cSrcweir#define FT_PAGE 35 49cdf0e10cSrcweir 50cdf0e10cSrcweir#define PTR_FIELD 18 51cdf0e10cSrcweir#define FT_INFO 19 52cdf0e10cSrcweir 53cdf0e10cSrcweir#define FL_OUTPUT 20 54cdf0e10cSrcweir#define FT_OUTAREA 21 55cdf0e10cSrcweir#define LB_OUTAREA 22 56cdf0e10cSrcweir#define ED_OUTAREA 23 57cdf0e10cSrcweir#define RB_OUTAREA 24 58cdf0e10cSrcweir#define BTN_IGNEMPTYROWS 25 59cdf0e10cSrcweir#define BTN_DETECTCAT 26 60cdf0e10cSrcweir#define BTN_TOTALCOL 27 61cdf0e10cSrcweir#define BTN_TOTALROW 28 62cdf0e10cSrcweir#define BTN_FILTER 29 63cdf0e10cSrcweir#define BTN_DRILLDOWN 30 64cdf0e10cSrcweir 65cdf0e10cSrcweir#define FT_INAREA 40 66cdf0e10cSrcweir#define RB_INAREA 41 67cdf0e10cSrcweir#define ED_INAREA 42 68cdf0e10cSrcweir 69cdf0e10cSrcweir#define PIVOTSTR_SUM 1 70cdf0e10cSrcweir#define PIVOTSTR_COUNT 2 71cdf0e10cSrcweir#define PIVOTSTR_AVG 3 72cdf0e10cSrcweir#define PIVOTSTR_MAX 4 73cdf0e10cSrcweir#define PIVOTSTR_MIN 5 74cdf0e10cSrcweir#define PIVOTSTR_PROD 6 75cdf0e10cSrcweir#define PIVOTSTR_COUNT2 7 76cdf0e10cSrcweir#define PIVOTSTR_DEV 8 77cdf0e10cSrcweir#define PIVOTSTR_DEV2 9 78cdf0e10cSrcweir#define PIVOTSTR_VAR 10 79cdf0e10cSrcweir#define PIVOTSTR_VAR2 11 80cdf0e10cSrcweir 81