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/XServiceInfo.hpp>
28 #include <cppuhelper/implbase5.hxx>
31 namespace com
{ namespace sun
{ namespace star
{ namespace io
{
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
>& );
42 class ScFilterOptionsObj
: public ::cppu::WeakImplHelper5
<
43 ::com::sun::star::beans::XPropertyAccess
,
44 ::com::sun::star::ui::dialogs::XExecutableDialog
,
45 ::com::sun::star::document::XImporter
,
46 ::com::sun::star::document::XExporter
,
47 ::com::sun::star::lang::XServiceInfo
>
52 OUString aFilterOptions
;
53 css::uno::Reference
< css::io::XInputStream
> xInputStream
;
58 virtual ~ScFilterOptionsObj();
60 static OUString
getImplementationName_Static();
61 static ::com::sun::star::uno::Sequence
< OUString
> getSupportedServiceNames_Static();
64 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>
65 SAL_CALL
getPropertyValues() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
66 virtual void SAL_CALL
setPropertyValues( const ::com::sun::star::uno::Sequence
<
67 ::com::sun::star::beans::PropertyValue
>& aProps
)
68 throw (::com::sun::star::beans::UnknownPropertyException
,
69 ::com::sun::star::beans::PropertyVetoException
,
70 ::com::sun::star::lang::IllegalArgumentException
,
71 ::com::sun::star::lang::WrappedTargetException
,
72 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
75 virtual void SAL_CALL
setTitle( const OUString
& aTitle
)
76 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
77 virtual sal_Int16 SAL_CALL
execute() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
80 virtual void SAL_CALL
setTargetDocument( const ::com::sun::star::uno::Reference
<
81 ::com::sun::star::lang::XComponent
>& xDoc
)
82 throw (::com::sun::star::lang::IllegalArgumentException
,
83 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
86 virtual void SAL_CALL
setSourceDocument( const ::com::sun::star::uno::Reference
<
87 ::com::sun::star::lang::XComponent
>& xDoc
)
88 throw (::com::sun::star::lang::IllegalArgumentException
,
89 ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
92 virtual OUString SAL_CALL
getImplementationName()
93 throw(::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
94 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
95 throw(::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
96 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
97 throw(::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */