Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / xmloff / source / transform / OOo2Oasis.hxx
blobcab422e77175c087f113f195f7f2dac8f1a79f50
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_XMLOFF_SOURCE_TRANSFORM_OOO2OASIS_HXX
21 #define INCLUDED_XMLOFF_SOURCE_TRANSFORM_OOO2OASIS_HXX
23 #include <com/sun/star/document/XImporter.hpp>
24 #include <com/sun/star/document/XFilter.hpp>
25 #include "ActionMapTypesOOo.hxx"
26 #include "TransformerBase.hxx"
28 class XMLTransformerOOoEventMap_Impl;
30 class OOo2OasisTransformer :
31 public XMLTransformerBase,
32 public css::document::XImporter,
33 public css::document::XFilter
35 OUString m_aImplName;
36 OUString m_aSubServiceName;
38 XMLTransformerActions *m_aActions[MAX_OOO_ACTIONS];
39 XMLTransformerOOoEventMap_Impl *m_pEventMap;
40 protected:
42 virtual XMLTransformerContext *CreateUserDefinedContext(
43 const TransformerAction_Impl& rAction,
44 const OUString& rQName,
45 bool bPersistent=false ) override;
47 virtual XMLTransformerActions *GetUserDefinedActions( sal_uInt16 n ) override;
49 public:
50 OOo2OasisTransformer( const sal_Char *pImplName=nullptr,
51 const sal_Char *pSubServiceName=nullptr ) throw();
52 virtual ~OOo2OasisTransformer() throw();
54 static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
56 // XInterface
58 // (XInterface methods need to be implemented to disambigouate
59 // between those inherited through XMLTransformerBase and
60 // the new interfaces).
62 virtual css::uno::Any SAL_CALL queryInterface(
63 const css::uno::Type& aType )
64 throw (css::uno::RuntimeException, std::exception) override;
66 virtual void SAL_CALL acquire( ) throw () override
67 { XMLTransformerBase::acquire(); };
69 virtual void SAL_CALL release( ) throw () override
70 { XMLTransformerBase::release(); };
72 // XInitialization
73 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) throw(css::uno::Exception, css::uno::RuntimeException, std::exception) override;
76 // XServiceInfo
77 virtual OUString SAL_CALL getImplementationName( ) throw(css::uno::RuntimeException, std::exception) override;
78 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(css::uno::RuntimeException, std::exception) override;
79 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(css::uno::RuntimeException, std::exception) override;
81 // XTypeProvider
82 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) throw(css::uno::RuntimeException, std::exception) override;
84 // XUnoTunnel
85 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException, std::exception) override;
87 // XImporter
88 virtual void SAL_CALL setTargetDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) throw(css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override;
90 // XFilter
91 virtual sal_Bool SAL_CALL filter( const css::uno::Sequence< css::beans::PropertyValue >& aDescriptor ) throw (css::uno::RuntimeException, std::exception) override;
92 virtual void SAL_CALL cancel( ) throw (css::uno::RuntimeException, std::exception) override;
94 void SAL_CALL Initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) throw(css::uno::Exception, css::uno::RuntimeException);
96 // css::xml::sax::XDocumentHandler
97 virtual void SAL_CALL startDocument()
98 throw( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
100 virtual OUString GetEventName( const OUString& rName,
101 bool bForm = false ) override;
104 #endif // INCLUDED_XMLOFF_SOURCE_TRANSFORM_OOO2OASIS_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */