Bump version to 6.4-15
[LibreOffice.git] / sc / inc / macromgr.hxx
blob5904a1ce564fcf6f41088edadd68c26272667480
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>
21 class ScDocument;
22 class ScFormulaCell;
23 class ScUserMacroDepTracker;
25 class ScMacroManager
27 public:
28 explicit ScMacroManager(ScDocument* pDoc);
29 ~ScMacroManager();
31 SC_DLLPUBLIC void InitUserFuncData();
32 SC_DLLPUBLIC void SetUserFuncVolatile( const OUString& sName, bool isVolatile );
33 SC_DLLPUBLIC bool GetUserFuncVolatile( const OUString& sName );
35 void AddDependentCell(const OUString& aModuleName, ScFormulaCell* pCell);
36 void RemoveDependentCell(const ScFormulaCell* pCell);
37 void BroadcastModuleUpdate(const OUString& aModuleName);
39 private:
40 typedef std::unordered_map< OUString, bool > NameBoolMap;
41 NameBoolMap mhFuncToVolatile;
42 css::uno::Reference< css::container::XContainerListener > mxContainerListener;
44 ::std::unique_ptr<ScUserMacroDepTracker> mpDepTracker;
45 ScDocument* mpDoc;
48 #endif
50 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */