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 void FillAttributes( ScDetectiveData
& rData
);
89 /// called from DrawEntry/DrawAlienEntry and InsertObject
90 bool InsertArrow( SCCOL nCol
, SCROW nRow
,
91 SCCOL nRefStartCol
, SCROW nRefStartRow
,
92 SCCOL nRefEndCol
, SCROW nRefEndRow
,
93 bool bFromOtherTab
, bool bRed
,
94 ScDetectiveData
& rData
);
95 bool InsertToOtherTab( SCCOL nStartCol
, SCROW nStartRow
,
96 SCCOL nEndCol
, SCROW nEndRow
, bool bRed
,
97 ScDetectiveData
& rData
);
99 /// DrawEntry / DrawAlienEntry check for existing arrows and errors
100 bool DrawEntry( SCCOL nCol
, SCROW nRow
, const ScRange
& rRef
,
101 ScDetectiveData
& rData
);
102 bool DrawAlienEntry( const ScRange
& rRef
,
103 ScDetectiveData
& rData
);
105 void DrawCircle( SCCOL nCol
, SCROW nRow
, ScDetectiveData
& rData
);
107 sal_uInt16
InsertPredLevel( SCCOL nCol
, SCROW nRow
, ScDetectiveData
& rData
, sal_uInt16 nLevel
);
108 sal_uInt16
InsertPredLevelArea( const ScRange
& rRef
,
109 ScDetectiveData
& rData
, sal_uInt16 nLevel
);
110 sal_uInt16
FindPredLevel( SCCOL nCol
, SCROW nRow
, sal_uInt16 nLevel
, sal_uInt16 nDeleteLevel
);
111 sal_uInt16
FindPredLevelArea( const ScRange
& rRef
,
112 sal_uInt16 nLevel
, sal_uInt16 nDeleteLevel
);
114 sal_uInt16
InsertErrorLevel( SCCOL nCol
, SCROW nRow
, ScDetectiveData
& rData
, sal_uInt16 nLevel
);
116 sal_uInt16
InsertSuccLevel( SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
,
117 ScDetectiveData
& rData
, sal_uInt16 nLevel
);
118 sal_uInt16
FindSuccLevel( SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
,
119 sal_uInt16 nLevel
, sal_uInt16 nDeleteLevel
);
121 bool FindFrameForObject( SdrObject
* pObject
, ScRange
& rRange
);
126 ScDetectiveFunc(ScDocument
* pDocument
, SCTAB nTable
) : pDoc(pDocument
),nTab(nTable
) {}
128 bool ShowSucc( SCCOL nCol
, SCROW nRow
);
129 bool ShowPred( SCCOL nCol
, SCROW nRow
);
130 bool ShowError( SCCOL nCol
, SCROW nRow
);
132 bool DeleteSucc( SCCOL nCol
, SCROW nRow
);
133 bool DeletePred( SCCOL nCol
, SCROW nRow
);
134 bool DeleteAll( ScDetectiveDelete eWhat
);
136 bool MarkInvalid(bool& rOverflow
);
138 void GetAllPreds(SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
, ::std::vector
<ScTokenRef
>& rRefTokens
);
139 void GetAllSuccs(SCCOL nCol1
, SCROW nRow1
, SCCOL nCol2
, SCROW nRow2
, ::std::vector
<ScTokenRef
>& rRefTokens
);
141 static void UpdateAllComments( ScDocument
& rDoc
); ///< on all tables
142 void UpdateAllArrowColors(); ///< on all tables
144 static bool IsNonAlienArrow( SdrObject
* pObject
);
146 ScDetectiveObjType
GetDetectiveObjectType( SdrObject
* pObject
, SCTAB nObjTab
,
147 ScAddress
& rPosition
, ScRange
& rSource
, bool& rRedLine
);
148 void InsertObject( ScDetectiveObjType eType
, const ScAddress
& rPosition
,
149 const ScRange
& rSource
, bool bRedLine
);
151 static ColorData
GetArrowColor();
152 static ColorData
GetErrorColor();
153 static ColorData
GetCommentColor();
154 static void InitializeColors();
155 static bool IsColorsInitialized();
156 static void AppendChangTrackNoteSeparator(OUString
&str
);
161 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */