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 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_XENAME_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_XENAME_HXX
23 #include "xerecord.hxx"
24 #include "xlformula.hxx"
29 class XclExpNameManagerImpl
;
31 /** Manager that stores all internal defined names (NAME records) of the document. */
32 class XclExpNameManager
: public XclExpRecordBase
, protected XclExpRoot
35 explicit XclExpNameManager( const XclExpRoot
& rRoot
);
36 virtual ~XclExpNameManager() override
;
38 /** Creates NAME records for built-in and user defined names. */
41 /** Inserts the Calc name with the passed index and returns the Excel NAME index. */
42 sal_uInt16
InsertName( SCTAB nTab
, sal_uInt16 nScNameIdx
, SCTAB nCurrTab
);
44 /** Inserts a new built-in defined name, referring to the passed sheet range. */
45 sal_uInt16
InsertBuiltInName( sal_Unicode cBuiltIn
, const ScRange
& rRange
);
46 /** Inserts a new built-in defined name, referring to the passed sheet range list. */
47 sal_uInt16
InsertBuiltInName( sal_Unicode cBuiltIn
, const ScRangeList
& rRangeList
);
49 /** Inserts a new defined name. Sets another unused name, if rName already exists. */
50 sal_uInt16
InsertUniqueName( const OUString
& rName
, const XclTokenArrayRef
& xTokArr
, SCTAB nScTab
);
51 /** Returns index of an existing name, or creates a name without definition. */
52 sal_uInt16
InsertRawName( const OUString
& rName
);
53 /** Searches or inserts a defined name describing a macro name.
54 @param bVBasic true = Visual Basic macro, false = Sheet macro.
55 @param bFunc true = Macro function; false = Macro procedure. */
56 sal_uInt16
InsertMacroCall( const OUString
& rMacroName
, bool bVBasic
, bool bFunc
, bool bHidden
= false );
58 /** Returns the Calc sheet of a local defined name, or SCTAB_GLOBAL for global defined names. */
59 const OUString
& GetOrigName( sal_uInt16 nNameIdx
) const;
60 /** Returns the Calc sheet of a local defined name, or SCTAB_GLOBAL for global defined names. */
61 SCTAB
GetScTab( sal_uInt16 nNameIdx
) const;
62 /** Returns true, if the specified defined name is volatile. */
63 bool IsVolatile( sal_uInt16 nNameIdx
) const;
65 /** Writes the entire list of NAME records. */
66 virtual void Save( XclExpStream
& rStrm
) override
;
67 virtual void SaveXml( XclExpXmlStream
& rStrm
) override
;
70 typedef std::shared_ptr
< XclExpNameManagerImpl
> XclExpNameMgrImplRef
;
71 XclExpNameMgrImplRef mxImpl
;
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */