fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / framework / inc / xml / saxnamespacefilter.hxx
blobb6764f2fdd9c3b150998c15b620ad5b87d3bfb25
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 INCLUDED_FRAMEWORK_INC_XML_SAXNAMESPACEFILTER_HXX
21 #define INCLUDED_FRAMEWORK_INC_XML_SAXNAMESPACEFILTER_HXX
23 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
24 #include <xml/xmlnamespaces.hxx>
25 #include <rtl/ustring.hxx>
26 #include <vcl/menu.hxx>
27 #include <cppuhelper/implbase1.hxx>
29 #include <stack>
30 #include <framework/fwedllapi.h>
32 namespace framework
35 class FWE_DLLPUBLIC SaxNamespaceFilter :
36 public ::cppu::WeakImplHelper1< ::com::sun::star::xml::sax::XDocumentHandler >
38 public:
39 SaxNamespaceFilter( ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler >& rSax1DocumentHandler );
40 virtual ~SaxNamespaceFilter();
42 // XDocumentHandler
43 virtual void SAL_CALL startDocument()
44 throw ( ::com::sun::star::xml::sax::SAXException,
45 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
47 virtual void SAL_CALL endDocument()
48 throw( ::com::sun::star::xml::sax::SAXException,
49 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
51 virtual void SAL_CALL startElement(
52 const OUString& aName,
53 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > &xAttribs)
54 throw( ::com::sun::star::xml::sax::SAXException,
55 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
57 virtual void SAL_CALL endElement(const OUString& aName)
58 throw( ::com::sun::star::xml::sax::SAXException,
59 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
61 virtual void SAL_CALL characters(const OUString& aChars)
62 throw( ::com::sun::star::xml::sax::SAXException,
63 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
65 virtual void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces)
66 throw( ::com::sun::star::xml::sax::SAXException,
67 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
69 virtual void SAL_CALL processingInstruction(const OUString& aTarget,
70 const OUString& aData)
71 throw( ::com::sun::star::xml::sax::SAXException,
72 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
74 virtual void SAL_CALL setDocumentLocator(
75 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XLocator > &xLocator)
76 throw( ::com::sun::star::xml::sax::SAXException,
77 ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
79 protected:
80 typedef ::std::stack< XMLNamespaces > NamespaceStack;
82 OUString getErrorLineString();
84 ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XLocator > m_xLocator;
85 ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler> xDocumentHandler;
86 NamespaceStack m_aNamespaceStack;
87 sal_Int32 m_nDepth;
89 OUString m_aXMLAttributeNamespace;
90 OUString m_aXMLAttributeType;
96 #endif // INCLUDED_FRAMEWORK_INC_XML_SAXNAMESPACEFILTER_HXX
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */