Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sc / inc / macromgr.hxx
blobe524ff59bad27ca6606527f3c656f474672c3171
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/.
8 */
10 #ifndef INCLUDED_SC_INC_MACROMGR_HXX
11 #define INCLUDED_SC_INC_MACROMGR_HXX
13 #include <com/sun/star/container/XContainerListener.hpp>
15 #include <rtl/ustring.hxx>
16 #include "scdllapi.h"
18 #include <memory>
19 #include <unordered_map>
20 #include <unordered_set>
22 class ScDocument;
23 class ScFormulaCell;
24 class ScUserMacroDepTracker;
26 class ScMacroManager
28 public:
29 explicit ScMacroManager(ScDocument* pDoc);
30 ~ScMacroManager();
32 SC_DLLPUBLIC void InitUserFuncData();
33 SC_DLLPUBLIC void SetUserFuncVolatile( const OUString& sName, bool isVolatile );
34 SC_DLLPUBLIC bool GetUserFuncVolatile( const OUString& sName );
36 void AddDependentCell(const OUString& aModuleName, ScFormulaCell* pCell);
37 void RemoveDependentCell(const ScFormulaCell* pCell);
38 void BroadcastModuleUpdate(const OUString& aModuleName);
40 private:
41 typedef std::unordered_map< OUString, bool > NameBoolMap;
42 NameBoolMap mhFuncToVolatile;
43 css::uno::Reference< css::container::XContainerListener > mxContainerListener;
45 ::std::unique_ptr<ScUserMacroDepTracker> mpDepTracker;
46 ScDocument* mpDoc;
49 #endif
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */