LibreOffice Module writerperfect (master) 1
xmltext.hxx
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
10#pragma once
11
12#include "xmlictxt.hxx"
13
14namespace writerperfect::exp
15{
18{
19public:
21
23 const OUString& rName,
24 const css::uno::Reference<css::xml::sax::XAttributeList>& /*xAttribs*/) override;
25 void SAL_CALL endElement(const OUString& rName) override;
26};
27
30CreateTextChildContext(XMLImport& rImport, std::u16string_view rName, bool bTopLevel = false);
31
32} // namespace writerperfect::exp
33
34/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Handler for <office:text>.
Definition: xmltext.hxx:18
XMLBodyContentContext(XMLImport &rImport)
Definition: xmltext.cxx:22
void SAL_CALL endElement(const OUString &rName) override
Definition: xmltext.cxx:27
rtl::Reference< XMLImportContext > CreateChildContext(const OUString &rName, const css::uno::Reference< css::xml::sax::XAttributeList > &) override
Definition: xmltext.cxx:33
Base class for a handler of a single XML element during ODF -> librevenge conversion.
Definition: xmlictxt.hxx:23
ODT export feeds this class to make librevenge calls.
Definition: xmlimp.hxx:69
rtl::Reference< XMLImportContext > CreateTextChildContext(XMLImport &rImport, std::u16string_view rName, bool bTopLevel)
Context factory for body text, section, table cell, etc.
Definition: xmltext.cxx:39