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/.
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>
19 #include <unordered_map>
20 #include <unordered_set>
24 class ScUserMacroDepTracker
;
29 explicit ScMacroManager(ScDocument
* pDoc
);
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
);
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
;
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */