Bump version to 4.3-4
[LibreOffice.git] / writerfilter / source / filter / WriterFilter.hxx
blob2691e70fb374dd0c03c2955f51e9a7d1a0af48a6
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_WRITERFILTER_SOURCE_FILTER_WRITERFILTER_HXX
21 #define INCLUDED_WRITERFILTER_SOURCE_FILTER_WRITERFILTER_HXX
23 #include <com/sun/star/document/XFilter.hpp>
24 #include <com/sun/star/document/XImporter.hpp>
25 #include <com/sun/star/document/XExporter.hpp>
26 #include <com/sun/star/lang/XInitialization.hpp>
27 #include <com/sun/star/lang/XServiceInfo.hpp>
28 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
29 #include <cppuhelper/implbase5.hxx>
31 /// Common DOC/DOCX filter, calls DocxExportFilter via UNO or does the DOCX import.
32 class WriterFilter : public cppu::WeakImplHelper5
34 com::sun::star::document::XFilter,
35 com::sun::star::document::XImporter,
36 com::sun::star::document::XExporter,
37 com::sun::star::lang::XInitialization,
38 com::sun::star::lang::XServiceInfo
42 protected:
43 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
44 ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > m_xSrcDoc, m_xDstDoc;
45 OUString m_sFilterName;
46 ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler > m_xHandler;
49 public:
50 WriterFilter( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext);
51 virtual ~WriterFilter();
53 // XFilter
54 virtual sal_Bool SAL_CALL filter( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor )
55 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
56 virtual void SAL_CALL cancel( )
57 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
59 // XImporter
60 virtual void SAL_CALL setTargetDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& xDoc )
61 throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
63 // XExporter
64 virtual void SAL_CALL setSourceDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& xDoc )
65 throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
67 // XInitialization
68 virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments )
69 throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
71 // XServiceInfo
72 virtual OUString SAL_CALL getImplementationName( )
73 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
74 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
75 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
76 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
77 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
79 private:
80 void putPropertiesToDocumentGrabBag( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aProperties );
85 OUString WriterFilter_getImplementationName()
86 throw ( ::com::sun::star::uno::RuntimeException );
88 bool SAL_CALL WriterFilter_supportsService( const OUString& ServiceName )
89 throw ( ::com::sun::star::uno::RuntimeException );
91 ::com::sun::star::uno::Sequence< OUString > SAL_CALL WriterFilter_getSupportedServiceNames( )
92 throw ( ::com::sun::star::uno::RuntimeException );
94 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL WriterFilter_createInstance(
95 const ::com::sun::star::uno::Reference<
96 ::com::sun::star::uno::XComponentContext > &xContext)
97 throw( ::com::sun::star::uno::Exception );
98 #endif
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */