lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / reportdesign / source / core / inc / Functions.hxx
blob84a35bc5e28593414dd41820a25c74027a2fbc4b
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 .
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>
28 #include <vector>
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,
39 public FunctionsBase
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;
46 private:
47 OFunctions& operator=(const OFunctions&) = delete;
48 OFunctions(const OFunctions&) = delete;
49 void checkIndex(sal_Int32 _nIndex);
50 protected:
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;
60 public:
61 explicit OFunctions( const css::uno::Reference< css::report::XFunctionsSupplier >& _xParent
62 ,const css::uno::Reference< css::uno::XComponentContext >& context);
64 // XFunctions
65 // Methods
66 virtual css::uno::Reference< css::report::XFunction > SAL_CALL createFunction( ) override;
67 // XIndexContainer
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;
70 // XIndexReplace
71 virtual void SAL_CALL replaceByIndex( ::sal_Int32 Index, const css::uno::Any& Element ) override;
72 // XIndexAccess
73 virtual ::sal_Int32 SAL_CALL getCount( ) override;
74 virtual css::uno::Any SAL_CALL getByIndex( ::sal_Int32 Index ) override;
75 // XElementAccess
76 virtual css::uno::Type SAL_CALL getElementType( ) override;
77 virtual sal_Bool SAL_CALL hasElements( ) override;
78 // XChild
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;
81 // XContainer
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;
85 // XComponent
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: */