merge the formfield patch from ooo-build
[ooovba.git] / xmloff / source / transform / IgnoreTContext.cxx
blob9a1aa6f17f3db105e36ed2a214a64405a8bbfef0
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: IgnoreTContext.cxx,v $
10 * $Revision: 1.8 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_xmloff.hxx"
33 #include "IgnoreTContext.hxx"
34 #ifndef _XMLOFF_TRANSFORMERBASE_HXX
35 #include "TransformerBase.hxx"
36 #endif
38 using ::rtl::OUString;
40 using namespace ::com::sun::star::uno;
41 using namespace ::com::sun::star::xml::sax;
43 TYPEINIT1( XMLIgnoreTransformerContext, XMLTransformerContext );
45 XMLIgnoreTransformerContext::XMLIgnoreTransformerContext(
46 XMLTransformerBase& rImp,
47 const OUString& rQName,
48 sal_Bool bIgnoreChars,
49 sal_Bool bIgnoreElems ) :
50 XMLTransformerContext( rImp, rQName ),
51 m_bIgnoreCharacters( bIgnoreChars ),
52 m_bIgnoreElements( bIgnoreElems ),
53 m_bRecursiveUse( sal_False )
57 XMLIgnoreTransformerContext::XMLIgnoreTransformerContext(
58 XMLTransformerBase& rTransformer,
59 const ::rtl::OUString& rQName,
60 sal_Bool bAllowCharactersRecursive ) :
61 XMLTransformerContext( rTransformer, rQName ),
62 m_bIgnoreCharacters( sal_False ),
63 m_bIgnoreElements( sal_False ),
64 m_bAllowCharactersRecursive( bAllowCharactersRecursive ),
65 m_bRecursiveUse( sal_True )
69 XMLIgnoreTransformerContext::~XMLIgnoreTransformerContext()
73 XMLTransformerContext *XMLIgnoreTransformerContext::CreateChildContext(
74 sal_uInt16 nPrefix,
75 const OUString& rLocalName,
76 const OUString& rQName,
77 const Reference< XAttributeList >& xAttrList )
79 XMLTransformerContext *pContext = 0;
80 if( m_bIgnoreElements )
81 pContext = new XMLIgnoreTransformerContext( GetTransformer(),
82 rQName, sal_True,
83 sal_True );
84 else if (m_bRecursiveUse)
85 pContext = new XMLIgnoreTransformerContext( GetTransformer(),
86 rQName, m_bAllowCharactersRecursive );
87 else
88 pContext = XMLTransformerContext::CreateChildContext(
89 nPrefix, rLocalName, rQName, xAttrList );
91 return pContext;
94 void XMLIgnoreTransformerContext::StartElement( const Reference< XAttributeList >& )
96 // ignore
99 void XMLIgnoreTransformerContext::EndElement()
101 // ignore
104 void XMLIgnoreTransformerContext::Characters( const OUString& rChars )
106 if( !m_bIgnoreCharacters )
107 GetTransformer().GetDocHandler()->characters( rChars );
108 else if ( m_bRecursiveUse && m_bAllowCharactersRecursive )
109 GetTransformer().GetDocHandler()->characters( rChars );