Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sc / inc / filtuno.hxx
blobdd6b55950d09d15244238bc13fbdfc76b6b6087d
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/XServiceInfo.hpp>
28 #include <cppuhelper/implbase.hxx>
30 namespace com { namespace sun { namespace star { namespace io {
31 class XInputStream;
32 } } } }
34 class ScFilterOptionsObj : public ::cppu::WeakImplHelper<
35 css::beans::XPropertyAccess,
36 css::ui::dialogs::XExecutableDialog,
37 css::document::XImporter,
38 css::document::XExporter,
39 css::lang::XServiceInfo >
41 private:
42 OUString aFileName;
43 OUString aFilterName;
44 OUString aFilterOptions;
45 css::uno::Reference< css::io::XInputStream > xInputStream;
46 bool bExport;
48 public:
49 ScFilterOptionsObj();
50 virtual ~ScFilterOptionsObj() override;
52 // XPropertyAccess
53 virtual css::uno::Sequence< css::beans::PropertyValue >
54 SAL_CALL getPropertyValues() override;
55 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence<
56 css::beans::PropertyValue >& aProps ) override;
58 // XExecutableDialog
59 virtual void SAL_CALL setTitle( const OUString& aTitle ) override;
60 virtual sal_Int16 SAL_CALL execute() override;
62 // XImporter
63 virtual void SAL_CALL setTargetDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override;
65 // XExporter
66 virtual void SAL_CALL setSourceDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override;
68 // XServiceInfo
69 virtual OUString SAL_CALL getImplementationName() override;
70 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
71 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
74 #endif
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */