Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / filter / xml / xmlconti.cxx
blobcbb451ecf5993d782a0d5e86c0cc275eda0c390d
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/nmspmap.hxx>
24 #include <xmloff/xmlnmspe.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()
42 SvXMLImportContextRef ScXMLContentContext::CreateChildContext( sal_uInt16 nPrefix,
43 const OUString& rLName,
44 const css::uno::Reference<css::xml::sax::XAttributeList>& xAttrList )
46 if ((nPrefix == XML_NAMESPACE_TEXT) && IsXMLToken(rLName, XML_S))
48 sal_Int32 nRepeat(0);
49 sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
50 for( sal_Int16 i=0; i < nAttrCount; ++i )
52 const OUString& sAttrName(xAttrList->getNameByIndex( i ));
53 const OUString& sAttrValue(xAttrList->getValueByIndex( i ));
54 OUString aLocalName;
55 sal_uInt16 nPrfx = GetScImport().GetNamespaceMap().GetKeyByAttrName(
56 sAttrName, &aLocalName );
57 if ((nPrfx == XML_NAMESPACE_TEXT) && IsXMLToken(aLocalName, XML_C))
58 nRepeat = sAttrValue.toInt32();
60 if (nRepeat)
61 for (sal_Int32 j = 0; j < nRepeat; ++j)
62 sValue.append(' ');
63 else
64 sValue.append(' ');
67 return new SvXMLImportContext( GetImport(), nPrefix, rLName );
70 void ScXMLContentContext::Characters( const OUString& rChars )
72 sValue.append(rChars);
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */