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/.
10 #ifndef INCLUDED_SC_INC_ORCUSFILTERS_HXX
11 #define INCLUDED_SC_INC_ORCUSFILTERS_HXX
13 #include <rtl/ustring.hxx>
17 struct ScOrcusXMLTreeParam
;
18 struct ScOrcusImportXMLParam
;
19 class ScOrcusXMLContext
;
23 * Collection of orcus filter wrappers.
28 virtual ~ScOrcusFilters() {}
30 virtual bool importCSV(ScDocument
& rDoc
, SfxMedium
& rMedium
) const = 0;
32 virtual bool importGnumeric(ScDocument
& rDoc
, SfxMedium
& rMedium
) const = 0;
34 virtual bool importXLSX(ScDocument
& rDoc
, SfxMedium
& rMedium
) const = 0;
36 virtual bool importODS(ScDocument
& rDoc
, SfxMedium
& rMedium
) const = 0;
39 * Create a context for XML file. The context object stores session
40 * information for each unique XML file. You must create a new context
41 * for each XML file, and never to re-use the same context for multiple
44 * The caller is responsible for deleting the instance returned from this
45 * method when it's done.
47 virtual ScOrcusXMLContext
* createXMLContext(ScDocument
& rDoc
, const OUString
& rPath
) const = 0;
50 class ScOrcusXMLContext
53 virtual ~ScOrcusXMLContext() {}
55 virtual bool loadXMLStructure(SvTreeListBox
& rTreeCtrl
, ScOrcusXMLTreeParam
& rParam
) = 0;
57 virtual bool importXML(const ScOrcusImportXMLParam
& rParam
) = 0;
62 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */