summaryrefslogtreecommitdiffstats
path: root/xmloff/source/text/xmllinebreakcontext.hxx
blob: ef1f744bb44dbecd876ef579df511dea16bbf472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* -*- 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/.
 */

#pragma once

#include <xmloff/dllapi.h>
#include <xmloff/xmlictxt.hxx>

class XMLTextImportHelper;

/// Handles <text:line-break loext:clear="..."> when the attribute is present.
class XMLOFF_DLLPUBLIC SvXMLLineBreakContext : public SvXMLImportContext
{
    XMLTextImportHelper& m_rHelper;

public:
    SvXMLLineBreakContext(SvXMLImport& rImport, XMLTextImportHelper& rHelper);

protected:
    void SAL_CALL startFastElement(
        sal_Int32 nElement,
        const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttrList) override;
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */