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_INC_XMLWRAP_HXX
21 #define INCLUDED_SC_INC_XMLWRAP_HXX
23 #include <com/sun/star/uno/Reference.hxx>
24 #include "importfilterdata.hxx"
26 #include <vcl/errcode.hxx>
28 namespace com
{ namespace sun
{ namespace star
{
29 namespace beans
{ struct PropertyValue
; }
30 namespace frame
{ class XModel
; }
31 namespace task
{ class XStatusIndicator
; }
32 namespace uno
{ class XComponentContext
; }
33 namespace uno
{ template <class E
> class Sequence
; }
34 namespace embed
{ class XStorage
; }
36 namespace sax
{ struct InputSource
; class XParser
; class XWriter
; } }
44 enum class ImportFlags
{
49 All
= Styles
| Content
| Metadata
| Settings
53 template<> struct typed_flags
<ImportFlags
> : is_typed_flags
<ImportFlags
, 0x0f> {};
57 class ScXMLImportWrapper
59 sc::ImportPostProcessData maPostProcessData
;
61 ScDocShell
& mrDocShell
;
64 css::uno::Reference
< css::embed::XStorage
> xStorage
;
66 css::uno::Reference
< css::task::XStatusIndicator
> GetStatusIndicator() const;
68 ErrCode
ImportFromComponent(const css::uno::Reference
<css::uno::XComponentContext
>& xContext
,
69 const css::uno::Reference
<css::frame::XModel
>& xModel
,
70 const css::uno::Reference
<css::xml::sax::XParser
>& xParser
,
71 css::xml::sax::InputSource
& aParserInput
,
72 const OUString
& sComponentName
, const OUString
& sDocName
, const OUString
& sOldDocName
,
73 const css::uno::Sequence
<css::uno::Any
>& aArgs
,
74 bool bMustBeSuccessfull
);
76 bool ExportToComponent(const css::uno::Reference
<css::uno::XComponentContext
>& xContext
,
77 const css::uno::Reference
<css::frame::XModel
>& xModel
,
78 const css::uno::Reference
<css::xml::sax::XWriter
>& xWriter
,
79 const css::uno::Sequence
<css::beans::PropertyValue
>& aDescriptor
,
80 const OUString
& sName
, const OUString
& sMediaType
, const OUString
& sComponentName
,
81 const css::uno::Sequence
<css::uno::Any
>& aArgs
,
82 std::unique_ptr
<ScMySharedData
>& pSharedData
);
87 ScDocShell
& rDocSh
, SfxMedium
* pM
, const css::uno::Reference
<css::embed::XStorage
>& xStor
);
89 bool Import( ImportFlags nMode
, ErrCode
& rError
);
90 bool Export(bool bStylesOnly
);
92 const sc::ImportPostProcessData
& GetImportPostProcessData() const { return maPostProcessData
;}
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */