1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
32 namespace com
{ namespace sun
{ namespace star
{ namespace io
{
36 class ScFilterOptionsObj
: public ::cppu::WeakImplHelper5
<
37 ::com::sun::star::beans::XPropertyAccess
,
38 ::com::sun::star::ui::dialogs::XExecutableDialog
,
39 ::com::sun::star::document::XImporter
,
40 ::com::sun::star::document::XExporter
,
41 ::com::sun::star::lang::XServiceInfo
>
46 OUString aFilterOptions
;
47 css::uno::Reference
< css::io::XInputStream
> xInputStream
;
52 virtual ~ScFilterOptionsObj();
55 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>
56 SAL_CALL
getPropertyValues() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
57 virtual void SAL_CALL
setPropertyValues( const ::com::sun::star::uno::Sequence
<
58 ::com::sun::star::beans::PropertyValue
>& aProps
)
59 throw (::com::sun::star::beans::UnknownPropertyException
,
60 ::com::sun::star::beans::PropertyVetoException
,
61 ::com::sun::star::lang::IllegalArgumentException
,
62 ::com::sun::star::lang::WrappedTargetException
,
63 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
66 virtual void SAL_CALL
setTitle( const OUString
& aTitle
)
67 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
68 virtual sal_Int16 SAL_CALL
execute() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
71 virtual void SAL_CALL
setTargetDocument( const ::com::sun::star::uno::Reference
<
72 ::com::sun::star::lang::XComponent
>& xDoc
)
73 throw (::com::sun::star::lang::IllegalArgumentException
,
74 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
77 virtual void SAL_CALL
setSourceDocument( const ::com::sun::star::uno::Reference
<
78 ::com::sun::star::lang::XComponent
>& xDoc
)
79 throw (::com::sun::star::lang::IllegalArgumentException
,
80 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
83 virtual OUString SAL_CALL
getImplementationName()
84 throw(::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
85 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
86 throw(::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
87 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
88 throw(::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */