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