LibreOffice Module xmloff (master) 1
XMLAutoTextEventImport.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
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>
27#include <xmloff/xmltoken.hxx>
28#include <tools/debug.hxx>
30
31using namespace ::com::sun::star;
32
33using ::com::sun::star::uno::Any;
34using ::com::sun::star::uno::Reference;
35using ::com::sun::star::uno::Sequence;
36using ::com::sun::star::uno::Type;
37using ::com::sun::star::uno::XInterface;
38using ::com::sun::star::document::XEventsSupplier;
39using ::com::sun::star::container::XNameReplace;
41
43 const css::uno::Reference<css::uno::XComponentContext>& xContext)
44 : SvXMLImport(xContext, "com.sun.star.comp.Writer.XMLOasisAutotextEventsImporter")
45{
46}
47
49
50void XMLAutoTextEventImport::initialize(const Sequence<Any>& rArguments)
51{
52 // The events may come as either an XNameReplace or XEventsSupplier.
53
54 for (const auto& rArgument : rArguments)
55 {
56 const Type& rType = rArgument.getValueType();
58 {
59 Reference<XEventsSupplier> xSupplier;
60 rArgument >>= xSupplier;
61 DBG_ASSERT(xSupplier.is(), "need XEventsSupplier or XNameReplace");
62
63 xEvents = xSupplier->getEvents();
64 }
65 else if (rType == cppu::UnoType<XNameReplace>::get())
66 {
67 rArgument >>= xEvents;
68 DBG_ASSERT(xEvents.is(), "need XEventsSupplier or XNameReplace");
69 }
70 }
71
72 // call parent
73 SvXMLImport::initialize(rArguments);
74}
75
77 sal_Int32 nElement, const Reference<css::xml::sax::XFastAttributeList>& /*xAttrList*/)
78{
79 if (xEvents.is() && nElement == XML_ELEMENT(OOO, XML_AUTO_TEXT_EVENTS))
80 {
82 }
83 return nullptr;
84}
85
86extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
88 css::uno::XComponentContext* context, css::uno::Sequence<css::uno::Any> const&)
89{
90 return cppu::acquire(new XMLAutoTextEventImport(context));
91}
92
93/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SAL_DLLPUBLIC_EXPORT css::uno::XInterface * com_sun_star_comp_Writer_XMLOasisAutotextEventsImporter_get_implementation(css::uno::XComponentContext *context, css::uno::Sequence< css::uno::Any > const &)
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
Import the text:auto-text-container element.
css::uno::Reference< css::container::XNameReplace > xEvents
virtual ~XMLAutoTextEventImport() noexcept override
virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any > &rArguments) override
virtual SvXMLImportContext * CreateFastContext(sal_Int32 Element, const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList > &xAttrList) override
XMLAutoTextEventImport(const css::uno::Reference< css::uno::XComponentContext > &xContext)
#define DBG_ASSERT(sCon, aError)
Type
@ XML_AUTO_TEXT_EVENTS
Definition: xmltoken.hxx:295
#define XML_ELEMENT(prefix, name)
Definition: xmlimp.hxx:97