/* -*- 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 #include using namespace ::com::sun::star; namespace oox { FormulaImportBase::FormulaImportBase() { } namespace formulaimport { class LazyMathBufferingContext : public core::ContextHandler { private: XmlStreamBuilder & m_rBuilder; long m_Counter; 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()) , m_Counter(0) { } void SAL_CALL LazyMathBufferingContext::startFastElement( sal_Int32 const nElement, uno::Reference const& xAttrs) { if (0 < m_Counter) // ignore a14:m { // ignore outer oMathPara if (1 != m_Counter || OOX_TOKEN(officeMath, oMathPara) != nElement) { m_rBuilder.appendOpeningTag(nElement, xAttrs); } } ++m_Counter; } void SAL_CALL LazyMathBufferingContext::endFastElement(sal_Int32 const nElement) { --m_Counter; if (0 < m_Counter) // ignore a14:m { // ignore outer oMathPara if (1 != m_Counter || 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_Counter) // ignore a14:m { m_rBuilder.appendCharacters(rChars); } } } // namespace formulaimport core::ContextHandlerRef CreateLazyMathBufferingContext( core::ContextHandler const& rParent, drawingml::TextParagraph & rPara) { return new formulaimport::LazyMathBufferingContext(rParent, rPara); } } // namespace oox /* vim:set shiftwidth=4 softtabstop=4 expandtab: */