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 #include "XMLAutoTextEventImport.hxx"
21 #include <com/sun/star/uno/Reference.hxx>
22 #include <com/sun/star/document/XEventsSupplier.hpp>
23 #include <com/sun/star/uno/XInterface.hpp>
24 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
25 #include "XMLAutoTextContainerEventImport.hxx"
26 #include <xmloff/xmlnamespace.hxx>
27 #include <xmloff/xmltoken.hxx>
28 #include <tools/debug.hxx>
30 using namespace ::com::sun::star
;
32 using ::com::sun::star::uno::Any
;
33 using ::com::sun::star::uno::Reference
;
34 using ::com::sun::star::uno::Sequence
;
35 using ::com::sun::star::uno::Type
;
36 using ::com::sun::star::uno::XInterface
;
37 using ::com::sun::star::document::XEventsSupplier
;
38 using ::com::sun::star::container::XNameReplace
;
39 using ::xmloff::token::XML_AUTO_TEXT_EVENTS
;
41 XMLAutoTextEventImport::XMLAutoTextEventImport(
42 const css::uno::Reference
<css::uno::XComponentContext
>& xContext
)
43 : SvXMLImport(xContext
, u
"com.sun.star.comp.Writer.XMLOasisAutotextEventsImporter"_ustr
)
47 XMLAutoTextEventImport::~XMLAutoTextEventImport() noexcept
{}
49 void XMLAutoTextEventImport::initialize(const Sequence
<Any
>& rArguments
)
51 // The events may come as either an XNameReplace or XEventsSupplier.
53 for (const auto& rArgument
: rArguments
)
55 if (Reference
<XEventsSupplier
> xSupplier
; rArgument
>>= xSupplier
)
57 DBG_ASSERT(xSupplier
.is(), "need XEventsSupplier or XNameReplace");
59 xEvents
= xSupplier
->getEvents();
61 else if (rArgument
>>= xEvents
)
63 DBG_ASSERT(xEvents
.is(), "need XEventsSupplier or XNameReplace");
68 SvXMLImport::initialize(rArguments
);
71 SvXMLImportContext
* XMLAutoTextEventImport::CreateFastContext(
72 sal_Int32 nElement
, const Reference
<css::xml::sax::XFastAttributeList
>& /*xAttrList*/)
74 if (xEvents
.is() && nElement
== XML_ELEMENT(OOO
, XML_AUTO_TEXT_EVENTS
))
76 return new XMLAutoTextContainerEventImport(*this, xEvents
);
81 extern "C" SAL_DLLPUBLIC_EXPORT
css::uno::XInterface
*
82 com_sun_star_comp_Writer_XMLOasisAutotextEventsImporter_get_implementation(
83 css::uno::XComponentContext
* context
, css::uno::Sequence
<css::uno::Any
> const&)
85 return cppu::acquire(new XMLAutoTextEventImport(context
));
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */