1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
24 #include "address.hxx"
25 #include "flttypes.hxx"
27 #include "excdefs.hxx"
31 class RangeNameBufferWK3
;
32 class SharedFormulaBuffer
;
37 class XclImpColRowSettings
;
38 class XclImpAutoFilterBuffer
;
39 class _ScRangeListTabs
;
41 class XclExpChTrTabId
;
42 class XclExpUserBViewList
;
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
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
70 RootData(); // -> exctools.cxx
71 ~RootData(); // -> exctools.cxx
78 inline ExcRoot( RootData
* pNexExcRoot
) : pExcRoot( pNexExcRoot
) {}
79 inline ExcRoot( const ExcRoot
& rCopy
) : pExcRoot( rCopy
.pExcRoot
) {}
85 class LotusFontBuffer
;
91 LotusRangeList
* pRangeNames
;
92 ScRangeName
* pScRangeName
;
93 rtl_TextEncoding eCharsetQ
;
94 Lotus123Typ eFirstType
;
97 RangeNameBufferWK3
* pRngNmBffWK3
;
98 LotusFontBuffer
* pFontBuff
;
99 LotAttrTable
* pAttrTable
;
101 LOTUS_ROOT( ScDocument
* pDocP
, rtl_TextEncoding eQ
);
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */