build fix
[LibreOffice.git] / sc / inc / funcuno.hxx
blob267c7f31706c44eab012fd6ff076c8f4b9b6f1d5
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 <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/sheet/XFunctionAccess.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <cppuhelper/implbase.hxx>
27 #include <svl/lstner.hxx>
29 class ScDocument;
30 class ScDocOptions;
32 css::uno::Reference< css::uno::XInterface > SAL_CALL
33 ScFunctionAccess_CreateInstance(
34 const css::uno::Reference< css::lang::XMultiServiceFactory >& );
36 class ScTempDocCache
38 private:
39 ScDocument* pDoc;
40 bool bInUse;
42 public:
43 ScTempDocCache();
44 ~ScTempDocCache();
46 ScDocument* GetDocument() const { return pDoc; }
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 )
77 throw (css::container::NoSuchElementException,
78 css::lang::IllegalArgumentException,
79 css::uno::RuntimeException,
80 std::exception) override;
82 // XPropertySet
83 virtual css::uno::Reference< css::beans::XPropertySetInfo >
84 SAL_CALL getPropertySetInfo()
85 throw(css::uno::RuntimeException, std::exception) override;
86 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
87 const css::uno::Any& aValue )
88 throw(css::beans::UnknownPropertyException,
89 css::beans::PropertyVetoException,
90 css::lang::IllegalArgumentException,
91 css::lang::WrappedTargetException,
92 css::uno::RuntimeException, std::exception) override;
93 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName )
94 throw(css::beans::UnknownPropertyException,
95 css::lang::WrappedTargetException,
96 css::uno::RuntimeException, std::exception) override;
97 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
98 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener )
99 throw(css::beans::UnknownPropertyException,
100 css::lang::WrappedTargetException,
101 css::uno::RuntimeException, std::exception) override;
102 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
103 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener )
104 throw(css::beans::UnknownPropertyException,
105 css::lang::WrappedTargetException,
106 css::uno::RuntimeException, std::exception) override;
107 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
108 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
109 throw(css::beans::UnknownPropertyException,
110 css::lang::WrappedTargetException,
111 css::uno::RuntimeException, std::exception) override;
112 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
113 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener )
114 throw(css::beans::UnknownPropertyException,
115 css::lang::WrappedTargetException,
116 css::uno::RuntimeException, std::exception) override;
118 // XServiceInfo
119 virtual OUString SAL_CALL getImplementationName()
120 throw(css::uno::RuntimeException, std::exception) override;
121 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
122 throw(css::uno::RuntimeException, std::exception) override;
123 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
124 throw(css::uno::RuntimeException, std::exception) override;
127 #endif
129 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */