nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / inc / SwXFilterOptions.hxx
blobe9e036b5f1938ea0a455776f9c9206be33d0ff5c
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 .
19 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWXFILTEROPTIONS_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_SWXFILTEROPTIONS_HXX
22 #include <com/sun/star/awt/XWindow.hpp>
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::sun::star::io { class XInputStream; }
33 class SwXFilterOptions : 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 OUString sFilterOptions;
43 css::uno::Reference< css::io::XInputStream > xInputStream;
44 css::uno::Reference< css::lang::XComponent > xModel;
45 css::uno::Reference< css::awt::XWindow > xDialogParent;
47 public:
48 SwXFilterOptions();
49 virtual ~SwXFilterOptions() override;
51 // XPropertyAccess
52 virtual css::uno::Sequence< css::beans::PropertyValue >
53 SAL_CALL getPropertyValues() override;
54 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence<
55 css::beans::PropertyValue >& aProps ) override;
57 // XExecutableDialog
58 virtual void SAL_CALL setTitle( const OUString& aTitle ) override;
59 virtual sal_Int16 SAL_CALL execute() override;
61 // XImporter
62 virtual void SAL_CALL setTargetDocument( const css::uno::Reference<
63 css::lang::XComponent >& xDoc ) override;
65 // XExporter
66 virtual void SAL_CALL setSourceDocument( const css::uno::Reference<
67 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;
79 #endif
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */