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 .
22 #include <rtl/textenc.h>
23 #include <rtl/ustring.hxx>
24 #include <comphelper/errcode.hxx>
35 class SvNumberFormatter
;
39 enum EXCIMPFORMAT
{ EIF_AUTO
, EIF_BIFF5
, EIF_BIFF8
, EIF_BIFF_LE4
};
42 enum ExportFormatExcel
{ ExpBiff5
, ExpBiff8
};
44 // These are implemented inside the scfilt library and lazy loaded
48 virtual ~ScEEAbsImport() {}
49 virtual ErrCode
Read( SvStream
& rStream
, const OUString
& rBaseURL
) = 0;
50 virtual ScRange
GetRange() = 0;
51 virtual void WriteToDocument(
52 bool bSizeColsRows
= false, double nOutputFactor
= 1.0,
53 SvNumberFormatter
* pFormatter
= nullptr, bool bConvertDate
= true,
54 bool bConvertScientific
= true ) = 0;
57 class SAL_DLLPUBLIC_RTTI ScFormatFilterPlugin
{
59 // various import filters
60 virtual ErrCode
ScImportLotus123( SfxMedium
&, ScDocument
&, rtl_TextEncoding eSrc
) = 0;
61 virtual ErrCode
ScImportQuattroPro(SvStream
* pStream
, ScDocument
& rDoc
) = 0;
62 virtual ErrCode
ScImportExcel( SfxMedium
&, ScDocument
*, const EXCIMPFORMAT
) = 0;
63 // eFormat == EIF_AUTO -> matching filter is used automatically
64 // eFormat == EIF_BIFF5 -> only Biff5 stream is read successfully (in an Excel97 doc, too)
65 // eFormat == EIF_BIFF8 -> only Biff8 stream is read successfully (only in Excel97 docs)
66 // eFormat == EIF_BIFF_LE4 -> only non storage files _might_ be read successfully
67 virtual ErrCode
ScImportDif( SvStream
&, ScDocument
*, const ScAddress
& rInsPos
,
68 const rtl_TextEncoding eSrc
) = 0;
69 virtual ErrCode
ScImportRTF( SvStream
&, const OUString
& rBaseURL
, ScDocument
*, ScRange
& rRange
) = 0;
70 virtual ErrCode
ScImportHTML( SvStream
&, const OUString
& rBaseURL
, ScDocument
*, ScRange
& rRange
, double nOutputFactor
,
71 bool bCalcWidthHeight
, SvNumberFormatter
* pFormatter
, bool bConvertDate
,
72 bool bConvertScientific
) = 0;
74 // various import helpers
75 virtual std::unique_ptr
<ScEEAbsImport
> CreateRTFImport( ScDocument
* pDoc
, const ScRange
& rRange
) = 0;
76 virtual std::unique_ptr
<ScEEAbsImport
> CreateHTMLImport( ScDocument
* pDocP
, const OUString
& rBaseURL
, const ScRange
& rRange
) = 0;
77 virtual OUString
GetHTMLRangeNameList( ScDocument
& rDoc
, const OUString
& rOrigName
) = 0;
79 // various export filters
80 virtual ErrCode
ScExportExcel5( SfxMedium
&, ScDocument
*, ExportFormatExcel eFormat
, rtl_TextEncoding eDest
) = 0;
81 virtual void ScExportDif( SvStream
&, ScDocument
*, const ScAddress
& rOutPos
, const rtl_TextEncoding eDest
) = 0;
82 virtual void ScExportDif( SvStream
&, ScDocument
*, const ScRange
& rRange
, const rtl_TextEncoding eDest
) = 0;
83 virtual void ScExportHTML( SvStream
&, const OUString
& rBaseURL
, ScDocument
*, const ScRange
& rRange
, const rtl_TextEncoding eDest
, bool bAll
,
84 const OUString
& rStreamPath
, OUString
& rNonConvertibleChars
, const OUString
& rFilterOptions
) = 0;
85 virtual void ScExportRTF( SvStream
&, ScDocument
*, const ScRange
& rRange
, const rtl_TextEncoding eDest
) = 0;
87 virtual ScOrcusFilters
* GetOrcusFilters() = 0;
90 ~ScFormatFilterPlugin() {}
93 // scfilt plugin symbol
95 SAL_DLLPUBLIC_EXPORT ScFormatFilterPlugin
* ScFilterCreate();
98 class ScFormatFilter
{
100 SC_DLLPUBLIC
static ScFormatFilterPlugin
&Get();
105 ErrCode
ScImportLotus123old(LotusContext
& rContext
, SvStream
&, rtl_TextEncoding eSrc
);
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */