LibreOffice Module sc (master) 1
funcuno.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
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>
28#include <svl/lstner.hxx>
29#include "document.hxx"
30#include <svl/itemprop.hxx>
31
32class ScDocOptions;
33
34css::uno::Reference< css::uno::XInterface > SAL_CALL
36 const css::uno::Reference< css::lang::XMultiServiceFactory >& );
37
39{
40private:
42 bool bInUse;
43
44public:
46
47 ScDocument* GetDocument() const { return xDoc.get(); }
48 bool IsInUse() const { return bInUse; }
49 void SetInUse( bool bSet ) { bInUse = bSet; }
50
51 void SetDocument( ScDocument* pNew );
52 void Clear();
53};
54
55class ScFunctionAccess final : public cppu::WeakImplHelper<
56 css::sheet::XFunctionAccess,
57 css::beans::XPropertySet,
58 css::lang::XServiceInfo>,
59 public SfxListener
60{
61private:
63 std::unique_ptr<ScDocOptions> pOptions;
65 bool mbArray;
66 bool mbValid;
67
68public:
70 virtual ~ScFunctionAccess() override;
71
72 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
73
74 // XFunctionAccess
75 virtual css::uno::Any SAL_CALL callFunction(
76 const OUString& aName,
77 const css::uno::Sequence< css::uno::Any >& aArguments ) override;
78
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;
93
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;
98};
99
100/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SfxItemPropertyMap aPropertyMap
Definition: funcuno.hxx:64
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
virtual ~ScFunctionAccess() override
Definition: funcuno.cxx:177
virtual void Notify(SfxBroadcaster &rBC, const SfxHint &rHint) override
Definition: funcuno.cxx:187
virtual OUString SAL_CALL getImplementationName() override
Definition: funcuno.cxx:206
std::unique_ptr< ScDocOptions > pOptions
Definition: funcuno.hxx:63
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
Definition: funcuno.cxx:254
ScTempDocCache aDocCache
Definition: funcuno.hxx:62
virtual css::uno::Any SAL_CALL callFunction(const OUString &aName, const css::uno::Sequence< css::uno::Any > &aArguments) override
Definition: funcuno.cxx:452
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: funcuno.cxx:216
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: funcuno.cxx:223
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
Definition: funcuno.cxx:231
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
Definition: funcuno.cxx:211
void SetInUse(bool bSet)
Definition: funcuno.hxx:49
bool IsInUse() const
Definition: funcuno.hxx:48
ScDocument * GetDocument() const
Definition: funcuno.hxx:47
void SetDocument(ScDocument *pNew)
Definition: funcuno.cxx:118
void Clear()
Definition: funcuno.cxx:124
ScDocumentUniquePtr xDoc
Definition: funcuno.hxx:41
std::unique_ptr< ScDocument, o3tl::default_delete< ScDocument > > ScDocumentUniquePtr
Definition: document.hxx:2720
css::uno::Reference< css::uno::XInterface > SAL_CALL ScFunctionAccess_CreateInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &)
unsigned char sal_Bool