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 SC_FILTUNO_HXX
21 #define SC_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 ::com::sun::star::uno::Reference
<
54 ::com::sun::star::io::XInputStream
> xInputStream
;
59 virtual ~ScFilterOptionsObj();
61 static OUString
getImplementationName_Static();
62 static ::com::sun::star::uno::Sequence
< OUString
> getSupportedServiceNames_Static();
65 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>
66 SAL_CALL
getPropertyValues() throw (::com::sun::star::uno::RuntimeException
);
67 virtual void SAL_CALL
setPropertyValues( const ::com::sun::star::uno::Sequence
<
68 ::com::sun::star::beans::PropertyValue
>& aProps
)
69 throw (::com::sun::star::beans::UnknownPropertyException
,
70 ::com::sun::star::beans::PropertyVetoException
,
71 ::com::sun::star::lang::IllegalArgumentException
,
72 ::com::sun::star::lang::WrappedTargetException
,
73 ::com::sun::star::uno::RuntimeException
);
76 virtual void SAL_CALL
setTitle( const OUString
& aTitle
)
77 throw (::com::sun::star::uno::RuntimeException
);
78 virtual sal_Int16 SAL_CALL
execute() throw (::com::sun::star::uno::RuntimeException
);
81 virtual void SAL_CALL
setTargetDocument( const ::com::sun::star::uno::Reference
<
82 ::com::sun::star::lang::XComponent
>& xDoc
)
83 throw (::com::sun::star::lang::IllegalArgumentException
,
84 ::com::sun::star::uno::RuntimeException
);
87 virtual void SAL_CALL
setSourceDocument( const ::com::sun::star::uno::Reference
<
88 ::com::sun::star::lang::XComponent
>& xDoc
)
89 throw (::com::sun::star::lang::IllegalArgumentException
,
90 ::com::sun::star::uno::RuntimeException
);
93 virtual OUString SAL_CALL
getImplementationName()
94 throw(::com::sun::star::uno::RuntimeException
);
95 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
)
96 throw(::com::sun::star::uno::RuntimeException
);
97 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames()
98 throw(::com::sun::star::uno::RuntimeException
);
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */