Prepare for removal of non-const operator[] from Sequence in drawinglayer
[LibreOffice.git] / sc / inc / filtuno.hxx
blob100fdeb001d44811cb48751a8853759e82028799
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 #pragma once
22 #include <com/sun/star/beans/XPropertyAccess.hpp>
23 #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
24 #include <com/sun/star/document/XImporter.hpp>
25 #include <com/sun/star/document/XExporter.hpp>
26 #include <com/sun/star/lang/XInitialization.hpp>
27 #include <com/sun/star/lang/XServiceInfo.hpp>
28 #include <cppuhelper/implbase.hxx>
30 namespace com::sun::star::io { class XInputStream; }
31 namespace com::sun::star::awt { class XWindow; }
33 class ScFilterOptionsObj final : public ::cppu::WeakImplHelper<
34 css::beans::XPropertyAccess,
35 css::ui::dialogs::XExecutableDialog,
36 css::document::XImporter,
37 css::document::XExporter,
38 css::lang::XInitialization,
39 css::lang::XServiceInfo >
41 private:
42 OUString aFileName;
43 OUString aFilterName;
44 OUString aFilterOptions;
45 css::uno::Reference< css::io::XInputStream > xInputStream;
46 css::uno::Reference< css::awt::XWindow > xDialogParent;
47 bool bExport;
49 public:
50 ScFilterOptionsObj();
51 virtual ~ScFilterOptionsObj() override;
53 // XPropertyAccess
54 virtual css::uno::Sequence< css::beans::PropertyValue >
55 SAL_CALL getPropertyValues() override;
56 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence<
57 css::beans::PropertyValue >& aProps ) override;
59 // XExecutableDialog
60 virtual void SAL_CALL setTitle( const OUString& aTitle ) override;
61 virtual sal_Int16 SAL_CALL execute() override;
63 // XImporter
64 virtual void SAL_CALL setTargetDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override;
66 // XExporter
67 virtual void SAL_CALL setSourceDocument( const css::uno::Reference< css::lang::XComponent >& xDoc ) override;
69 // XInitialization
70 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override;
72 // XServiceInfo
73 virtual OUString SAL_CALL getImplementationName() override;
74 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
75 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */