fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / filter / inc / root.hxx
blobf92b2fd3e13233eef17e9ff8b5f423fdce5b6e9e
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_SOURCE_FILTER_INC_ROOT_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_ROOT_HXX
23 #include "global.hxx"
24 #include "address.hxx"
25 #include "flttypes.hxx"
26 #include "filter.hxx"
27 #include "excdefs.hxx"
29 class ScRangeName;
31 class RangeNameBufferWK3;
32 class SharedFormulaBuffer;
33 class ExtNameBuff;
34 class ExtSheetBuffer;
35 class ExcelToSc;
37 class XclImpColRowSettings;
38 class XclImpAutoFilterBuffer;
39 class _ScRangeListTabs;
41 class XclExpChTrTabId;
42 class XclExpUserBViewList;
44 class XclImpRoot;
45 class XclExpRoot;
47 // Excel Imp~/Exp~ -
49 struct RootData // -> Inkarnation jeweils im ImportExcel-Objekt!
51 BiffTyp eDateiTyp; // feine Differenzierung
52 ExtSheetBuffer* pExtSheetBuff;
53 SharedFormulaBuffer* pShrfmlaBuff;
54 ExtNameBuff* pExtNameBuff;
55 ExcelToSc* pFmlaConverter;
56 XclImpColRowSettings* pColRowBuff; // Col/Row-Einstellungen 1 Tabelle
58 // Biff8
59 XclImpAutoFilterBuffer* pAutoFilterBuffer; // ranges for autofilter and advanced filter
60 _ScRangeListTabs* pPrintRanges;
61 _ScRangeListTabs* pPrintTitles;
63 // Erweiterungen fuer Export
64 XclExpChTrTabId* pTabId; // pointer to rec list, do not destroy
65 XclExpUserBViewList* pUserBViewList; // pointer to rec list, do not destroy
67 XclImpRoot* pIR;
68 XclExpRoot* pER;
70 RootData(); // -> exctools.cxx
71 ~RootData(); // -> exctools.cxx
74 class ExcRoot
76 protected:
77 RootData* pExcRoot;
78 inline ExcRoot( RootData* pNexExcRoot ) : pExcRoot( pNexExcRoot ) {}
79 inline ExcRoot( const ExcRoot& rCopy ) : pExcRoot( rCopy.pExcRoot ) {}
82 // Lotus Imp~/Exp~ -
84 class LotusRangeList;
85 class LotusFontBuffer;
86 class LotAttrTable;
88 struct LOTUS_ROOT
90 ScDocument* pDoc;
91 LotusRangeList* pRangeNames;
92 ScRangeName* pScRangeName;
93 rtl_TextEncoding eCharsetQ;
94 Lotus123Typ eFirstType;
95 Lotus123Typ eActType;
96 ScRange aActRange;
97 RangeNameBufferWK3* pRngNmBffWK3;
98 LotusFontBuffer* pFontBuff;
99 LotAttrTable* pAttrTable;
101 LOTUS_ROOT( ScDocument* pDocP, rtl_TextEncoding eQ );
102 ~LOTUS_ROOT();
105 #endif
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */