Bump version to 6.4-15
[LibreOffice.git] / sc / inc / filtuno.hxx
blob8fa870a4ac132b26277e6d2d12e2487fa3032dac
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/XInitialization.hpp>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <cppuhelper/implbase.hxx>
31 namespace com { namespace sun { namespace star { namespace io {
32 class XInputStream;
33 } } } }
35 namespace com::sun::star::awt { class XWindow; }
37 class ScFilterOptionsObj final : public ::cppu::WeakImplHelper<
38 css::beans::XPropertyAccess,
39 css::ui::dialogs::XExecutableDialog,
40 css::document::XImporter,
41 css::document::XExporter,
42 css::lang::XInitialization,
43 css::lang::XServiceInfo >
45 private:
46 OUString aFileName;
47 OUString aFilterName;
48 OUString aFilterOptions;
49 css::uno::Reference< css::io::XInputStream > xInputStream;
50 css::uno::Reference< css::awt::XWindow > xDialogParent;
51 bool bExport;
53 public:
54 ScFilterOptionsObj();
55 virtual ~ScFilterOptionsObj() override;
57 // XPropertyAccess
58 virtual css::uno::Sequence< css::beans::PropertyValue >
59 SAL_CALL getPropertyValues() override;
60 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence<
61 css::beans::PropertyValue >& aProps ) override;
63 // XExecutableDialog
64 virtual void SAL_CALL setTitle( const OUString& aTitle ) override;
65 virtual sal_Int16 SAL_CALL execute() override;
67 // XImporter
68 virtual void SAL_CALL setTargetDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override;
70 // XExporter
71 virtual void SAL_CALL setSourceDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override;
73 // XInitialization
74 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override;
76 // XServiceInfo
77 virtual OUString SAL_CALL getImplementationName() override;
78 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
79 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */