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/.
12 #include <rtl/ustring.hxx>
16 struct ScOrcusXMLTreeParam
;
17 struct ScOrcusImportXMLParam
;
18 class ScOrcusXMLContext
;
20 namespace weld
{ class TreeView
; }
23 * Collection of orcus filter wrappers.
28 enum class ImportResult
35 virtual ~ScOrcusFilters() {}
37 virtual ImportResult
importByName(
38 ScDocument
& rDoc
, SfxMedium
& rMedium
, const OUString
& rFilterName
) const = 0;
41 * Used to import just the styles from an xml file.
44 virtual bool importODS_Styles(ScDocument
& rDoc
, OUString
& aFileName
) const = 0;
47 * Create a context for XML file. The context object stores session
48 * information for each unique XML file. You must create a new context
49 * for each XML file, and never to re-use the same context for multiple
52 * The caller is responsible for deleting the instance returned from this
53 * method when it's done.
55 virtual std::unique_ptr
<ScOrcusXMLContext
> createXMLContext(ScDocument
& rDoc
, const OUString
& rPath
) const = 0;
58 class ScOrcusXMLContext
61 virtual ~ScOrcusXMLContext() {}
63 virtual void loadXMLStructure(weld::TreeView
& rTreeCtrl
, ScOrcusXMLTreeParam
& rParam
) = 0;
65 virtual void importXML(const ScOrcusImportXMLParam
& rParam
) = 0;
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */