bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / source / transform / OOo2Oasis.hxx
blob085b9f991184db1213678c32e764ffe898d5785a
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 ::com::sun::star::document::XImporter,
33 public ::com::sun::star::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 ) SAL_OVERRIDE;
47 virtual XMLTransformerActions *GetUserDefinedActions( sal_uInt16 n ) SAL_OVERRIDE;
49 public:
50 OOo2OasisTransformer( const sal_Char *pImplName=0,
51 const sal_Char *pSubServiceName=0 ) throw();
52 virtual ~OOo2OasisTransformer() throw();
54 static const ::com::sun::star::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 ::com::sun::star::uno::Any SAL_CALL queryInterface(
63 const ::com::sun::star::uno::Type& aType )
64 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
66 virtual void SAL_CALL acquire( ) throw () SAL_OVERRIDE
67 { XMLTransformerBase::acquire(); };
69 virtual void SAL_CALL release( ) throw () SAL_OVERRIDE
70 { XMLTransformerBase::release(); };
72 // XInitialization
73 virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
76 // XServiceInfo
77 virtual OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
78 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
79 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
81 // XTypeProvider
82 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
84 // XUnoTunnel
85 virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
87 // XImporter
88 virtual void SAL_CALL setTargetDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& xDoc ) throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
90 // XFilter
91 virtual sal_Bool SAL_CALL filter( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
92 virtual void SAL_CALL cancel( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
94 void SAL_CALL Initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw(::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
96 // ::com::sun::star::xml::sax::XDocumentHandler
97 virtual void SAL_CALL startDocument()
98 throw( ::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
100 virtual OUString GetEventName( const OUString& rName,
101 bool bForm = false ) SAL_OVERRIDE;
104 #endif // INCLUDED_XMLOFF_SOURCE_TRANSFORM_OOO2OASIS_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */