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_DETFUNC_HXX
21 #define INCLUDED_SC_INC_DETFUNC_HXX
23 #include "address.hxx"
24 #include <tools/gen.hxx>
25 #include <tools/color.hxx>
33 class ScDetectiveData
;
38 #define SC_DET_MAXCIRCLE 1000
40 enum ScDetectiveDelete
{ SC_DET_ALL
, SC_DET_DETECTIVE
, SC_DET_CIRCLES
, SC_DET_ARROWS
};
42 enum ScDetectiveObjType
46 SC_DETOBJ_FROMOTHERTAB
,
51 class SC_DLLPUBLIC ScDetectiveFunc
53 static ColorData nArrowColor
;
54 static ColorData nErrorColor
;
55 static ColorData nCommentColor
;
56 static bool bColorsInitialized
;
63 DRAWPOS_TOPLEFT
, ///< Top-left edge of the cell.
64 DRAWPOS_BOTTOMRIGHT
, ///< Bottom-right edge of the cell.
65 DRAWPOS_DETARROW
, ///< Position inside cell for detective arrows.
66 DRAWPOS_CAPTIONLEFT
, ///< Top-left edge of the cell for captions.
67 DRAWPOS_CAPTIONRIGHT
///< Top-right edge of the cell for captions (incl. merged cells).
70 /** @return a drawing layer position for the passed cell address. */
71 Point
GetDrawPos( SCCOL nCol
, SCROW nRow
, DrawPosMode eMode
) const;
73 /** @return the drawing layer rectangle for the passed cell range. */
74 Rectangle
GetDrawRect( SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
) const;
76 /** @return the drawing layer rectangle for the passed cell address. */
77 Rectangle
GetDrawRect( SCCOL nCol
, SCROW nRow
) const;
79 bool HasArrow( const ScAddress
& rStart
,
80 SCCOL nEndCol
, SCROW nEndRow
, SCTAB nEndTab
);
82 void DeleteArrowsAt( SCCOL nCol
, SCROW nRow
, bool bDestPnt
);
83 void DeleteBox( SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
);
85 bool HasError( const ScRange
& rRange
, ScAddress
& rErrPos
);
87 /// called from DrawEntry/DrawAlienEntry and InsertObject
88 bool InsertArrow( SCCOL nCol
, SCROW nRow
,
89 SCCOL nRefStartCol
, SCROW nRefStartRow
,
90 SCCOL nRefEndCol
, SCROW nRefEndRow
,
91 bool bFromOtherTab
, bool bRed
,
92 ScDetectiveData
& rData
);
93 bool InsertToOtherTab( SCCOL nStartCol
, SCROW nStartRow
,
94 SCCOL nEndCol
, SCROW nEndRow
, bool bRed
,
95 ScDetectiveData
& rData
);
97 /// DrawEntry / DrawAlienEntry check for existing arrows and errors
98 bool DrawEntry( SCCOL nCol
, SCROW nRow
, const ScRange
& rRef
,
99 ScDetectiveData
& rData
);
100 bool DrawAlienEntry( const ScRange
& rRef
,
101 ScDetectiveData
& rData
);
103 void DrawCircle( SCCOL nCol
, SCROW nRow
, ScDetectiveData
& rData
);
105 sal_uInt16
InsertPredLevel( SCCOL nCol
, SCROW nRow
, ScDetectiveData
& rData
, sal_uInt16 nLevel
);
106 sal_uInt16
InsertPredLevelArea( const ScRange
& rRef
,
107 ScDetectiveData
& rData
, sal_uInt16 nLevel
);
108 sal_uInt16
FindPredLevel( SCCOL nCol
, SCROW nRow
, sal_uInt16 nLevel
, sal_uInt16 nDeleteLevel
);
109 sal_uInt16
FindPredLevelArea( const ScRange
& rRef
,
110 sal_uInt16 nLevel
, sal_uInt16 nDeleteLevel
);
112 sal_uInt16
InsertErrorLevel( SCCOL nCol
, SCROW nRow
, ScDetectiveData
& rData
, sal_uInt16 nLevel
);
114 sal_uInt16
InsertSuccLevel( SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
,
115 ScDetectiveData
& rData
, sal_uInt16 nLevel
);
116 sal_uInt16
FindSuccLevel( SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
,
117 sal_uInt16 nLevel
, sal_uInt16 nDeleteLevel
);
119 void FindFrameForObject( SdrObject
* pObject
, ScRange
& rRange
);
124 ScDetectiveFunc(ScDocument
* pDocument
, SCTAB nTable
) : pDoc(pDocument
),nTab(nTable
) {}
126 bool ShowSucc( SCCOL nCol
, SCROW nRow
);
127 bool ShowPred( SCCOL nCol
, SCROW nRow
);
128 bool ShowError( SCCOL nCol
, SCROW nRow
);
130 bool DeleteSucc( SCCOL nCol
, SCROW nRow
);
131 bool DeletePred( SCCOL nCol
, SCROW nRow
);
132 bool DeleteAll( ScDetectiveDelete eWhat
);
134 bool MarkInvalid(bool& rOverflow
);
136 void GetAllPreds(SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
, ::std::vector
<ScTokenRef
>& rRefTokens
);
137 void GetAllSuccs(SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
, ::std::vector
<ScTokenRef
>& rRefTokens
);
139 static void UpdateAllComments( ScDocument
& rDoc
); ///< on all tables
140 void UpdateAllArrowColors(); ///< on all tables
142 static bool IsNonAlienArrow( SdrObject
* pObject
);
144 ScDetectiveObjType
GetDetectiveObjectType( SdrObject
* pObject
, SCTAB nObjTab
,
145 ScAddress
& rPosition
, ScRange
& rSource
, bool& rRedLine
);
146 void InsertObject( ScDetectiveObjType eType
, const ScAddress
& rPosition
,
147 const ScRange
& rSource
, bool bRedLine
);
149 static ColorData
GetArrowColor();
150 static ColorData
GetErrorColor();
151 static ColorData
GetCommentColor();
152 static void InitializeColors();
153 static bool IsColorsInitialized();
154 static void AppendChangTrackNoteSeparator(OUString
&str
);
159 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */