tdf#164627 docx export: consolidate getWordCompatibilityMode()
[LibreOffice.git] / xmloff / source / transform / TransformerContext.cxx
blob658aee8bfc34906bf692201d2f6dc1a41099d65f
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 <com/sun/star/xml/sax/XDocumentHandler.hpp>
21 #include <utility>
22 #include <osl/diagnose.h>
24 #include "TransformerBase.hxx"
26 #include "TransformerContext.hxx"
29 using namespace ::com::sun::star::uno;
30 using namespace ::com::sun::star::xml::sax;
32 bool XMLTransformerContext::HasQName( sal_uInt16 nPrefix,
33 ::xmloff::token::XMLTokenEnum eToken ) const
35 OUString aLocalName;
36 return GetTransformer().GetNamespaceMap().GetKeyByAttrName( m_aQName,
37 &aLocalName ) == nPrefix &&
38 ::xmloff::token::IsXMLToken( aLocalName, eToken );
41 bool XMLTransformerContext::HasNamespace( sal_uInt16 nPrefix ) const
43 return GetTransformer().GetNamespaceMap().GetKeyByAttrName( m_aQName ) == nPrefix;
46 XMLTransformerContext::XMLTransformerContext( XMLTransformerBase& rImp,
47 OUString aQName )
48 : m_rTransformer(rImp)
49 , m_aQName(std::move(aQName))
53 rtl::Reference<XMLTransformerContext> XMLTransformerContext::CreateChildContext( sal_uInt16 nPrefix,
54 const OUString& rLocalName,
55 const OUString& rQName,
56 const Reference< XAttributeList >& )
58 return m_rTransformer.CreateContext( nPrefix, rLocalName, rQName );
61 void XMLTransformerContext::StartElement( const Reference< XAttributeList >& rAttrList )
63 m_rTransformer.GetDocHandler()->startElement( m_aQName, rAttrList );
66 void XMLTransformerContext::EndElement()
68 GetTransformer().GetDocHandler()->endElement( m_aQName );
71 void XMLTransformerContext::Characters( const OUString& rChars )
73 m_rTransformer.GetDocHandler()->characters( rChars );
76 bool XMLTransformerContext::IsPersistent() const
78 return false;
81 void XMLTransformerContext::Export()
83 OSL_ENSURE( false, "context is not persistent" );
86 void XMLTransformerContext::ExportContent()
88 OSL_ENSURE( false, "context is not persistent" );
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */