LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / sc / inc / funcuno.hxx
blob3d62ecaded9ddb8f9ea7e6dfe784214606cb2dec
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 <memory>
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/sheet/XFunctionAccess.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
27 #include <cppuhelper/implbase.hxx>
28 #include <svl/lstner.hxx>
29 #include "document.hxx"
30 #include <svl/itemprop.hxx>
32 class ScDocOptions;
34 css::uno::Reference< css::uno::XInterface > SAL_CALL
35 ScFunctionAccess_CreateInstance(
36 const css::uno::Reference< css::lang::XMultiServiceFactory >& );
38 class ScTempDocCache
40 private:
41 ScDocumentUniquePtr xDoc;
42 bool bInUse;
44 public:
45 ScTempDocCache();
47 ScDocument* GetDocument() const { return xDoc.get(); }
48 bool IsInUse() const { return bInUse; }
49 void SetInUse( bool bSet ) { bInUse = bSet; }
51 void SetDocument( ScDocument* pNew );
52 void Clear();
55 class ScFunctionAccess final : public cppu::WeakImplHelper<
56 css::sheet::XFunctionAccess,
57 css::beans::XPropertySet,
58 css::lang::XServiceInfo>,
59 public SfxListener
61 private:
62 ScTempDocCache aDocCache;
63 std::unique_ptr<ScDocOptions> pOptions;
64 SfxItemPropertyMap aPropertyMap;
65 bool mbArray;
66 bool mbValid;
68 public:
69 ScFunctionAccess();
70 virtual ~ScFunctionAccess() override;
72 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
74 // XFunctionAccess
75 virtual css::uno::Any SAL_CALL callFunction(
76 const OUString& aName,
77 const css::uno::Sequence< css::uno::Any >& aArguments ) override;
79 // XPropertySet
80 virtual css::uno::Reference< css::beans::XPropertySetInfo >
81 SAL_CALL getPropertySetInfo() override;
82 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
83 const css::uno::Any& aValue ) override;
84 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
85 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
86 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
87 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
88 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
89 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
90 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
91 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
92 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
94 // XServiceInfo
95 virtual OUString SAL_CALL getImplementationName() override;
96 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
97 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */