Update git submodules
[LibreOffice.git] / sc / source / filter / xml / xmlrowi.hxx
blob981a74a59758c8aea4159811a67c3d3aeb85f002
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #pragma once
21 #include <types.hxx>
22 #include "importcontext.hxx"
25 namespace sax_fastparser { class FastAttributeList; }
27 class ScXMLTableRowContext : public ScXMLImportContext
29 OUString sStyleName;
30 OUString sVisibility;
31 sal_Int32 nRepeatedRows;
32 bool bHasCell;
34 public:
36 ScXMLTableRowContext( ScXMLImport& rImport,
37 const rtl::Reference<sax_fastparser::FastAttributeList>& rAttrList );
39 virtual ~ScXMLTableRowContext() override;
41 virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
43 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL
44 createFastChildContext( sal_Int32 nElement,
45 const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttrList ) override;
48 class ScXMLTableRowsContext : public ScXMLImportContext
50 SCROW nHeaderStartRow;
51 SCROW nGroupStartRow;
52 bool bHeader;
53 bool bGroup;
54 bool bGroupDisplay;
56 public:
58 ScXMLTableRowsContext( ScXMLImport& rImport,
59 const rtl::Reference<sax_fastparser::FastAttributeList>& rAttrList,
60 const bool bHeader, const bool bGroup);
62 virtual ~ScXMLTableRowsContext() override;
64 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL
65 createFastChildContext( sal_Int32 nElement,
66 const css::uno::Reference<css::xml::sax::XFastAttributeList>& xAttrList ) override;
68 virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */