nss: upgrade to release 3.73
[LibreOffice.git] / sc / source / filter / xml / xmlconti.cxx
blob1c5d55292fdc5e596185a210f88d9bab8522aa9f
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 .
20 #include "xmlconti.hxx"
21 #include "xmlimprt.hxx"
23 #include <xmloff/namespacemap.hxx>
24 #include <xmloff/xmlnamespace.hxx>
25 #include <xmloff/xmltoken.hxx>
27 using namespace xmloff::token;
29 ScXMLContentContext::ScXMLContentContext( ScXMLImport& rImport,
30 sal_uInt16 nPrfx,
31 const OUString& rLName,
32 OUStringBuffer& sTempValue) :
33 ScXMLImportContext( rImport, nPrfx, rLName ),
34 sValue(sTempValue)
38 ScXMLContentContext::ScXMLContentContext( ScXMLImport& rImport,
39 OUStringBuffer& sTempValue) :
40 ScXMLImportContext( rImport ),
41 sValue(sTempValue)
45 ScXMLContentContext::~ScXMLContentContext()
49 SvXMLImportContextRef ScXMLContentContext::CreateChildContext( sal_uInt16 nPrefix,
50 const OUString& rLName,
51 const css::uno::Reference<css::xml::sax::XAttributeList>& xAttrList )
53 if ((nPrefix == XML_NAMESPACE_TEXT) && IsXMLToken(rLName, XML_S))
55 sal_Int32 nRepeat(0);
56 sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
57 for( sal_Int16 i=0; i < nAttrCount; ++i )
59 const OUString& sAttrName(xAttrList->getNameByIndex( i ));
60 const OUString& sAttrValue(xAttrList->getValueByIndex( i ));
61 OUString aLocalName;
62 sal_uInt16 nPrfx = GetScImport().GetNamespaceMap().GetKeyByAttrName(
63 sAttrName, &aLocalName );
64 if ((nPrfx == XML_NAMESPACE_TEXT) && IsXMLToken(aLocalName, XML_C))
65 nRepeat = sAttrValue.toInt32();
67 if (nRepeat)
68 for (sal_Int32 j = 0; j < nRepeat; ++j)
69 sValue.append(' ');
70 else
71 sValue.append(' ');
74 return new SvXMLImportContext( GetImport(), nPrefix, rLName );
77 css::uno::Reference< css::xml::sax::XFastContextHandler > ScXMLContentContext::createFastChildContext(
78 sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
80 if (nElement == XML_ELEMENT(TEXT, XML_S))
82 sal_Int32 nRepeat(0);
83 for (auto &aIter : sax_fastparser::castToFastAttributeList( xAttrList ))
85 if (aIter.getToken() == XML_ELEMENT(TEXT, XML_C))
86 nRepeat = aIter.toInt32();
88 if (nRepeat)
89 for (sal_Int32 j = 0; j < nRepeat; ++j)
90 sValue.append(' ');
91 else
92 sValue.append(' ');
95 return new SvXMLImportContext( GetImport() );
98 void ScXMLContentContext::characters( const OUString& rChars )
100 sValue.append(rChars);
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */