Show duplicate attribute
[LibreOffice.git] / sc / inc / filtuno.hxx
blob5b8969b172f67f8487ef76a01a46f098093755f6
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_SC_INC_FILTUNO_HXX
21 #define INCLUDED_SC_INC_FILTUNO_HXX
23 #include <com/sun/star/beans/XPropertyAccess.hpp>
24 #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
25 #include <com/sun/star/document/XImporter.hpp>
26 #include <com/sun/star/document/XExporter.hpp>
27 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <cppuhelper/implbase5.hxx>
30 #include "scdllapi.h"
32 namespace com { namespace sun { namespace star { namespace io {
33 class XInputStream;
34 } } } }
36 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL
37 ScFilterOptionsObj_CreateInstance(
38 const ::com::sun::star::uno::Reference<
39 ::com::sun::star::lang::XMultiServiceFactory >& );
41 class ScFilterOptionsObj : public ::cppu::WeakImplHelper5<
42 ::com::sun::star::beans::XPropertyAccess,
43 ::com::sun::star::ui::dialogs::XExecutableDialog,
44 ::com::sun::star::document::XImporter,
45 ::com::sun::star::document::XExporter,
46 ::com::sun::star::lang::XServiceInfo >
48 private:
49 OUString aFileName;
50 OUString aFilterName;
51 OUString aFilterOptions;
52 css::uno::Reference< css::io::XInputStream > xInputStream;
53 bool bExport;
55 public:
56 ScFilterOptionsObj();
57 virtual ~ScFilterOptionsObj();
59 static OUString getImplementationName_Static();
60 static ::com::sun::star::uno::Sequence< OUString> getSupportedServiceNames_Static();
62 // XPropertyAccess
63 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >
64 SAL_CALL getPropertyValues() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
65 virtual void SAL_CALL setPropertyValues( const ::com::sun::star::uno::Sequence<
66 ::com::sun::star::beans::PropertyValue >& aProps )
67 throw (::com::sun::star::beans::UnknownPropertyException,
68 ::com::sun::star::beans::PropertyVetoException,
69 ::com::sun::star::lang::IllegalArgumentException,
70 ::com::sun::star::lang::WrappedTargetException,
71 ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
73 // XExecutableDialog
74 virtual void SAL_CALL setTitle( const OUString& aTitle )
75 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
76 virtual sal_Int16 SAL_CALL execute() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
78 // XImporter
79 virtual void SAL_CALL setTargetDocument( const ::com::sun::star::uno::Reference<
80 ::com::sun::star::lang::XComponent >& xDoc )
81 throw (::com::sun::star::lang::IllegalArgumentException,
82 ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
84 // XExporter
85 virtual void SAL_CALL setSourceDocument( const ::com::sun::star::uno::Reference<
86 ::com::sun::star::lang::XComponent >& xDoc )
87 throw (::com::sun::star::lang::IllegalArgumentException,
88 ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
90 // XServiceInfo
91 virtual OUString SAL_CALL getImplementationName()
92 throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
93 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
94 throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
95 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
96 throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
99 #endif
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */