Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sc / inc / funcuno.hxx
blob174975c8a1f96f64784b61d7fafd6ef0e84f3498
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_FUNCUNO_HXX
21 #define INCLUDED_SC_INC_FUNCUNO_HXX
23 #include <memory>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/sheet/XFunctionAccess.hpp>
26 #include <com/sun/star/beans/XPropertySet.hpp>
27 #include <cppuhelper/implbase.hxx>
28 #include <svl/lstner.hxx>
29 #include "document.hxx"
31 class ScDocOptions;
33 css::uno::Reference< css::uno::XInterface > SAL_CALL
34 ScFunctionAccess_CreateInstance(
35 const css::uno::Reference< css::lang::XMultiServiceFactory >& );
37 class ScTempDocCache
39 private:
40 ScDocumentUniquePtr xDoc;
41 bool bInUse;
43 public:
44 ScTempDocCache();
46 ScDocument* GetDocument() const { return xDoc.get(); }
47 bool IsInUse() const { return bInUse; }
48 void SetInUse( bool bSet ) { bInUse = bSet; }
50 void SetDocument( ScDocument* pNew );
51 void Clear();
54 class ScFunctionAccess : public cppu::WeakImplHelper<
55 css::sheet::XFunctionAccess,
56 css::beans::XPropertySet,
57 css::lang::XServiceInfo>,
58 public SfxListener
60 private:
61 ScTempDocCache aDocCache;
62 ScDocOptions* pOptions;
63 SfxItemPropertyMap aPropertyMap;
64 bool mbArray;
65 bool mbValid;
67 public:
68 ScFunctionAccess();
69 virtual ~ScFunctionAccess() override;
71 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
73 // XFunctionAccess
74 virtual css::uno::Any SAL_CALL callFunction(
75 const OUString& aName,
76 const css::uno::Sequence< css::uno::Any >& aArguments ) override;
78 // XPropertySet
79 virtual css::uno::Reference< css::beans::XPropertySetInfo >
80 SAL_CALL getPropertySetInfo() override;
81 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
82 const css::uno::Any& aValue ) override;
83 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
84 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
85 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
86 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
87 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
88 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
89 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
90 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
91 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
93 // XServiceInfo
94 virtual OUString SAL_CALL getImplementationName() override;
95 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
96 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
99 #endif
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */