1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_REPORTDESIGN_SOURCE_CORE_INC_FUNCTIONS_HXX
20 #define INCLUDED_REPORTDESIGN_SOURCE_CORE_INC_FUNCTIONS_HXX
22 #include <com/sun/star/report/XFunctions.hpp>
23 #include <com/sun/star/report/XFunctionsSupplier.hpp>
24 #include <cppuhelper/compbase.hxx>
25 #include <comphelper/interfacecontainer2.hxx>
26 #include <cppuhelper/basemutex.hxx>
27 #include <com/sun/star/uno/XComponentContext.hpp>
31 namespace reportdesign
33 typedef ::cppu::WeakComponentImplHelper
< css::report::XFunctions
> FunctionsBase
;
34 /** \class OFunctions Defines the implementation of a \interface com:::sun::star::report::XFunctions
35 * \ingroup reportdesign_api
38 class OFunctions
: public cppu::BaseMutex
,
41 typedef ::std::vector
< css::uno::Reference
< css::report::XFunction
> > TFunctions
;
42 ::comphelper::OInterfaceContainerHelper2 m_aContainerListeners
;
43 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
44 css::uno::WeakReference
< css::report::XFunctionsSupplier
> m_xParent
;
45 TFunctions m_aFunctions
;
47 OFunctions
& operator=(const OFunctions
&) = delete;
48 OFunctions(const OFunctions
&) = delete;
49 void checkIndex(sal_Int32 _nIndex
);
51 // TODO: VirtualFunctionFinder: This is virtual function!
53 virtual ~OFunctions() override
;
55 /** this function is called upon disposing the component
57 // TODO: VirtualFunctionFinder: This is virtual function!
59 virtual void SAL_CALL
disposing() override
;
61 explicit OFunctions( const css::uno::Reference
< css::report::XFunctionsSupplier
>& _xParent
62 ,const css::uno::Reference
< css::uno::XComponentContext
>& context
);
66 virtual css::uno::Reference
< css::report::XFunction
> SAL_CALL
createFunction( ) override
;
68 virtual void SAL_CALL
insertByIndex( ::sal_Int32 Index
, const css::uno::Any
& Element
) override
;
69 virtual void SAL_CALL
removeByIndex( ::sal_Int32 Index
) override
;
71 virtual void SAL_CALL
replaceByIndex( ::sal_Int32 Index
, const css::uno::Any
& Element
) override
;
73 virtual ::sal_Int32 SAL_CALL
getCount( ) override
;
74 virtual css::uno::Any SAL_CALL
getByIndex( ::sal_Int32 Index
) override
;
76 virtual css::uno::Type SAL_CALL
getElementType( ) override
;
77 virtual sal_Bool SAL_CALL
hasElements( ) override
;
79 virtual css::uno::Reference
< css::uno::XInterface
> SAL_CALL
getParent( ) override
;
80 virtual void SAL_CALL
setParent( const css::uno::Reference
< css::uno::XInterface
>& Parent
) override
;
82 virtual void SAL_CALL
addContainerListener( const css::uno::Reference
< css::container::XContainerListener
>& xListener
) override
;
83 virtual void SAL_CALL
removeContainerListener( const css::uno::Reference
< css::container::XContainerListener
>& xListener
) override
;
86 virtual void SAL_CALL
dispose() override
;
87 virtual void SAL_CALL
addEventListener(const css::uno::Reference
< css::lang::XEventListener
> & aListener
) override
89 cppu::WeakComponentImplHelperBase::addEventListener(aListener
);
91 virtual void SAL_CALL
removeEventListener(const css::uno::Reference
< css::lang::XEventListener
> & aListener
) override
93 cppu::WeakComponentImplHelperBase::removeEventListener(aListener
);
97 #endif // INCLUDED_REPORTDESIGN_SOURCE_CORE_INC_FUNCTIONS_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */