xref: /aoo41x/main/sc/source/filter/inc/xename.hxx (revision 38d50f7b)
1*38d50f7bSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*38d50f7bSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*38d50f7bSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*38d50f7bSAndrew Rist  * distributed with this work for additional information
6*38d50f7bSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*38d50f7bSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*38d50f7bSAndrew Rist  * "License"); you may not use this file except in compliance
9*38d50f7bSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*38d50f7bSAndrew Rist  *
11*38d50f7bSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*38d50f7bSAndrew Rist  *
13*38d50f7bSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*38d50f7bSAndrew Rist  * software distributed under the License is distributed on an
15*38d50f7bSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*38d50f7bSAndrew Rist  * KIND, either express or implied.  See the License for the
17*38d50f7bSAndrew Rist  * specific language governing permissions and limitations
18*38d50f7bSAndrew Rist  * under the License.
19*38d50f7bSAndrew Rist  *
20*38d50f7bSAndrew Rist  *************************************************************/
21*38d50f7bSAndrew Rist 
22*38d50f7bSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef SC_XENAME_HXX
25cdf0e10cSrcweir #define SC_XENAME_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "xerecord.hxx"
28cdf0e10cSrcweir #include "xlname.hxx"
29cdf0e10cSrcweir #include "xlformula.hxx"
30cdf0e10cSrcweir #include "xeroot.hxx"
31cdf0e10cSrcweir 
32cdf0e10cSrcweir // ============================================================================
33cdf0e10cSrcweir 
34cdf0e10cSrcweir class ScRangeList;
35cdf0e10cSrcweir class XclExpNameManagerImpl;
36cdf0e10cSrcweir 
37cdf0e10cSrcweir /** Manager that stores all internal defined names (NAME records) of the document. */
38cdf0e10cSrcweir class XclExpNameManager : public XclExpRecordBase, protected XclExpRoot
39cdf0e10cSrcweir {
40cdf0e10cSrcweir public:
41cdf0e10cSrcweir     explicit            XclExpNameManager( const XclExpRoot& rRoot );
42cdf0e10cSrcweir     virtual             ~XclExpNameManager();
43cdf0e10cSrcweir 
44cdf0e10cSrcweir     /** Creates NAME records for built-in and user defined names. */
45cdf0e10cSrcweir     void                Initialize();
46cdf0e10cSrcweir 
47cdf0e10cSrcweir     /** Inserts the Calc name with the passed index and returns the Excel NAME index. */
48cdf0e10cSrcweir     sal_uInt16          InsertName( sal_uInt16 nScNameIdx );
49cdf0e10cSrcweir     /** Inserts the Calc database range with the passed index and returns the Excel NAME index. */
50cdf0e10cSrcweir     sal_uInt16          InsertDBRange( sal_uInt16 nScDBRangeIdx );
51cdf0e10cSrcweir 
52cdf0e10cSrcweir //UNUSED2009-05 /** Inserts a new built-in defined name. */
53cdf0e10cSrcweir //UNUSED2009-05 sal_uInt16          InsertBuiltInName( sal_Unicode cBuiltIn, XclTokenArrayRef xTokArr, SCTAB nScTab );
54cdf0e10cSrcweir     /** Inserts a new built-in defined name, referring to the passed sheet range. */
55cdf0e10cSrcweir     sal_uInt16          InsertBuiltInName( sal_Unicode cBuiltIn, const ScRange& rRange );
56cdf0e10cSrcweir     /** Inserts a new built-in defined name, referring to the passed sheet range list. */
57cdf0e10cSrcweir     sal_uInt16          InsertBuiltInName( sal_Unicode cBuiltIn, const ScRangeList& rRangeList );
58cdf0e10cSrcweir 
59cdf0e10cSrcweir     /** Inserts a new defined name. Sets another unused name, if rName already exists. */
60cdf0e10cSrcweir     sal_uInt16          InsertUniqueName( const String& rName, XclTokenArrayRef xTokArr, SCTAB nScTab );
61cdf0e10cSrcweir     /** Returns index of an existing name, or creates a name without definition. */
62cdf0e10cSrcweir     sal_uInt16          InsertRawName( const String& rName );
63cdf0e10cSrcweir     /** Searches or inserts a defined name describing a macro name.
64cdf0e10cSrcweir         @param bVBasic  true = Visual Basic macro, false = Sheet macro.
65cdf0e10cSrcweir         @param bFunc  true = Macro function; false = Macro procedure. */
66cdf0e10cSrcweir     sal_uInt16          InsertMacroCall( const String& rMacroName, bool bVBasic, bool bFunc, bool bHidden = false );
67cdf0e10cSrcweir 
68cdf0e10cSrcweir     /** Returns the Calc sheet of a local defined name, or SCTAB_GLOBAL for global defined names. */
69cdf0e10cSrcweir     const String&       GetOrigName( sal_uInt16 nNameIdx ) const;
70cdf0e10cSrcweir     /** Returns the Calc sheet of a local defined name, or SCTAB_GLOBAL for global defined names. */
71cdf0e10cSrcweir     SCTAB               GetScTab( sal_uInt16 nNameIdx ) const;
72cdf0e10cSrcweir     /** Returns true, if the specified defined name is volatile. */
73cdf0e10cSrcweir     bool                IsVolatile( sal_uInt16 nNameIdx ) const;
74cdf0e10cSrcweir 
75cdf0e10cSrcweir     /** Writes the entire list of NAME records. */
76cdf0e10cSrcweir     virtual void        Save( XclExpStream& rStrm );
77cdf0e10cSrcweir     virtual void        SaveXml( XclExpXmlStream& rStrm );
78cdf0e10cSrcweir 
79cdf0e10cSrcweir private:
80cdf0e10cSrcweir     typedef ScfRef< XclExpNameManagerImpl > XclExpNameMgrImplRef;
81cdf0e10cSrcweir     XclExpNameMgrImplRef mxImpl;
82cdf0e10cSrcweir };
83cdf0e10cSrcweir 
84cdf0e10cSrcweir // ============================================================================
85cdf0e10cSrcweir 
86cdf0e10cSrcweir #endif
87cdf0e10cSrcweir 
88