update credits
[LibreOffice.git] / framework / inc / xml / saxnamespacefilter.hxx
blob1ceb01bfd4ecab7c85a708381748ecf6cbfa6582
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 #ifndef __FRAMEWORK_SERVICES_SAXNAMESPACEFILTER_HXX_
21 #define __FRAMEWORK_SERVICES_SAXNAMESPACEFILTER_HXX_
23 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
24 #include <threadhelp/threadhelpbase.hxx>
25 #include <xml/xmlnamespaces.hxx>
26 #include <rtl/ustring.hxx>
27 #include <vcl/menu.hxx>
28 #include <cppuhelper/implbase1.hxx>
30 #include <stack>
31 #include <framework/fwedllapi.h>
33 namespace framework
36 class FWE_DLLPUBLIC SaxNamespaceFilter : public ThreadHelpBase, // Struct for right initalization of mutex member! Must be first of baseclasses.
37 public ::cppu::WeakImplHelper1< ::com::sun::star::xml::sax::XDocumentHandler >
39 public:
40 SaxNamespaceFilter( ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler >& rSax1DocumentHandler );
41 virtual ~SaxNamespaceFilter();
43 // XDocumentHandler
44 virtual void SAL_CALL startDocument(void)
45 throw ( ::com::sun::star::xml::sax::SAXException,
46 ::com::sun::star::uno::RuntimeException );
48 virtual void SAL_CALL endDocument(void)
49 throw( ::com::sun::star::xml::sax::SAXException,
50 ::com::sun::star::uno::RuntimeException );
52 virtual void SAL_CALL startElement(
53 const OUString& aName,
54 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > &xAttribs)
55 throw( ::com::sun::star::xml::sax::SAXException,
56 ::com::sun::star::uno::RuntimeException );
58 virtual void SAL_CALL endElement(const OUString& aName)
59 throw( ::com::sun::star::xml::sax::SAXException,
60 ::com::sun::star::uno::RuntimeException );
62 virtual void SAL_CALL characters(const OUString& aChars)
63 throw( ::com::sun::star::xml::sax::SAXException,
64 ::com::sun::star::uno::RuntimeException );
66 virtual void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces)
67 throw( ::com::sun::star::xml::sax::SAXException,
68 ::com::sun::star::uno::RuntimeException );
70 virtual void SAL_CALL processingInstruction(const OUString& aTarget,
71 const OUString& aData)
72 throw( ::com::sun::star::xml::sax::SAXException,
73 ::com::sun::star::uno::RuntimeException );
75 virtual void SAL_CALL setDocumentLocator(
76 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XLocator > &xLocator)
77 throw( ::com::sun::star::xml::sax::SAXException,
78 ::com::sun::star::uno::RuntimeException );
80 protected:
81 typedef ::std::stack< XMLNamespaces > NamespaceStack;
83 OUString getErrorLineString();
85 ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XLocator > m_xLocator;
86 ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler> xDocumentHandler;
87 NamespaceStack m_aNamespaceStack;
88 sal_Int32 m_nDepth;
90 OUString m_aXMLAttributeNamespace;
91 OUString m_aXMLAttributeType;
97 #endif // __FRAMEWORK_SERVICES_SAXNAMESPACEFILTER_HXX_
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */