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_INC_REFDATA_HXX
21 #define INCLUDED_SC_INC_REFDATA_HXX
24 #include "address.hxx"
26 #include "calcmacros.hxx"
28 /// Single reference (one address) into the sheet
29 struct SC_DLLPUBLIC ScSingleRefData
38 sal_uInt8 mnFlagValue
;
47 bool bFlag3D
:1; ///< 3D-Ref
48 bool bRelName
:1; ///< Reference derived from RangeName with relative values
53 /// No default ctor, because used in ScRawToken union, set InitFlags!
54 inline void InitFlags() { mnFlagValue
= 0; } ///< all FALSE
55 /// InitAddress: InitFlags and set address
56 void InitAddress( const ScAddress
& rAdr
);
57 void InitAddress( SCCOL nCol
, SCROW nRow
, SCTAB nTab
);
58 /// InitAddressRel: InitFlags and set address, everything relative to rPos
59 void InitAddressRel( const ScAddress
& rAdr
, const ScAddress
& rPos
);
60 sal_uInt8
FlagValue() const;
62 void SetColRel( bool bVal
) { Flags
.bColRel
= bVal
; }
63 bool IsColRel() const { return Flags
.bColRel
; }
64 void SetRowRel( bool bVal
) { Flags
.bRowRel
= bVal
; }
65 bool IsRowRel() const { return Flags
.bRowRel
; }
66 void SetTabRel( bool bVal
) { Flags
.bTabRel
= bVal
; }
67 bool IsTabRel() const { return Flags
.bTabRel
; }
69 void SetAbsCol( SCCOL nVal
);
70 void SetRelCol( SCCOL nVal
);
71 void IncCol( SCCOL nInc
);
72 void SetAbsRow( SCROW nVal
);
73 void SetRelRow( SCROW nVal
);
74 void IncRow( SCROW nInc
);
75 void SetAbsTab( SCTAB nVal
);
76 void SetRelTab( SCTAB nVal
);
77 void IncTab( SCTAB nInc
);
79 void SetColDeleted( bool bVal
);
80 bool IsColDeleted() const;
81 void SetRowDeleted( bool bVal
);
82 bool IsRowDeleted() const;
83 void SetTabDeleted( bool bVal
);
84 bool IsTabDeleted() const;
85 bool IsDeleted() const;
87 void SetFlag3D( bool bVal
) { Flags
.bFlag3D
= bVal
; }
88 bool IsFlag3D() const { return Flags
.bFlag3D
; }
89 void SetRelName( bool bVal
) { Flags
.bRelName
= bVal
; }
90 bool IsRelName() const { return Flags
.bRelName
; }
93 bool ColValid() const;
94 bool RowValid() const;
95 bool TabValid() const;
96 /// In external references nTab is -1
97 bool ValidExternal() const;
99 ScAddress
toAbs( const ScAddress
& rPos
) const;
100 void SetAddress( const ScAddress
& rAddr
, const ScAddress
& rPos
);
105 bool operator==( const ScSingleRefData
& ) const;
106 bool operator!=( const ScSingleRefData
& ) const;
108 #if DEBUG_FORMULA_COMPILER
109 void Dump( int nIndent
= 0 ) const;
113 /// Complex reference (a range) into the sheet
114 struct ScComplexRefData
116 ScSingleRefData Ref1
;
117 ScSingleRefData Ref2
;
119 inline void InitFlags()
120 { Ref1
.InitFlags(); Ref2
.InitFlags(); }
121 inline void InitRange( const ScRange
& rRange
)
123 Ref1
.InitAddress( rRange
.aStart
);
124 Ref2
.InitAddress( rRange
.aEnd
);
126 inline void InitRangeRel( const ScRange
& rRange
, const ScAddress
& rPos
)
128 Ref1
.InitAddressRel( rRange
.aStart
, rPos
);
129 Ref2
.InitAddressRel( rRange
.aEnd
, rPos
);
131 inline void InitRange( SCCOL nCol1
, SCROW nRow1
, SCTAB nTab1
,
132 SCCOL nCol2
, SCROW nRow2
, SCTAB nTab2
)
134 Ref1
.InitAddress( nCol1
, nRow1
, nTab1
);
135 Ref2
.InitAddress( nCol2
, nRow2
, nTab2
);
140 /** In external references nTab is -1 for the start tab and -1 for the end
141 tab if one sheet, or >=0 if more than one sheets. */
142 bool ValidExternal() const;
144 SC_DLLPUBLIC ScRange
toAbs( const ScAddress
& rPos
) const;
145 void SetRange( const ScRange
& rRange
, const ScAddress
& rPos
);
147 inline bool operator==( const ScComplexRefData
& r
) const
148 { return Ref1
== r
.Ref1
&& Ref2
== r
.Ref2
; }
149 /** Enlarge range if reference passed is not within existing range.
150 ScAddress position is used to calculate absolute references from
151 relative references. */
152 ScComplexRefData
& Extend( const ScSingleRefData
& rRef
, const ScAddress
& rPos
);
153 ScComplexRefData
& Extend( const ScComplexRefData
& rRef
, const ScAddress
& rPos
);
155 #if DEBUG_FORMULA_COMPILER
156 void Dump( int nIndent
= 0 ) const;
162 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */