bump product version to 6.3.0.0.beta1
[LibreOffice.git] / svgio / inc / svgdocumenthandler.hxx
blob306b95435e1cd56a2b06e62350361d0d609090d1
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_SVGIO_INC_SVGDOCUMENTHANDLER_HXX
21 #define INCLUDED_SVGIO_INC_SVGDOCUMENTHANDLER_HXX
23 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
24 #include "svgdocument.hxx"
25 #include <cppuhelper/implbase.hxx>
27 namespace svgio { namespace svgreader { class SvgCharacterNode; }}
29 namespace svgio
31 namespace svgreader
33 class SvgDocHdl : public cppu::WeakImplHelper< css::xml::sax::XDocumentHandler >
35 private:
36 // the complete SVG Document
37 SvgDocument maDocument;
39 // current node for parsing
40 SvgNode* mpTarget;
42 // text collector string stack for css styles
43 std::vector< OUString > maCssContents;
45 bool bSkip;
47 public:
48 SvgDocHdl(const OUString& rAbsolutePath);
49 virtual ~SvgDocHdl() override;
51 // Methods XDocumentHandler
52 virtual void SAL_CALL startDocument( ) override;
53 virtual void SAL_CALL endDocument( ) override;
54 virtual void SAL_CALL startElement( const OUString& aName, const css::uno::Reference< css::xml::sax::XAttributeList >& xAttribs ) override;
55 virtual void SAL_CALL endElement( const OUString& aName ) override;
56 virtual void SAL_CALL characters( const OUString& aChars ) override;
57 virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces ) override;
58 virtual void SAL_CALL processingInstruction( const OUString& aTarget, const OUString& aData ) override;
59 virtual void SAL_CALL setDocumentLocator( const css::uno::Reference< css::xml::sax::XLocator >& xLocator ) override;
61 const SvgDocument& getSvgDocument() const { return maDocument; }
63 } // end of namespace svgreader
64 } // end of namespace svgio
66 #endif // INCLUDED_SVGIO_INC_SVGDOCUMENTHANDLER_HXX
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */