From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- oox/source/mathml/import.cxx | 114 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 oox/source/mathml/import.cxx (limited to 'oox/source/mathml/import.cxx') diff --git a/oox/source/mathml/import.cxx b/oox/source/mathml/import.cxx new file mode 100644 index 000000000..bff603d2b --- /dev/null +++ b/oox/source/mathml/import.cxx @@ -0,0 +1,114 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include + +#include +#include +#include + +#include + + +using namespace ::com::sun::star; + +namespace oox +{ + +FormulaImportBase::FormulaImportBase() +{ +} + +namespace formulaimport { + +namespace { + +class LazyMathBufferingContext : public core::ContextHandler +{ +private: + XmlStreamBuilder & m_rBuilder; + std::vector m_OpenElements; + +public: + LazyMathBufferingContext(core::ContextHandler const& rParent, + drawingml::TextParagraph & rPara); + + // com.sun.star.xml.sax.XFastContextHandler interface --------------------- + + virtual void SAL_CALL startFastElement(::sal_Int32 Element, const uno::Reference& xAttribs) override; + virtual void SAL_CALL endFastElement(::sal_Int32 Element) override; + virtual uno::Reference< xml::sax::XFastContextHandler> SAL_CALL createFastChildContext(::sal_Int32 Element, const uno::Reference& xAttribs) override; + virtual void SAL_CALL characters(const OUString& rChars) override; + +}; + +} + +LazyMathBufferingContext::LazyMathBufferingContext( + core::ContextHandler const& rParent, drawingml::TextParagraph & rPara) + : core::ContextHandler(rParent) + , m_rBuilder(rPara.GetMathXml()) +{ +} + +void SAL_CALL LazyMathBufferingContext::startFastElement( + sal_Int32 const nElement, + uno::Reference const& xAttrs) +{ + if (0 < m_OpenElements.size()) // ignore a14:m + { // ignore outer oMathPara + if (1 != m_OpenElements.size() || OOX_TOKEN(officeMath, oMathPara) != nElement) + { + m_rBuilder.appendOpeningTag(nElement, xAttrs); + } + } + m_OpenElements.push_back(nElement); +} + +void SAL_CALL LazyMathBufferingContext::endFastElement(sal_Int32 const nElement) +{ + m_OpenElements.pop_back(); + if (0 < m_OpenElements.size()) // ignore a14:m + { // ignore outer oMathPara + if (1 != m_OpenElements.size() || OOX_TOKEN(officeMath, oMathPara) != nElement) + { + m_rBuilder.appendClosingTag(nElement); + } + } +} + +uno::Reference SAL_CALL +LazyMathBufferingContext::createFastChildContext(sal_Int32 const, + uno::Reference const&) +{ + return this; +} + +void SAL_CALL LazyMathBufferingContext::characters(OUString const& rChars) +{ + if (0 < m_OpenElements.size()) // ignore a14:m + { + if (m_OpenElements.back() == OOX_TOKEN(officeMath, t)) + { + m_rBuilder.appendCharacters(rChars); + } + } +} + +} // namespace oox::formulaimport + +rtl::Reference CreateLazyMathBufferingContext( + core::ContextHandler const& rParent, drawingml::TextParagraph & rPara) +{ + return new formulaimport::LazyMathBufferingContext(rParent, rPara); +} + +} // namespace oox + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3